
04-13-2005, 12:06 PM
|
 |
|
|
Join Date: Jan 2003
Location: London
Posts: 5,268
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by Oblivion Knight
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);
}
|
nice one, i'll add it, though it should only go around the vBmail thing and not the whole thing
|