Skip to content

Commit

Permalink
submission: Add 8BITMIME and BINARYMIME back to supported capabilities.
Browse files Browse the repository at this point in the history
These are supported when the backend provides support. These were erroneously
disabled earlier by 3bf0c0e.
  • Loading branch information
stephanbosch authored and villesavolainen committed Mar 26, 2018
1 parent 33ec2f4 commit 1801a04
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions src/submission/submission-common.h
Expand Up @@ -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);
Expand Down

0 comments on commit 1801a04

Please sign in to comment.