| |
Discard All in List Admin Interface
Friday January 30, @03:13PM, by Clayton Carter
Subject : Handy Tool for List Admins
from the nuke-spam dept.
Summary :
The Mailman FAQ has an entry about marking all of the messages in the queue to Discard. They accomplish this with a couple of lines of Javascript that can be bookmarked and then used on the toolbar or simply from the bookmarks menu. Instructions follow...
Text :
Drag the following link to the toolbar in your browser and you'll be able to mark all of the messages in the queue to `Discard' with one click. Alternately, you could right click on the link and select `Bookmark this link' (or something similarly worded). You might also want to open the bookmark properties dialog and choose a more fitting name.
Nuke Spam
Here's the plain text version: (Note that it should all be one line.)
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);
Clayton
Reply
|