Ryan Golhar wrote: > > The problem I have with is that the address being displayed is non-existent > on the mail server. The mailman system is installed on a web server thatis > separate from the mail server. I want the contact to be the list owner of > the initial "mailman" mailing list ( step 9 from the installation > instructions). > > If modifying listinfo.py is the correct way to fix this, then that's what'll > do to fix it.
It seems from your description that your mailman installation is not correct. The domain of the mailman list's email address on the listinfo overview page is the 'email host' that is associated with the 'url host' that is the host name of the URL used to access the page in the VIRTUAL_HOSTS dictionary which is built with add_virtualhost('url host', 'email host') directives. If you have only one web host and one email host, these should be assigned to DEFAULT_URL_HOST and DEFAULT_EMAIL_HOST in mm_cfg.py, and these assignments should be followed by VIRTUAL_HOSTS.clear() add_virtualhost(DEFAULT_URL_HOST, DEFAULT_EMAIL_HOST) Then when you go to http://urlhost/mailman/listinfo/, the mailman list address you see will be [EMAIL PROTECTED] Then as long as that list's owner is its only member, you get what you want. -- Mark Sapiro <[EMAIL PROTECTED]> The highway is for gamblers, San Francisco Bay Area, California better use your sense - B. Dylan ------------------------------------------------------ Mailman-Users mailing list Mailman-Users@python.org 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