Changement de nom d'une valeur de session + ajout d'un domaine par défaut + ajout de la possibilité d'ajouter/modifier/supprimer des alias virtuels

This commit is contained in:
ycharbi
2021-06-25 02:05:18 +02:00
parent ed3bb43b07
commit c399aece89
9 changed files with 263 additions and 24 deletions
+2 -1
View File
@@ -13,6 +13,7 @@ CREATE TABLE IF NOT EXISTS postfix_alias_virtuels (
CREATE TABLE IF NOT EXISTS postfix_domaines (
id INTEGER PRIMARY KEY AUTOINCREMENT,
domaine TEXT NOT NULL UNIQUE,
defaut INTEGER UNIQUE,
active INTEGER
);
CREATE TABLE IF NOT EXISTS postfix_liste_noire_destinataires (
@@ -37,4 +38,4 @@ CREATE TABLE IF NOT EXISTS postfix_utilisateurs (
gid INTEGER NOT NULL,
privilege TEXT NOT NULL,
active INTEGER
);
);