From: Timo Sirainen Date: Thu, 15 Jan 2009 20:12:07 +0000 (-0500) Subject: deliver: Changed the default rejection_subject. X-Git-Tag: 1.2.beta1~113 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1c75382d33aa35561ba67bdb5475211ecd9e2ca3;p=thirdparty%2Fdovecot%2Fcore.git deliver: Changed the default rejection_subject. --HG-- branch : HEAD --- diff --git a/dovecot-example.conf b/dovecot-example.conf index b54e14cbe1..17ab57db63 100644 --- a/dovecot-example.conf +++ b/dovecot-example.conf @@ -714,7 +714,7 @@ protocol lda { # Subject: header to use for rejection mails. You can use the same variables # as for rejection_reason below. - #rejection_subject = Automatically rejected mail + #rejection_subject = Rejected: %s # Human readable error message for rejection mails. You can use variables: # %n = CRLF, %r = reason, %s = original subject, %t = recipient diff --git a/src/deliver/deliver.h b/src/deliver/deliver.h index 69b6c9949b..cffb6ab02e 100644 --- a/src/deliver/deliver.h +++ b/src/deliver/deliver.h @@ -11,7 +11,7 @@ #include "mail-storage.h" #define DEFAULT_MAIL_REJECTION_SUBJECT \ - "Automatically rejected mail" + "Rejected: %s" #define DEFAULT_MAIL_REJECTION_HUMAN_REASON \ "Your message to <%t> was automatically rejected:%n%r" #define DEFAULT_LOG_FORMAT "msgid=%m: %$"