Tommy Braun wrote: > >Then with "newlist mailman" I get the starnge error: > >Illegal list name: [EMAIL PROTECTED] > >what is givin "true" here?
It comes from DEFAULT_EMAIL_HOST. DEFAULT_EMAIL_HOST and DEFAULT_URL_HOST must both be fully qualified domain names. If they are not correct in Defaults.py, you have to assign them the correct values in mm_cfg.py and also fix the VIRTUAL_HOSTS dictionary as follows: DEFAULT_URL_HOST = 'www.example.com' DEFAULT_EMAIL_HOST = 'example.com' VIRTUAL_HOSTS.clear() add_virtualhost(DEFAULT_URL_HOST, DEFAULT_EMAIL_HOST) The first two lines should have your actual FQDNs. The second two lines are copied as is. -- Mark Sapiro <[EMAIL PROTECTED]> The highway is for gamblers, San Francisco Bay Area, California better use your sense - B. Dylan ------------------------------------------------------ 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&file=faq01.027.htp