]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
submission: Add 8BITMIME and BINARYMIME back to supported capabilities.
authorStephan Bosch <stephan.bosch@dovecot.fi>
Wed, 14 Mar 2018 00:54:20 +0000 (01:54 +0100)
committerVille Savolainen <ville.savolainen@dovecot.fi>
Mon, 26 Mar 2018 07:16:36 +0000 (10:16 +0300)
These are supported when the backend provides support. These were erroneously
disabled earlier by 3bf0c0e211ba1e4ee9977a9dfea32e14ebc50aab.

src/submission/submission-common.h

index ff1700e77970532befb04610db2df76d6e89913c..093d503481bc62753bc2eada9d787a4e9370ceea 100644 (file)
 /* 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);