added email bounces processing, fixes #44
This commit is contained in:
@@ -173,4 +173,12 @@
|
||||
sql("ALTER TABLE `cache_reports` ADD INDEX `userid` (`userid`)");
|
||||
}
|
||||
|
||||
function dbv_108() // automatic email-bounce processiong
|
||||
{
|
||||
if (!sql_field_exists('user','last_email_problem'))
|
||||
sql("ALTER TABLE `user` ADD COLUMN `last_email_problem` datetime default NULL AFTER `email_problems`");
|
||||
if (!sql_field_exists('user','mailing_problems'))
|
||||
sql("ALTER TABLE `user` ADD COLUMN `mailing_problems` int(10) unsigned NOT NULL default '0' AFTER `last_email_problem`");
|
||||
}
|
||||
|
||||
?>
|
||||
Reference in New Issue
Block a user