2014-06-09 13:00 GMT+03:00  <[email protected]>:
> Message: 3
> Date: Sun, 8 Jun 2014 16:40:35 -0400
> From: Rich Kulawiec <[email protected]>
> To: [email protected]
> Subject: Re: [Mailman-Users] Export all subsribers
> Message-ID: <[email protected]>
> 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@vps1:~#  ~mailman/bin/list_members mailman
-bash: ~mailman/bin/list_members: No such file or directory

OR

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

where I can read right name of my mailing list?
------------------------------------------------------
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

Reply via email to