mirror of
https://github.com/roundcube/roundcubemail.git
synced 2026-03-03 06:44:03 +01:00
Automatically collected recipients and trusted senders (#6904)
Added configurable Collected Recipients addressbook source (#4971) Added configurable Trusted Senders addressbook source (#5046) Added 'contact_exists' hook
This commit is contained in:
@@ -40,6 +40,21 @@ CREATE TABLE contactgroupmembers (
|
||||
|
||||
CREATE INDEX ix_contactgroupmembers_contact_id ON contactgroupmembers (contact_id);
|
||||
|
||||
--
|
||||
-- Table structure for table collected_addresses
|
||||
--
|
||||
|
||||
CREATE TABLE collected_addresses (
|
||||
address_id integer NOT NULL PRIMARY KEY,
|
||||
user_id integer NOT NULL,
|
||||
changed datetime NOT NULL default '0000-00-00 00:00:00',
|
||||
name varchar(255) NOT NULL default '',
|
||||
email varchar(255) NOT NULL,
|
||||
"type" integer NOT NULL
|
||||
);
|
||||
|
||||
CREATE UNIQUE INDEX ix_collected_addresses_user_id ON collected_addresses(user_id, "type", email);
|
||||
|
||||
--
|
||||
-- Table structure for table identities
|
||||
--
|
||||
@@ -215,4 +230,4 @@ CREATE TABLE system (
|
||||
value text NOT NULL
|
||||
);
|
||||
|
||||
INSERT INTO system (name, value) VALUES ('roundcube-version', '2020020101');
|
||||
INSERT INTO system (name, value) VALUES ('roundcube-version', '2020091000');
|
||||
|
||||
Reference in New Issue
Block a user