1
0
mirror of https://github.com/Mailu/Mailu.git synced 2025-01-16 02:46:44 +02:00

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

Feature recipient delimiter
This commit is contained in:
kaiyou 2017-09-10 14:14:07 +02:00 committed by GitHub
commit 901796f4ac
3 changed files with 8 additions and 1 deletions

View File

@ -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
###################################

View File

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

View File

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