You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
3.1 KiB
35 lines
3.1 KiB
|
|
-- Alias (ne doivent pas apparaître)
|
|
INSERT INTO postfix_alias (alias,destination,active) VALUES ("toto","test1",1);
|
|
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_virtuels (destination,courriel,active) VALUES ("toto@exemple.fr","comptable@exemple.fr",1);
|
|
INSERT INTO postfix_alias_virtuels (destination,courriel,active) VALUES ("toto@exemple.fr","medecin@exemple.fr",0);
|
|
INSERT INTO postfix_alias_virtuels (destination,courriel,active) VALUES ("toto@exemple.fr","supermacher@exemple.fr",1);
|
|
INSERT INTO postfix_alias_virtuels (destination,courriel,active) VALUES ("tata@exemple.fr","fleuriste@exemple.fr",0);
|
|
INSERT INTO postfix_alias_virtuels (destination,courriel,active) VALUES ("tata@exemple.fr","coiffeur@exemple.fr",0);
|
|
INSERT INTO postfix_alias_virtuels (destination,courriel,active) VALUES ("titi@exemple.fr","promos@exemple.fr",1);
|
|
|
|
-- Domaines secondaires
|
|
INSERT INTO postfix_domaines (domaine,active,defaut) VALUES ("exemple.fr",1,0);
|
|
INSERT INTO postfix_domaines (domaine,active,defaut) VALUES ("toto.fr",1,0);
|
|
INSERT INTO postfix_domaines (domaine,active,defaut) VALUES ("tata.fr",1,0);
|
|
INSERT INTO postfix_domaines (domaine,active,defaut) VALUES ("titi.fr",0,0);
|
|
|
|
-- Listes noires destinataires
|
|
INSERT INTO postfix_liste_noire_destinataires (courriel,action,active) VALUES ("root@mail.exemple.fr","REJECT",1);
|
|
INSERT INTO postfix_liste_noire_destinataires (courriel,action,active) VALUES ("git@mail.exemple.fr","REJECT",1);
|
|
INSERT INTO postfix_liste_noire_destinataires (courriel,action,active) VALUES ("liste@mail.exemple.fr","REJECT",1);
|
|
|
|
-- Listes noires expéditeurs
|
|
INSERT INTO postfix_liste_noire_expediteurs (courriel,code_retour,message,active) VALUES ("tata@exemple.fr",554,"Parle à ma main, ma tête est malade.",0);
|
|
INSERT INTO postfix_liste_noire_expediteurs (courriel,code_retour,message,active) VALUES ("bob@titi.fr",554,"Parle à ma main, ma tête est malade.",1);
|
|
INSERT INTO postfix_liste_noire_expediteurs (courriel,code_retour,message,active) VALUES ("roland@tata.fr",554,"Parle à ma main, ma tête est malade.",1);
|
|
|
|
-- Listes utilisateurs
|
|
INSERT INTO postfix_utilisateurs (utilisateur,mot_de_passe,nom_complet,rep_perso,uid,gid,privilege,prefixe,active) VALUES ("demo@exemple.fr","{SHA512-CRYPT}$6$UXHkG3wTNiXZthSO$JVK6Qubf0JdCTFNlsYr./61wPNqxre3N4xGbMQHl264F9om84F2QbrqzI.pQj36npoHifUElvZNNhOw6T/9Rp0","Démo","exemple.fr/demo/",3000,3000,"administrateur","",1);
|
|
INSERT INTO postfix_utilisateurs (utilisateur,mot_de_passe,nom_complet,rep_perso,uid,gid,privilege,active) VALUES ("toto@exemple.fr","{SHA512-CRYPT}$6$bhI1RyJYs3jZFEPT$bfZC1tupWAWVAK34zfOxoAXhJvfKM83tZy9doLURsws9jXS3XvBISxtWxiXPKZ3Nex3MXoOPNFzw7iy8PiWMN.","Toto Dupont","exemple.fr/toto/",3000,3000,"administrateur",1);
|
|
INSERT INTO postfix_utilisateurs (utilisateur,mot_de_passe,nom_complet,rep_perso,uid,gid,privilege,prefixe,active) VALUES ("tata@tata.fr","{SHA512-CRYPT}$6$9E.KRufz4Gd.dBhW$KUdFnBg8aiPbYarKiDc4cD6NC.WsYanXBqhZEpCXJndR4SlJn3eVVo7HirXzpYaggihBgdUScS6wswG.AfOKd/","Tata Dupuis","tata.fr/tata/",3000,3000,"utilisateur","ta.",1);
|