Mark Sapiro wrote:

Over the UI i can't create a List either. I have the following in my mm_cfg.py:

##################################################
# Put YOUR site-specific settings below this line.

DELIVERY_MODULE = 'SMTPDirect'
SMTPHOST = 'localhost'
SMTPPORT = 10025
SMTP_MAX_RCPTS = 1000
MTA = 'Postfix'

DEFAULT_EMAIL_HOST = 'gentix.de'
DEFAULT_URL_HOST = 'lists.gentix.de'
DEFAULT_URL_PATTERN = 'http://%s/mailman/'

DEFAULT_SERVER_LANGUAGE = 'de'
IMAGE_LOGOS = '/mailmanicons/'

POSTFIX_STYLE_VIRTUAL_DOMAINS = ['lists.citservice.de']

I configured a virtual host http://lists.citservice.de and i can access the cgi's of mailman under the URL http://lists.citservice.de/mailman/. When I access http://lists.citservice.de/mailman/create and want to create a new list 'testlist' i get an error: Error: Unknown virtual host: lists.citservice.de. What am i doing wrong?



DEFAULT_URL_PATTERN = 'http://%s/mailman/'

is not needed in mm_cfg.py because it doesn't change the default from
Defaults.py. However, you need all of the following in mm_cfg.py after
the DEFAULT_URL_HOST line.

VIRTUAL_HOSTS.clear()
add_virtualhost(DEFAULT_URL_HOST, DEFAULT_EMAIL_HOST)
add_virtualhost('lists.citservice.de', 'citservice.de')

assuming that citservice.de is the correct e-mail host to go with
lists.citservice.de. Also, the POSTFIX_STYLE_VIRTUAL_DOMAINS should be
['citservice.de'] unless the e-mail host really is
'lists.citservice.de' in which case the second add_virtualhost()
should be

add_virtualhost('lists.citservice.de', 'lists.citservice.de')

--
Mark Sapiro <[EMAIL PROTECTED]>       The highway is for gamblers,
San Francisco Bay Area, California    better use your sense - B. Dylan




I updated my config as follows:

DELIVERY_MODULE = 'SMTPDirect'
SMTPHOST = 'localhost'
SMTPPORT = 10025
SMTP_MAX_RCPTS = 1000
MTA = 'Postfix'

DEFAULT_EMAIL_HOST = 'gentix.de'
DEFAULT_URL_HOST = 'lists.gentix.de'

VIRTUAL_HOSTS.clear()
add_virtualhost(DEFAULT_URL_HOST, DEFAULT_EMAIL_HOST)
add_virtualhost('lists.citservice.de', 'lists.citservice.de')

DEFAULT_SERVER_LANGUAGE = 'de'
IMAGE_LOGOS = '/mailmanicons/'

POSTFIX_STYLE_VIRTUAL_DOMAINS = ['lists.citservice.de']

I really want to use 'lists.citservice.de' as email host. Adding a new list with the shell command
'newlist [EMAIL PROTECTED]' creates a new list, very fine. I get the message from mailman that my new list is created. But the automatically created virtual_mailman file is wrong format:


[EMAIL PROTECTED] liste2-lists.citservice.de
[EMAIL PROTECTED] liste2-lists.citservice.de-admin
[EMAIL PROTECTED] liste2-lists.citservice.de-bounces
[EMAIL PROTECTED] liste2-lists.citservice.de-confirm
[EMAIL PROTECTED] liste2-lists.citservice.de-join
[EMAIL PROTECTED] liste2-lists.citservice.de-leave
[EMAIL PROTECTED] liste2-lists.citservice.de-owner
[EMAIL PROTECTED] liste2-lists.citservice.de-request
[EMAIL PROTECTED] liste2-lists.citservice.de-subscribe
[EMAIL PROTECTED] liste2-lists.citservice.de-unsubscribe


when it would have to be
[EMAIL PROTECTED]  liste2-lists.citservice.de
[EMAIL PROTECTED]  liste2-lists.citservice.de-admin

Can you tell me what i didn't understand?

Thank you very much


Christian ------------------------------------------------------ Mailman-Users mailing list Mailman-Users@python.org http://mail.python.org/mailman/listinfo/mailman-users Mailman FAQ: http://www.python.org/cgi-bin/faqw-mm.py Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/ Unsubscribe: http://mail.python.org/mailman/options/mailman-users/archive%40jab.org

Security Policy: http://www.python.org/cgi-bin/faqw-mm.py?req=show&amp;file=faq01.027.htp

Reply via email to