Differences between revisions 2 and 3
Revision 2 as of 2009-06-18 15:04:17
Size: 969
Editor: terri
Comment: Migrated to Confluence 4.0
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 4: Line 4:
{{{ {{{{
Line 6: Line 6:
}}} }}}}

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)