one mailman installation and lists for two domains

Hi,
i have set up a linux machine with mailman successfully. it works fine. now i need a second mailinglist but based on another domain. That means i have the first domain = lists.myfirstdomain.com -> this works, now i need to set up a second domain -> lists.myseconddomain.com with mailinglists. Is that possible? And if yes, how to make it?
thanks yavuz

TRON478 wrote:
i have set up a linux machine with mailman successfully. it works fine. now i need a second mailinglist but based on another domain. That means i have the first domain = lists.myfirstdomain.com -> this works, now i need to set up a second domain -> lists.myseconddomain.com with mailinglists. Is that possible? And if yes, how to make it?
Assuming you are willing to live with the restriction that all list names must be installation unique, the Mailman side of this is simple. Just put
add_virtualhost('www.myseconddomain.com', 'lists.myseconddomain.com')
or whatever the actual web and email domains are in mm_cfg.py following
add_virtualhost(DEFAULT_URL_HOST, DEFAULT_EMAIL_HOST)
if you have that in mm_cfg.py; otherwise anywhere following
################################################## # Put YOUR site-specific settings below this line.
The rest of the job is setting up your MTA and web server for the additional domain(s).
participants (2)
-
Mark Sapiro
-
TRON478