Daniel Spreadbury wrote: > >Apologies if this is covered in the Mailman docs or the FAQs, but I'm having >problems finding any concrete information.
Searching the FAQ wizard at >Mailman FAQ: http://www.python.org/cgi-bin/faqw-mm.py for virtual will return some relevant information including FAQs 4.29. 4.47 and 4.62. >I've installed Mailman via the FreeBSD ports collection on my FreeBSD server >(running 4.7). My MTA is Exim 4.22, and my web server is Apache 1.3.x. Mailman version? :-) >I currently have mailman in /usr/local/mailman, and my web server has a >virtual host at http://lists.dom.ain/ that points at this installation. My >lists therefore have addresses like [EMAIL PROTECTED] > >I run a number of different virtual domains from my server, and would like >to be able to run mailing lists for each of them, but using their domain >names. I don't care about the limitation that they can't use the same list >name -- the number of lists will be small, and that's an avoidable problem. > >So what do I need to do to run e.g. [EMAIL PROTECTED] and >[EMAIL PROTECTED] from the same Mailman installation on my >server? Either put the Mailman specific alias and scriptalias, etc stuff in each virtual host section in the web server config, or put it somewhere where it will apply to all hosts. Put directives like: add_virtualhost('dom.ain', 'dom.ain') add_virtualhost('another.domain','another.domain') in mm_cfg.py. This assumes you will access the web pages via http://dom.ain/..., as well as emailing [EMAIL PROTECTED], i.e., that the web domain and the email domain are the same for the hosts. If not, the generic form is add_virtualhost('web.dom.ain', 'email.dom.ain') Then when you create lists for these domains, they will only appear on listinfo and admin overview pages accessed from that domain and web links and email addresses for those lists will all use the list's domain. And read the FAQs mentioned above. -- 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://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
