Thomas Waters wrote: >I tried to move our mailman lists from the older Panther Server to a >new install of tiger server, and I'm still not there. > >Postfix is working. Mailman is working. What isn't correct is the >Web UI for Mailman. > >The lists use the addresses [EMAIL PROTECTED], but the web >site has a URL of www/pharmacy.pitt.edu/mailman/somelist
I assume you mean www.pharmacy.pitt.edu/mailman/somelist >In the mm_cfg.py file, email host is set to pharmacy.pitt.edu and URL >host set to www.pharmacy.pitt.edu. Is this the correct settings? > >If I go to the Maillist admin web page, and try to create a new list, >I get error- unknown virtual host www.pharmacy.pitt.edu. > >I can create a list in the OS X Server Admin however. I believe the >only pice that is "broken" is create a new list via the web UI. It seems you haven't put add_virtualhost(DEFAULT_URL_HOST, DEFAULT_EMAIL_HOST) in mm_cfg.py following the definitions of DEFAULT_URL_HOST and DEFAULT_EMAIL_HOST. in mm_cfg.py you should have: DEFAULT_EMAIL_HOST = 'pharmacy.pitt.edu' DEFAULT_URL_HOST = 'www.pharmacy.pitt.edu' VIRTUAL_HOSTS.clear() add_virtualhost(DEFAULT_URL_HOST, DEFAULT_EMAIL_HOST) The VIRTUAL_HOSTS.clear() isn't absolutely necessary, but it removes the presumably erroneous entry added in Defaults.py. See http://www.python.org/cgi-bin/faqw-mm.py?req=show&file=faq04.029.htp You should not have any entries in mm_cfg.py for DEFAULT_URL_PATTERN DEFAULT_HOST_NAME DEFAULT_URL -- 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