-
Notifications
You must be signed in to change notification settings - Fork 0
/
ext_tables.sql
48 lines (45 loc) · 1.96 KB
/
ext_tables.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
CREATE TABLE tx_rsmbouncemailprocessor_domain_model_bouncereport
(
newsletterid int(11) NOT NULL DEFAULT '0',
timeprocessed int(11) NOT NULL DEFAULT '0',
countmails int(11) NOT NULL DEFAULT '0',
countprocessed int(11) NOT NULL DEFAULT '0',
countunknownreason int(11) NOT NULL DEFAULT '0',
countnosenderfound int(11) NOT NULL DEFAULT '0',
countuserunknown int(11) NOT NULL DEFAULT '0',
countquotaexceeded int(11) NOT NULL DEFAULT '0',
countconnectionrefused int(11) NOT NULL DEFAULT '0',
countheadererror int(11) NOT NULL DEFAULT '0',
countoutofoffice int(11) NOT NULL DEFAULT '0',
countfilterlist int(11) NOT NULL DEFAULT '0',
countmessagesize int(11) NOT NULL DEFAULT '0',
countpossiblespam int(11) NOT NULL DEFAULT '0',
);
CREATE TABLE tx_rsmbouncemailprocessor_domain_model_recipientreport
(
email varchar(255) DEFAULT '' NOT NULL,
countunknownreason int(11) NOT NULL DEFAULT '0',
countnosenderfound int(11) NOT NULL DEFAULT '0',
countuserunknown int(11) NOT NULL DEFAULT '0',
countquotaexceeded int(11) NOT NULL DEFAULT '0',
countconnectionrefused int(11) NOT NULL DEFAULT '0',
countheadererror int(11) NOT NULL DEFAULT '0',
countoutofoffice int(11) NOT NULL DEFAULT '0',
countfilterlist int(11) NOT NULL DEFAULT '0',
countmessagesize int(11) NOT NULL DEFAULT '0',
countpossiblespam int(11) NOT NULL DEFAULT '0',
);
CREATE TABLE tx_rsmbouncemailprocessor_domain_model_deletelog
(
email varchar(255) DEFAULT '' NOT NULL,
origpid int(11) NOT NULL DEFAULT '0',
reasontext varchar(255) DEFAULT '' NOT NULL,
reasonvalue int(11) NOT NULL DEFAULT '0',
deletetime int(11) NOT NULL DEFAULT '0',
);
CREATE TABLE tx_rsmbouncemailprocessor_domain_model_listunsubscribeheaderlog
(
email varchar(255) DEFAULT '' NOT NULL,
origpid int(11) NOT NULL DEFAULT '0',
deletetime int(11) NOT NULL DEFAULT '0',
);