I've not tested this, but I think you can prevent "pointless" e-mails being sent if you do the following..
Open the
includes/cron/maf_cron.php file, find:
Code:
$logmessage = "Moderation Application Auto Proccessing Complete; \n Declination's: " . $declinationemail . ".\n\n Shortlistings: " . $shorlistemail . ". \n\n New Applications: " . $newapps . ".";
vbmail($vboptions[webmasteremail],"Moderation Application Auto Proccessing (Proccessing Notification)",$logmessage,"From: \"$vboptions[bbtitle] Mailer\" <$vboptions[webmasteremail]>");
log_cron_action($logmessage, $nextitem);
Replace it with:
Code:
if ($declinationemail != 'None' AND $shorlistemail != 'None' AND $newapps != 'None')
{
$logmessage = "Moderation Application Auto Proccessing Complete; \n Declination's: " . $declinationemail . ".\n\n Shortlistings: " . $shorlistemail . ". \n\n New Applications: " . $newapps . ".";
vbmail($vboptions[webmasteremail],"Moderation Application Auto Proccessing (Proccessing Notification)",$logmessage,"From: \"$vboptions[bbtitle] Mailer\" <$vboptions[webmasteremail]>");
log_cron_action($logmessage, $nextitem);
}