Merge pull request #251 from Mailu/feature-recipient-delimiter

Feature recipient delimiter
master
kaiyou 7 years ago committed by GitHub
commit 901796f4ac

@ -73,6 +73,10 @@ RELAYHOST=
# Fetchmail delay # Fetchmail delay
FETCHMAIL_DELAY=600 FETCHMAIL_DELAY=600
# Recipient delimiter, character used to delimiter localpart from custom address part
# e.g. localpart+custom@domain;tld
RECIPIENT_DELIMITER=+
################################### ###################################
# Nginx settings # Nginx settings
################################### ###################################

@ -127,7 +127,7 @@ service imap-login {
protocol lmtp { protocol lmtp {
mail_plugins = $mail_plugins sieve mail_plugins = $mail_plugins sieve
recipient_delimiter = + recipient_delimiter = {{ RECIPIENT_DELIMITER }}
} }
service lmtp { service lmtp {

@ -28,6 +28,9 @@ mydestination =
# Relayhost if any is configured # Relayhost if any is configured
relayhost = {{ RELAYHOST }} relayhost = {{ RELAYHOST }}
# Recipient delimiter for extended addresses
recipient_delimiter = {{ RECIPIENT_DELIMITER }}
############### ###############
# TLS # TLS
############### ###############

Loading…
Cancel
Save