ERROR: Illegal list name: mailman@true

Hi,
I want to use mailman on debian etch.
Install seems to go fine.
Then with "newlist mailman" I get the starnge error:
Illegal list name: mailman@true
what is givin "true" here?
"hostname" gives a valid hostname.
I am stuck, please helkp, mailman needs to be working tomorrow!
THANKS!!!
Tommy

Tommy Braun wrote:
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 <msapiro@value.net> The highway is for gamblers, San Francisco Bay Area, California better use your sense - B. Dylan

Tommy Braun wrote:
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 <msapiro@value.net> The highway is for gamblers, San Francisco Bay Area, California better use your sense - B. Dylan
participants (2)
-
Mark Sapiro
-
Tommy Braun