Re: [Mailman-Users] MAX_MESSAGE_SIZE limit

2008-07-31 Thread Mark Sapiro
[EMAIL PROTECTED] wrote: >How would I set a MAX_MESSAGE_SIZE to 5MB, for example, for all lists? Or >would this need to be done in the MTA? #!/bin/sh f=`mktemp` echo max_message_size = 5000 > $f cd /path/to/mailman/ for l in `bin/list_lists --bare` ; do bin/config_list -i $f $l done rm $f >I

[Mailman-Users] MAX_MESSAGE_SIZE limit

2008-07-31 Thread hone+mailman
How would I set a MAX_MESSAGE_SIZE to 5MB, for example, for all lists? Or would this need to be done in the MTA? I would leave the DEFAULT_MAX_MESSAGE_SIZE to 40 KB, but don't want list owners to set it to 0 (unlimited). Don Hone Ohio University