Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Zvonimir
ISPConfig 3
Commits
08462d0f
Commit
08462d0f
authored
Jan 22, 2014
by
Till Brehm
Browse files
Added columns for policyd in spamfilter_policy table.
parent
73daa945
Changes
2
Hide whitespace changes
Inline
Side-by-side
install/sql/incremental/upd_0063.sql
View file @
08462d0f
...
...
@@ -12,4 +12,9 @@ CREATE TABLE `client_message_template` (
`subject`
varchar
(
255
)
DEFAULT
NULL
,
`message`
text
,
PRIMARY
KEY
(
`client_message_template_id`
)
)
ENGINE
=
MyISAM
DEFAULT
CHARSET
=
utf8
AUTO_INCREMENT
=
1
;
\ No newline at end of file
)
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'
;
\ No newline at end of file
install/sql/ispconfig3.sql
View file @
08462d0f
...
...
@@ -1377,6 +1377,11 @@ CREATE TABLE `spamfilter_policy` (
`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
;
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment