[Mailman-Users] bounce-events-xxxx.pck filling up quickly my disk

2009-02-10 Thread Gerardo Herzig
Hi all. As my server is getting bocked in hotmail and yahoo, the pickled
file bounce-events grows mega-fast and quickly fills-up the partition.
Can Mailman be configured to "stop writing after some size", or will i
have to doit with some sort of Linux quota system?

Thanks!
Gerardo
--
Mailman-Users mailing list
Mailman-Users@python.org
http://mail.python.org/mailman/listinfo/mailman-users
Mailman FAQ: http://wiki.list.org/x/AgA3
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://wiki.list.org/x/QIA9


[Mailman-Users] mailman +postgres

2008-04-01 Thread Gerardo Herzig
Hi all. Im just wondering: There is a mailman implementation who uses 
postgres as data storage?

A quick google just shows me tons of postgres lists working under mailman :)

Thanks!

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


[Mailman-Users] grouping users?

2007-07-27 Thread Gerardo Herzig
Hi all. Here is the situation: We have one list who have ppl who speak 4 
diff languages. I wonder if there is a method to `group' those members 
by "native language" in order to send a different email for each of this 
groups. Mi common sense says 'off course you cant, you idiot, make 4 
differents lists!', but...you never know

Thanks!
Gerardo
--
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


[Mailman-Users] list of disabled address?

2007-04-16 Thread Gerardo Herzig
Hi all. I would like to know if there is some way to view all the 
accounts who has been disabled (p.e. due for a bounce threshold limit 
reached) for a mailman list.

Thanks!
Gerardo
--
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


Re: [Mailman-Users] request.pck does not match heldmsg-Listname files

2006-11-17 Thread Gerardo Herzig
Well, if mailman do not provide such a tool, there is lots of quick ways 
to find such a files: Lets assume that any given .pck file must have at 
least 5 lines to be considered a `good one'. So you can find those files 
who have less than 5 lines, then you can delete it

Simple python oneliner for finding .pck files fewer than 5 lines:
cd ~mailman/data
python

 >>> import glob
 >>>'\n'.join([x[0] for x in [(open(y).name, len(open(y).readlines())) 
for y in glob.glob('*.pck')] if x[1] < 5])

## the (if x[1] < 5) at the end is the total lines for each file.
Try it and watch. If you like it, you can save it as 
find_orphaned_files.py and do

./find_orphaned_files.py | xargs ~mailman/bin/discard

Or something like this. Its just an idea, hope to be helpfull.

Bye!
Gerardo

>Hello,
>
>
>I've noticed heldmsg-ListName-* files in mailman/data, which the 
>request.pck file for the given list isn't aware of (the pickle only has a 
>version string).
>
>Is there something which others have used to iterate the request.pck 
>file of all lists, and determine orphaned files in the mailman/data 
>directory so they can be deleted?
>
>
>Thanks,
>
>Ivan Fetch.
>--
>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/gherzig%40fmed.uba.ar
>
>Security Policy: 
>http://www.python.org/cgi-bin/faqw-mm.py?req=show&file=faq01.027.htp
>
>
>  
>

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


Re: [Mailman-Users] deleting "pending for approval" from command line

2006-11-13 Thread Gerardo Herzig
 > Can i delete those pending

>> > messages from command line? Can i delete or blank a simple file? 
>> (its ok
>> > if i delete ALL the pending messages)
>>
>> I have a similar issue with a mailing list with over 5K unmoderated
>> messages I need to sift through, and can't load the web interface for 
>> it.
>>
>> Gadi.
>>
>
> I've added FAQ 4.74
> 
> to answer this. If someone else can look it over for me and
> double-check that what I've put is accurate (and the best phrasing,
> etc.), I'd be appreciative.
>
Well, i think im using the Carl revised version of FAQ, and work 
perfectly. Thank you all!!

Gerardo

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


[Mailman-Users] deleting "pending for approval" from command line

2006-11-10 Thread Gerardo Herzig
Hi all. I have a user who does not check "pending for approvals" so 
long, and now the mailman web interface trows an error (an timeout or 
resources issue, not shure). The thing is: Can i delete those pending 
messages from command line? Can i delete or blank a simple file? (its ok 
if i delete ALL the pending messages)

Thanks!!

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