diff options
author | Thomas Arendsen Hein <thomas@intevation.de> | 2007-05-09 10:16:24 (GMT) |
---|---|---|
committer | Thomas Arendsen Hein <thomas@intevation.de> | 2007-05-09 10:16:24 (GMT) |
commit | 4496d914b8bf3af6c45c9bfb77238601b9ae5af0 (patch) | |
tree | 12a5c021d4b1f2d9c319702e144a3116445ab13b | |
parent | 6e91459427d4a88c804232056640ef0a58936855 (diff) | |
download | kolab-conf-4496d914b8bf3af6c45c9bfb77238601b9ae5af0.tar.gz |
Fix kolab/issue1560 (postfix modifies message/rfc822 MIME parts):
Tell postfix to not parse and modify headers of message/rfc822 attachments
-rw-r--r-- | conf/templates/main.cf.template.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/conf/templates/main.cf.template.in b/conf/templates/main.cf.template.in index 5c42f3f..d4f3803 100644 --- a/conf/templates/main.cf.template.in +++ b/conf/templates/main.cf.template.in @@ -79,6 +79,9 @@ alias_database = hash:@aliases_file@ #virtual_mailbox_maps = $virtual_maps local_recipient_maps = $virtual_maps, $alias_maps +# Don't parse and modify headers of message/rfc822 attachments +disable_mime_input_processing = yes + ## only use local_transport or a higher recipent_limit if issue825 is fixed # local delivery, not using postfix local(8) #local_transport = kolabmailboxfilter |