Code:
// Configuration parameters
// The user must had logged in the forum in the last x days
$lastactivity = 5;
// The amount of days an user stays "flagged" before been pruned
$flaggedtime = 7;
// The user must have posted in the forum in the last x days
$lastpost = 5;
// Users with more than this amount of posts will not be pruned
$maxposts = 100;
// Set this to true to email the members that are been pruned
$sendmail = true;
// This is the UserGroup that will receive pruned members.
// If you do not have such usergroup already available,
// please create one and refer to its id number here.
$groupid = 2;
// Set here the usergroups you do NOT wish to have modified,
// seperate each groupid with a space
$exclude = "6 7 5 13 133 9 136 134 12 60 135 11";
// End Configuration parameters