chris fergus wrote: > >I can get to the initial admin page at: > >https://mail.servername.com/mailman/admin/mailman > >but not the overview page > >https://mail.servername.com/cgi-bin/listinfo > >I get the 404 error. > >My mm_cfg.py variable looks like this: > >DEFAULT_URL_PATTERN = 'https://%s/cgi-bin/' >PRIVATE_ARCHIVE_URL = '/cgi-bin/private' > >My apached.conf looks like this: > >#ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/ > > >ScriptAlias /mailman/ /usr/lib/mailman/cgi-bin/
So you need to access Mailman CGI pages via URLs of the form scheme://host/mailman/... as in your example above that works. This means you need (for https scheme) DEFAULT_URL_PATTERN = 'https://%s/mailman/' in mm_cfg.py. After making this change, you need to run fix_url as below. >Iv'e tried tweeking the variables in both configs and running > >'bin/withlist -l -a -r fix_url' > >each time, but the problem usually, but not always gets worse; when I try >the link again, it just gives me a blank page (not accessable) > >The output from the above command is always the following: > >'importing fix_url.... >Running fix_url.fix_url... >Loading list mailman (locked) >saving list >Loading list internal (locked) >Saving list >Finalizing' > >It gives me te above response whether mailman is running or not. (which I think is correct) Right. It is independent of whether or not Mailman is running. The above is the expected output, but it won't do the right thing if DEFAULT_URL_PATTERN is wrong. >Additionally, the outgoing email to the <newlist> admin is the following >(which doesn't seem right): > >'[EMAIL PROTECTED]; on behalf of; >[EMAIL PROTECTED] See <http://www.python.org/cgi-bin/faqw-mm.py?req=show&file=faq02.003.htp>. -- 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
