On Aug 4, 2005, at 13:11, [EMAIL PROTECTED] wrote:

> I switched hosting companies and my new company  does not
> support mailman. My database files are still there but I cannot access
> mailman.. I need to get my list transfered to a txt file but not  
> sure how to do  it..
> Mailman is disable so all i have is the files in the file manager...

The easiest way is to install Mailman somewhere and then use the  
list_members tool.

Alternatively, you could recover the subscriber email addresses  
fairly easily just by using Python on your local computer to open the  
pickled copy of the list configuration.  Something like (meaning,  
untested mail client code :-):

import cPickle
m = cPickle.load(open('config.pck', 'rb'))
for member in m['members']:
     print member
for digestmember in m['digest_members']:
     print digestmember


-- 
Jim Tittsler     http://www.OnJapan.net/      GPG: 0x01159DB6
Python Starship  http://Starship.Python.net/crew/jwt/
Mailman IRC      irc://irc.freenode.net/#mailman



------------------------------------------------------
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

Reply via email to