Will Twomey wrote: > >Instead of 'hostname.com/cgi-bin/mailman/admin/list' I'd like it to be >'list.hostname.com/cgi-bin/mailman/admin/list/general' > >Does anyone know how I can do this without changing the mailman email >address from [EMAIL PROTECTED] to [EMAIL PROTECTED]
Put the following in mm_cfg.py DEFAULT_URL_HOST = 'list.hostname.com' DEFAULT_EMAIL_HOST = 'hostname.com' VIRTUAL_HOSTS.clear() add_virtualhost(DEFAULT_URL_HOST, DEFAULT_EMAIL_HOST) restart mailman and run fix_url. See <http://www.python.org/cgi-bin/faqw-mm.py?req=show&file=faq04.029.htp>. After all this is working OK, you may want to rebuild the archives with 'bin/arch --wipe listname' in order to fix the absolute links to the listinfo page in the prior monthly index files. Of course you will have to have an appropriately configured web server on list.hostname.com. -- Mark Sapiro <[EMAIL PROTECTED]> The highway is for gamblers, San Francisco Bay Area, California better use your sense - B. Dylan ------------------------------------------------------ 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/ 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&file=faq01.027.htp
