[Mailman-Users] Mailman-Users Digest, Vol 124, Issue 8

EyeLand ournet.biz at gmail.com
Mon Jun 9 20:32:06 CEST 2014


2014-06-09 13:00 GMT+03:00  <mailman-users-request at python.org>:
> Message: 3
> Date: Sun, 8 Jun 2014 16:40:35 -0400
> From: Rich Kulawiec <rsk at gsp.org>
> To: mailman-users at python.org
> Subject: Re: [Mailman-Users] Export all subsribers
> Message-ID: <20140608204035.GA29177 at gsp.org>
> Content-Type: text/plain; charset=us-ascii
>
> On Sun, Jun 08, 2014 at 08:11:54PM +0300, EyeLand wrote:
>> Hello, on mailing list I have many emails on "Membership Management...
>> - [Membership List]", how I can export all on txt file? Thank you.
>
> >From the shell:
>
>         ~mailman/bin/list_members name-of-mailing-list
>
> will put the list on stdout, so you could redirect it to a file
> if you wish:
>
>         ~mailman/bin/list_members name-of-mailing-list > roster
>
> If you have a number of mailing lists and want to dump them all, you
> could use something along the lines of:
>
>         #!/bin/csh
>
>         set filelist = `~mailman/bin/list_lists -b`
>
>         foreach i ($filelist)
>                 ~mailman/bin/list_members $i > $i.roster
>         end
>
> which will create a series of files whose names consist of the
> name of each mailing list suffixed with ".roster".
>
> ---rsk

root at vps1:~#  ~mailman/bin/list_members mailman
-bash: ~mailman/bin/list_members: No such file or directory

OR

root at vps1:~#  ~mailman/bin/list_members mailman at host
-bash: ~mailman/bin/list_members: No such file or directory

where I can read right name of my mailing list?


More information about the Mailman-Users mailing list