Make the recipient delimiter customizeable, fixes #233 and #164

master
kaiyou 7 years ago
parent bffc51401d
commit 4ee086a52a

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

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

@ -29,7 +29,7 @@ mydestination =
relayhost = {{ RELAYHOST }}
# Recipient delimiter for extended addresses
recipient_delimiter = +
recipient_delimiter = {{ RECIPIENT_DELIMITER }}
###############
# TLS

Loading…
Cancel
Save