• Wincent
    Open
  • Blog
  • Wiki
  • Snippets
  • Tags
  • Search

Exporting addresses from MailmanEdit

Created 3/24/2008, updated 5/18/2017

These notes were made while exporting addresses from the Mailman mailing list installation on my old web server, in preparation for the move to the new host.

cd /var/mailman/bin
sudo -v
LISTS=$(sudo ./list_lists -b)
for LIST in $LISTS
do
  OUT=~/$LIST-members.txt
  echo "Dumping $LIST to $OUT"
  sudo ./list_members -o $OUT $LIST
  echo "Dumped $(wc -l $OUT | awk '{print$1}') addresses"
done
  • mailman
  • export
  • wiki
Site
  • About
  • Blog
  • Wiki
  • Snippets
  • Tags
  • Search
External
  • GitHub
  • Twitter
  • YouTube
  • Facebook
  • LinkedIn
Colophon

Made by Greg Hurrell using React, Relay and GraphQL (with help from Git, Redis and Neovim).