develop dans master - première version stable #9

Merged
nmorin merged 80 commits from develop into master 2022-09-03 22:11:29 +02:00
2 changed files with 4 additions and 4 deletions
Showing only changes of commit 5ea51b4645 - Show all commits
+3 -3
View File
@@ -4,9 +4,9 @@ INSERT INTO postfix_alias (alias,destination,active) VALUES ("tata","test2",0);
INSERT INTO postfix_alias (alias,destination,active) VALUES ("titi","test3",1);
-- Alias virtuels
INSERT INTO postfix_alias_vitruels (courriel,destination,active) VALUES ("toto@exemple.fr","test1@exemple.fr",1);
INSERT INTO postfix_alias_vitruels (courriel,destination,active) VALUES ("tata@exemple.fr","test2@exemple.fr",0);
INSERT INTO postfix_alias_vitruels (courriel,destination,active) VALUES ("titi@exemple.fr","test3@exemple.fr",1);
INSERT INTO postfix_alias_virtuels (courriel,destination,active) VALUES ("toto@exemple.fr","test1@exemple.fr",1);
INSERT INTO postfix_alias_virtuels (courriel,destination,active) VALUES ("tata@exemple.fr","test2@exemple.fr",0);
INSERT INTO postfix_alias_virtuels (courriel,destination,active) VALUES ("titi@exemple.fr","test3@exemple.fr",1);
-- Domaines secondaires
INSERT INTO postfix_domaines (domaine,active) VALUES ("toto.fr",1);
+1 -1
View File
@@ -4,7 +4,7 @@ CREATE TABLE IF NOT EXISTS postfix_alias (
destination TEXT NOT NULL,
active INTEGER
);
CREATE TABLE IF NOT EXISTS postfix_alias_vitruels (
CREATE TABLE IF NOT EXISTS postfix_alias_virtuels (
id INTEGER PRIMARY KEY AUTOINCREMENT,
courriel TEXT NOT NULL UNIQUE,
destination TEXT NOT NULL,