Differences between revisions 1 and 2
Revision 1 as of 2008-05-27 13:24:28
Size: 1609
Editor: terri
Comment:
Revision 2 as of 2009-06-18 15:06:37
Size: 1772
Editor: terri
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
#pragma page-filename DOC/versions/8683571 #pragma page-filename DOC/versions/14352517
Line 25: Line 25:
If you want to allow all messages rather than discard them, see [[../How can I accept (allow) all held messages?|How can I accept (allow) all held messages?]]

3.26. Is there an easy way to discard all messages waiting to be reviewed?

If you have a list where non members can post but their messages are moderated, you'll have to deal with a lot of spam. After sometime, just a small percentage of them will be good posts. It's boring to click to discard each messages. A better solution is to approve the good ones, and use a javascript link to mark to discard all.

First, open your bookmark manager and add the following link as an URL:

 javascript:var el=document.forms[0].elements;for (var i=0; i<el.length;i++) if (el[i].type=='radio' && el[i].value==3) void(el[i].checked=true);

Now visit the moderation page, and visit the bookmark. All the messages will be marked to discard, just press the button.

I've tested it just with mozilla, but it should work in all browser versions that support javascript links.

For Mailman 2.1.5, we find the following update which is mentioned in the mailman-2.1.5/NEWS file:

    - The admindb page has a checkbox that allows you to discard all held
      messages that are marked Defer.  On heavy lists with lots of spam holds,
      this makes clearing them much faster.

Another strategy would just be to ignore spam messages, relying on letting them be culled automatically according to your max_days_to_hold setting.

If you want to allow all messages rather than discard them, see How can I accept (allow) all held messages?

Last changed on Wed Jan 23 12:05:14 2008 by jidanni Converted from the Mailman FAQ Wizard

This is one of many Frequently Asked Questions.

MailmanWiki: DOC/Is there an easy way to discard all messages waiting to be reviewed? (last edited 2015-01-31 02:36:58 by msapiro)