diff options
author | Dmitry Ilvokhin <d@ilvokhin.com> | 2024-04-19 21:00:34 +0100 |
---|---|---|
committer | Dmitry Ilvokhin <d@ilvokhin.com> | 2024-04-19 21:00:34 +0100 |
commit | 1891c512c50592eb76d2f96de58f0d9340dd5307 (patch) | |
tree | 18c03a171c5a88de9a8fd51a3bef828f5cc7f1d6 /roles/postfix/files | |
parent | 293af4aa75d6640225a0ebd4ffa7f3cce5d6dc6e (diff) | |
download | infra-1891c512c50592eb76d2f96de58f0d9340dd5307.tar.gz infra-1891c512c50592eb76d2f96de58f0d9340dd5307.tar.bz2 infra-1891c512c50592eb76d2f96de58f0d9340dd5307.zip |
Migrate postfix from hash to lmdb db
Diffstat (limited to 'roles/postfix/files')
-rw-r--r-- | roles/postfix/files/main.cf | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/roles/postfix/files/main.cf b/roles/postfix/files/main.cf index 499db8f..99d3ec1 100644 --- a/roles/postfix/files/main.cf +++ b/roles/postfix/files/main.cf @@ -242,7 +242,7 @@ virtual_mailbox_base = /var/mail # only to local(8) recipients. # # The default setting is $virtual_maps. -virtual_alias_maps = hash:/etc/postfix/virtual +virtual_alias_maps = lmdb:/etc/postfix/virtual # The default mail delivery transport and next-hop destination for final # delivery to domains listed with $virtual_mailbox_domains. This @@ -270,7 +270,7 @@ virtual_transport = dovecot # Optional lookup tables with aliases that apply only to local(8) recipients # # For defualts see `postconf -d` output. -alias_maps = hash:/etc/postfix/aliases +alias_maps = lmdb:/etc/postfix/aliases # The alias_database parameter specifies the alias database(s) that # are built with "newaliases" or "sendmail -bi". This is a separate |