From: Timo Sirainen Date: Tue, 19 Jan 2010 20:01:18 +0000 (+0200) Subject: recipient_delimiter defaults to "+" now. Also added to example-config. X-Git-Tag: 2.0.beta2~55 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4ae6b1ead4e7da49cd8c2e756346806dbbee30c6;p=thirdparty%2Fdovecot%2Fcore.git recipient_delimiter defaults to "+" now. Also added to example-config. --HG-- branch : HEAD --- diff --git a/doc/example-config/conf.d/lda.conf b/doc/example-config/conf.d/lda.conf index 2a097cecf4..acc6613718 100644 --- a/doc/example-config/conf.d/lda.conf +++ b/doc/example-config/conf.d/lda.conf @@ -25,6 +25,9 @@ # %n = CRLF, %r = reason, %s = original subject, %t = recipient #rejection_reason = Your message to <%t> was automatically rejected:%n%r +# Delimiter character between local-part and detail in email address. +#recipient_delimiter = + + # Should saving a mail to a non-existing mailbox automatically create it? #lda_mailbox_autocreate = no diff --git a/src/lib-lda/lda-settings.c b/src/lib-lda/lda-settings.c index 8769241387..e8fdcd361e 100644 --- a/src/lib-lda/lda-settings.c +++ b/src/lib-lda/lda-settings.c @@ -40,7 +40,7 @@ static const struct lda_settings lda_default_settings = { .rejection_reason = "Your message to <%t> was automatically rejected:%n%r", .deliver_log_format = "msgid=%m: %$", - .recipient_delimiter = "", + .recipient_delimiter = "+", .quota_full_tempfail = FALSE, .lda_mailbox_autocreate = FALSE, .lda_mailbox_autosubscribe = FALSE