Forrest Aldrich wrote on 16.08.2005 20:57:

> The Mailman instance I have installed runs under one primary domain - 
> however, I want to set up a list that uses a different TLD (routed 
> properly at our MX servers).
> 
> What's the proper way to get this working under Mailman, where it 
> respects the virtual TLD, not posting the default TLD onto it?

In mm_cfg.py you should have something like this...

-----> cut here >-----------------------
#-------------------------------------------------------------
# Default domain for email addresses of newly created MLs
DEFAULT_EMAIL_HOST = 'mail.primary-domain.tld'
#-------------------------------------------------------------
# Default host for web interface of newly created MLs
DEFAULT_URL_HOST   = 'lists.primary-domain.tld'
#-------------------------------------------------------------
# Required when setting any of its arguments.
add_virtualhost(DEFAULT_URL_HOST, DEFAULT_EMAIL_HOST)

add_virtualhost('lists.virtual1.tld', 'mail.virtual1.tld')
add_virtualhost('lists.virtual2.tld', 'mail.virtual2.tld')
add_virtualhost('lists.virtual3.tld', 'mail.virtual3.tld')
...
-----< cut here <-----------------------

lists.*.tld and mail.*.tld may be the same host. That depends on your setup.

hjb :-?
------------------------------------------------------
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&amp;file=faq01.027.htp

Reply via email to