Re: [Mailman-Users] Specify URL's in confirmation e-mail?

2008-01-23 Thread Mark Sapiro
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,

Re: [Mailman-Users] Specify URL's in confirmation e-mail?

2008-01-23 Thread Mark Sapiro
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',

[Mailman-Users] Specify URL's in confirmation e-mail?

2008-01-22 Thread Jon Slater
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"