X-Git-Url: https://git.immae.eu/?p=perso%2FImmae%2FConfig%2FNix.git;a=blobdiff_plain;f=modules%2Fprivate%2Fmail%2Frelay.nix;h=52288fc1b13a73a45d69932433de130af2eca2b4;hp=ae74112bb2cc92cd2df50ba4768a92b992562c04;hb=4e07970c88f474bc45ae3e723c62df5f6711833e;hpb=91b3d06b6a9147e0e03b49d25cdcecb8a617a4f7 diff --git a/modules/private/mail/relay.nix b/modules/private/mail/relay.nix index ae74112..52288fc 100644 --- a/modules/private/mail/relay.nix +++ b/modules/private/mail/relay.nix @@ -68,6 +68,19 @@ LIMIT 1 ''; } + { + dest = "postfix/sympa_mailbox_maps"; + user = config.services.postfix.user; + group = config.services.postfix.group; + permissions = "0440"; + text = '' + hosts = ${config.myEnv.mail.sympa.postgresql.host} + user = ${config.myEnv.mail.sympa.postgresql.user} + password = ${config.myEnv.mail.sympa.postgresql.password} + dbname = ${config.myEnv.mail.sympa.postgresql.database} + query = SELECT DISTINCT CONCAT(name_list, '@', robot_list) FROM list_table + ''; + } { dest = "postfix/ldap_ejabberd_users_immae_fr"; user = config.services.postfix.user; @@ -95,6 +108,7 @@ paths = [ config.secrets.fullPaths."postfix/mysql_alias_maps" config.secrets.fullPaths."postfix/mysql_mailbox_maps" + config.secrets.fullPaths."postfix/sympa_mailbox_maps" config.secrets.fullPaths."postfix/ldap_ejabberd_users_immae_fr" ]; }; @@ -182,6 +196,7 @@ virtual_mailbox_maps = [ "hash:/etc/postfix/host_dummy_mailboxes" "mysql:${config.secrets.fullPaths."postfix/mysql_mailbox_maps"}" + "pgsql:${config.secrets.fullPaths."postfix/sympa_mailbox_maps"}" ]; in backup_recipients ++ virtual_alias_maps ++ virtual_mailbox_maps;