From 1801a0494521caa578472f88b565b3f765588cb6 Mon Sep 17 00:00:00 2001 From: Stephan Bosch Date: Wed, 14 Mar 2018 01:54:20 +0100 Subject: [PATCH] submission: Add 8BITMIME and BINARYMIME back to supported capabilities. These are supported when the backend provides support. These were erroneously disabled earlier by 3bf0c0e211ba1e4ee9977a9dfea32e14ebc50aab. --- src/submission/submission-common.h | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) 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);