Differences between revisions 1 and 3 (spanning 2 versions)
Revision 1 as of 2009-06-18 15:04:16
Size: 972
Editor: terri
Comment:
Revision 3 as of 2015-02-22 01:41:21
Size: 973
Editor: JimTittsler
Comment: use }}}} for code block so MoinMoin isn't confused by the }}} contained in the Javascript
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
#pragma page-filename DOC/versions/14352715
Related to [[../Is there an easy way to discard all messages waiting to be reviewed?|Is there an easy way to discard all messages waiting to be reviewed?]], one might also want to accept all messages (if, for example, there was a mistake in the list config).  There is no convenient checkbox for this in the interface (since discarding is a much more common task), but you can use a bookmarklet to change all the messages from "Defer" to "Accept"
#pragma page-filename DOC/versions/8683570
Related to [[../Is there an easy way to discard all messages waiting to be reviewed?|Is there an easy way to discard all messages waiting to be reviewed?]], one might also want to accept all messages (if, for example, there was a mistake in the list config). There is no convenient checkbox for this in the interface (since discarding is a much more common task), but you can use a bookmarklet to change all the messages from "Defer" to "Accept"
Line 4: Line 4:
{{{ {{{{
Line 6: Line 6:
}}} }}}}
Line 8: Line 8:
Be careful with this!  You might want to review the messages before hitting submit to avoid accidentally spamming your users. Be careful with this! You might want to review the messages before hitting submit to avoid accidentally spamming your users.

Related to Is there an easy way to discard all messages waiting to be reviewed?, one might also want to accept all messages (if, for example, there was a mistake in the list config). There is no convenient checkbox for this in the interface (since discarding is a much more common task), but you can use a bookmarklet to change all the messages from "Defer" to "Accept"

javascript:function%20approveAll(){var%20inputs=document.getElementsByTagName("input");for(var%20i=0;i<inputs.length;i++){if(inputs[i].type=='radio'&&inputs[i].name.indexOf("senderaction-")==0&&inputs[i].value==1){inputs[i].checked=true;}}};approveAll()

Be careful with this! You might want to review the messages before hitting submit to avoid accidentally spamming your users.

This is one of many Frequently Asked Questions.

MailmanWiki: DOC/How can I accept (allow) all held messages? (last edited 2015-02-22 01:41:21 by JimTittsler)