Till Brehm
2014-01-22 08462d0f49737d258ecd9d1010c2e510534a62d8
Added columns for policyd in spamfilter_policy table.
2 files modified
12 ■■■■■ changed files
install/sql/incremental/upd_0063.sql 7 ●●●● patch | view | raw | blame | history
install/sql/ispconfig3.sql 5 ●●●●● patch | view | raw | blame | history
install/sql/incremental/upd_0063.sql
@@ -12,4 +12,9 @@
  `subject` varchar(255) DEFAULT NULL,
  `message` text,
  PRIMARY KEY (`client_message_template_id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
ALTER TABLE  `spamfilter_policy` ADD  `policyd_quota_in` int(11) NOT NULL DEFAULT  '-1',
ADD  `policyd_quota_in_period` int(11) NOT NULL DEFAULT  '24',
ADD  `policyd_quota_out` int(11) NOT NULL DEFAULT  '-1',
ADD  `policyd_quota_out_period` int(11) NOT NULL DEFAULT  '24',
ADD  `policyd_greylist` ENUM(  'Y',  'N' ) NOT NULL DEFAULT  'N';
install/sql/ispconfig3.sql
@@ -1377,6 +1377,11 @@
  `spam_subject_tag2` varchar(64) default NULL,
  `message_size_limit` int(11) unsigned default NULL,
  `banned_rulenames` varchar(64) default NULL,
  `policyd_quota_in` int(11) NOT NULL DEFAULT  '-1',
  `policyd_quota_in_period` int(11) NOT NULL DEFAULT  '24',
  `policyd_quota_out` int(11) NOT NULL DEFAULT  '-1',
  `policyd_quota_out_period` int(11) NOT NULL DEFAULT  '24',
  `policyd_greylist` ENUM(  'Y',  'N' ) NOT NULL DEFAULT  'N',
  PRIMARY KEY  (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;