Once again Mark, Thank you. Adding the two lines you mentioned fixed it. As I'm getting acquainted with Mailman, I'm trying to pay close attention to the how-tos, fixes, and workings of things. Maybe some day I'll be a help to a newbie. -Jeff
Mark Sapiro <[email protected]> 3/23/2009 2:10 PM >>> Jeff Bernier wrote: >Those docs are all very confusing to me... I still don't see how to fix this. >My mm_cfg.py file has the following section: > >################################################## ># Put YOUR site-specific settings below this line. >MTA = 'Postfix' >DEFAULT_EMAIL_HOST = 'hostname.risd.edu' >DEFAULT_URL_HOST = 'hostname.risd.edu' If the above are actually required - i.e., if they are different from what's in Defaults.py - then you also need VIRTUAL_HOSTS.clear() add_virtualhost(DEFAULT_URL_HOST, DEFAULT_EMAIL_HOST) following the above. Then you also need add_virtualhost('webdomain', 'emaildomain') for each other web domain you support. >>When attempting to create a list from Mailman's web interface, I get: >> >>Error: Unknown virtual host: lists.risd.edu This is telling you that lists.risd.edu (the host in the URL that you went to for the create page) is not a key in the VIRTUAL_HOSTS dictionary - i.e. it is not the first argument to some add_virtualhost(). -- Mark Sapiro <[email protected]> The highway is for gamblers, San Francisco Bay Area, California better use your sense - B. Dylan ------------------------------------------------------ Mailman-Users mailing list [email protected] http://mail.python.org/mailman/listinfo/mailman-users Mailman FAQ: http://wiki.list.org/x/AgA3 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://wiki.list.org/x/QIA9
