Mohamed Mostafa wrote: >i'm using mailman 2.1.7 on fedora core 5 >i want to know where does the mailman save the email adresses of the >members? (the location of the file if it saves it in a file?)
Mailman saves all list configuration information as a Python pickle in the file lists/<listname>/config.pck. If you are not using a custom MemberAdaptor to store membership info in your own database, the config.pck includes all the membership information (addresses, options, passwords, bounce info, ...). The default location of the lists/ directory is /usr/local/mailman/. RedHat used to put everything in /var/mailman/, but their more recent packages put the lists/ directory in /var/lib/mailman/, so I think you are looking for /var/lib/mailman/lists/<listname>/config.pck. If you don't find it there, use 'find / -name config.pck' to search for it. -- 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
