Mark Sapiro wrote:
>
> Then restart mailman, and finally run fix_url to fix your lists. E.g.
>
> cd ~mailman
> bin/withlist -l -r fix_url members -u firstdomain.com
> bin/withlist -l -r fix_url board -u seconddomain.com
> etc.
Actually, the fix_url -u option is the url host, not the email host,
Jon Slater wrote:
> DEFAULT_URL_HOST = "www.myserver.com"
>
> DEFAULT_EMAIL_HOST = "myserver.com"
You also want
add_virtualhost(DEFAULT_URL_HOST, DEFAULT_EMAIL_HOST)
if you don't have it and then
add_virtulahost('www.firstdomain.con', 'firstdomain.com')
add_virtulahost('www.seconddomain.con',
Hi,
I run multiple virtual domains from my server. For example:
firstdomain.com seconddomain.org thirddomain.com
But my server's 'real' name is: myserver.com
So, of course, in my mm_cfg.py I have:
DEFAULT_URL_HOST = "www.myserver.com"
DEFAULT_EMAIL_HOST = "myserver.com"