summaryrefslogtreecommitdiff
path: root/mk-greylist-db.sql
blob: dff48c9617c03506b1527d0282f56c96f3e34777 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
CREATE TABLE resenders (
	host		TEXT,
	helo		TEXT,
	time		INTEGER,
    PRIMARY KEY (host, helo)
);

CREATE TABLE greylist (
	id		TEXT PRIMARY KEY,
	expire		INTEGER,
	host		TEXT,
	helo		TEXT
);