On 09/03/2014 02:55 PM, Steve wrote: > > Mailing lists are another story however. When I provide > http://gator3227.hostgator.com/mailman/listinfo/members_blpoa.com page to > people to subscribe, Mailman returns > http://blpoa.com/mailman/confirm/members_blpoa.com (and a confirmation > "key").
You need to set the list's web_page_url attribute to 'http://gator3227.hostgator.com/mailman/'. Unfortunately, you can't set this via the web admin GUI. There are several ways to set it, but they all require access to a command shell on the host which you probably don't have. Possibly you can convince hostgator support to do this for you. Perhaps the most straightforward way to do this on hostgator's cPanel Mailman is something like: #!bin/sh cd /usr/local/cpanel/3rdparty/mailman file=`mktemp` echo 'web_page_url=http://gator3227.hostgator.com/mailman/' > $file bin/config_list -i $file members_blpoa.com rm $file -- 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] https://mail.python.org/mailman/listinfo/mailman-users Mailman FAQ: http://wiki.list.org/x/AgA3 Security Policy: http://wiki.list.org/x/QIA9 Searchable Archives: http://www.mail-archive.com/mailman-users%40python.org/ Unsubscribe: https://mail.python.org/mailman/options/mailman-users/archive%40jab.org
