move btree to lmdb

This commit is contained in:
Sebastian Hugentobler 2021-08-24 10:41:54 +02:00
parent 5f1402dd67
commit f31add1963
Signed by: shu
GPG Key ID: BB32CF3CA052C2F0
2 changed files with 3 additions and 4 deletions

View File

@ -22,8 +22,7 @@ RUN apk add --no-cache \
openssl \ openssl \
spamassassin-client \ spamassassin-client \
libstdc++ \ libstdc++ \
libmilter \ libmilter
db
RUN addgroup -g 2222 access RUN addgroup -g 2222 access
RUN addgroup postfix access RUN addgroup postfix access

View File

@ -47,8 +47,8 @@ smtpd_tls_wrappermode = no
lmtp_tls_mandatory_ciphers = $smtpd_tls_mandatory_ciphers lmtp_tls_mandatory_ciphers = $smtpd_tls_mandatory_ciphers
lmtp_tls_ciphers = $smtpd_tls_ciphers lmtp_tls_ciphers = $smtpd_tls_ciphers
smtpd_tls_session_cache_database = btree:${data_directory}/smtpd_scache smtpd_tls_session_cache_database = lmdb:${data_directory}/smtpd_scache
smtp_tls_session_cache_database = btree:${data_directory}/smtp_scache smtp_tls_session_cache_database = lmdb:${data_directory}/smtp_scache
smtpd_sasl_type = dovecot smtpd_sasl_type = dovecot
smtpd_sasl_path = inet:{{getenv "DOVECOT_HOST"}}:{{getenv "DOVECOT_AUTH_PORT"}} smtpd_sasl_path = inet:{{getenv "DOVECOT_HOST"}}:{{getenv "DOVECOT_AUTH_PORT"}}