I just ran into a similar problem, using non-standard ports. What I was finding was that changing the formats/values affected *some* links but not others. Here's what I've got that now works (fix_url is your friend!):
DEFAULT_EMAIL_HOST = 'domain.tld' DEFAULT_URL_HOST = 'www.domain.tld' DEFAULT_URL_PATTERN = 'http://%s:7080/mailman/' MAILMAN_URL = 'http://www.domain.tld:7080/' PUBLIC_ARCHIVE_URL = 'http://%(hostname)s:7080/pipermail/%(listname)s' VIRTUAL_HOSTS.clear() add_virtualhost(DEFAULT_URL_HOST, DEFAULT_EMAIL_HOST) The FAQ works, and is helpful - but the archive URL hint is a little burried for the impatient or over-confident. -Don -----Original Message----- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Richard Barrett Sent: Thursday, July 24, 2003 5:32 AM To: Nicolas C. Cc: [EMAIL PROTECTED] Subject: Re: [Mailman-Users] missing port number :8000 in the list overviewURL. see about half way down this FAQ page for how to deal with this issue: http://www.python.org/cgi-bin/faqw-mm.py?req=show&file=faq04.029.htp On Thursday, July 24, 2003, at 09:11 AM, Nicolas C. wrote: > Hi, > > I have this in the mm_cfg.py: > DEFAULT_URL_HOST = 'my.machine.domain.com:8000' > DEFAULT_EMAIL_HOST = 'my.machine.domain.com' > add_virtualhost(DEFAULT_URL_HOST, DEFAULT_EMAIL_HOST) > > on the URL: > http://my.machine.domain.com:8000/mailman/listinfo > > The link of 'the list admin overview page' in the sentence "List > administrators, you can visit the list admin overview page to find the > management interface for your list. " > > the link is pointing towards: > http://my.machine.domain.com/mailman/admin > > why the :8000 is missing, I use mailman 2.1.2 ? > > regards, ------------------------------------------------------ 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/ This message was sent to: [EMAIL PROTECTED] Unsubscribe or change your options at http://mail.python.org/mailman/options/mailman-users/don_mailman%40the-levey s.us ------------------------------------------------------ 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/ This message was sent to: [EMAIL PROTECTED] Unsubscribe or change your options at http://mail.python.org/mailman/options/mailman-users/archive%40jab.org
