From: Stephan Bosch Date: Wed, 14 Mar 2018 00:54:20 +0000 (+0100) Subject: submission: Add 8BITMIME and BINARYMIME back to supported capabilities. X-Git-Tag: 2.3.1~6 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f3192a7fb75b9697a69604c0eed490f9e9c1ffc4;p=thirdparty%2Fdovecot%2Fcore.git submission: Add 8BITMIME and BINARYMIME back to supported capabilities. These are supported when the backend provides support. These were erroneously disabled earlier by 3bf0c0e211ba1e4ee9977a9dfea32e14ebc50aab. --- diff --git a/src/submission/submission-common.h b/src/submission/submission-common.h index ff1700e779..093d503481 100644 --- a/src/submission/submission-common.h +++ b/src/submission/submission-common.h @@ -19,10 +19,11 @@ /* Maximum time to wait for QUIT reply from relay server */ #define SUBMISSION_MAX_WAIT_QUIT_REPLY_MSECS 2000 -#define SUBMISSION_SUPPORTED_SMTP_CAPABILITIES \ - (SMTP_CAPABILITY_AUTH | SMTP_CAPABILITY_PIPELINING | \ - SMTP_CAPABILITY_SIZE | SMTP_CAPABILITY_ENHANCEDSTATUSCODES | \ - SMTP_CAPABILITY_CHUNKING | SMTP_CAPABILITY_BURL | \ +#define SUBMISSION_SUPPORTED_SMTP_CAPABILITIES \ + (SMTP_CAPABILITY_AUTH | SMTP_CAPABILITY_PIPELINING | \ + SMTP_CAPABILITY_SIZE | SMTP_CAPABILITY_ENHANCEDSTATUSCODES | \ + SMTP_CAPABILITY_8BITMIME | SMTP_CAPABILITY_CHUNKING | \ + SMTP_CAPABILITY_BINARYMIME | SMTP_CAPABILITY_BURL | \ SMTP_CAPABILITY_DSN | SMTP_CAPABILITY_VRFY) typedef void submission_client_created_func_t(struct client **client);