initial commit of file from CVS for e-smith-imp on Wed 12 Jul 08:57:19 BST 2023

This commit is contained in:
Brian Read
2023-07-12 08:57:19 +01:00
parent 0687739452
commit ed665fe4dc
215 changed files with 2942 additions and 2 deletions

View File

View File

@@ -0,0 +1,14 @@
-- $Horde: imp/scripts/sql/imp.sql,v 1.1.2.1 2007/12/20 14:00:36 jan Exp $
CREATE TABLE IF NOT EXISTS imp_sentmail (
sentmail_id BIGINT NOT NULL,
sentmail_who VARCHAR(255) NOT NULL,
sentmail_ts BIGINT NOT NULL,
sentmail_messageid VARCHAR(255) NOT NULL,
sentmail_action VARCHAR(32) NOT NULL,
sentmail_recipient VARCHAR(255) NOT NULL,
sentmail_success INT NOT NULL,
--
PRIMARY KEY (sentmail_id)
);