File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed
Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -19,3 +19,7 @@ DROP TABLE 'software_update_inst';
1919
2020-- Brexit
2121UPDATE ` country` SET ` eu` = ' n' WHERE ` iso` = ' GB' ;
22+
23+ -- Add limit for per domain relaying
24+ ALTER TABLE ` client` ADD ` limit_relayhost` ENUM( ' n' , ' y' ) NOT NULL DEFAULT ' n' AFTER ` limit_spamfilter_policy` ;
25+ ALTER TABLE ` client_template` ADD ` limit_relayhost` ENUM( ' n' , ' y' ) NOT NULL DEFAULT ' n' AFTER ` limit_spamfilter_policy` ;
Original file line number Diff line number Diff line change @@ -185,6 +185,7 @@ CREATE TABLE `client` (
185185 ` limit_spamfilter_wblist` int (11 ) NOT NULL DEFAULT ' 0' ,
186186 ` limit_spamfilter_user` int (11 ) NOT NULL DEFAULT ' 0' ,
187187 ` limit_spamfilter_policy` int (11 ) NOT NULL DEFAULT ' 0' ,
188+ ` limit_relayhost` ENUM( ' n' , ' y' ) NOT NULL DEFAULT ' n' ,
188189 ` default_xmppserver` int (11 ) unsigned NOT NULL DEFAULT ' 1' ,
189190 ` xmpp_servers` text ,
190191 ` limit_xmpp_domain` int (11 ) NOT NULL DEFAULT ' -1' ,
@@ -317,6 +318,7 @@ CREATE TABLE `client_template` (
317318 ` limit_spamfilter_wblist` int (11 ) NOT NULL default ' 0' ,
318319 ` limit_spamfilter_user` int (11 ) NOT NULL default ' 0' ,
319320 ` limit_spamfilter_policy` int (11 ) NOT NULL default ' 0' ,
321+ ` limit_relayhost` ENUM( ' n' , ' y' ) NOT NULL DEFAULT ' n' ,
320322 ` default_xmppserver` int (11 ) unsigned NOT NULL DEFAULT ' 1' ,
321323 ` xmpp_servers` text ,
322324 ` limit_xmpp_domain` int (11 ) NOT NULL DEFAULT ' -1' ,
You can’t perform that action at this time.
0 commit comments