diff options
author | Jeremy Harris <jgh146exb@wizmail.org> | 2020-04-11 19:12:57 +0100 |
---|---|---|
committer | Jeremy Harris <jgh146exb@wizmail.org> | 2020-04-12 18:19:35 +0100 |
commit | d34c22b8288153f147af068d4c14ed8fcc8b9692 (patch) | |
tree | 8beae64c5db34d70c523dbc4be2af43c2e557950 /src | |
parent | 92beef8b1e1c73348d48edbb5cff37b47c4e2f81 (diff) |
DKIM: Predefined macro for standard headers, oversigned
Diffstat (limited to 'src')
-rw-r--r-- | src/src/dkim.c | 1 | ||||
-rw-r--r-- | src/src/pdkim/pdkim.h | 9 |
2 files changed, 10 insertions, 0 deletions
diff --git a/src/src/dkim.c b/src/src/dkim.c index 5c9d2279e..031372720 100644 --- a/src/src/dkim.c +++ b/src/src/dkim.c @@ -21,6 +21,7 @@ void params_dkim(void) { builtin_macro_create_var(US"_DKIM_SIGN_HEADERS", US PDKIM_DEFAULT_SIGN_HEADERS); +builtin_macro_create_var(US"_DKIM_OVERSIGN_HEADERS", US PDKIM_OVERSIGN_HEADERS); } # else /*!MACRO_PREDEF*/ diff --git a/src/src/pdkim/pdkim.h b/src/src/pdkim/pdkim.h index 0c9d46d01..5ae0f7f45 100644 --- a/src/src/pdkim/pdkim.h +++ b/src/src/pdkim/pdkim.h @@ -35,6 +35,15 @@ "List-Id:List-Help:List-Unsubscribe:"\ "List-Subscribe:List-Post:List-Owner:List-Archive" +#define PDKIM_OVERSIGN_HEADERS "+From:+Sender:+Reply-To:+Subject:+Date:"\ + "+Message-ID:+To:+Cc:+MIME-Version:+Content-Type:"\ + "+Content-Transfer-Encoding:+Content-ID:"\ + "+Content-Description:+Resent-Date:+Resent-From:"\ + "+Resent-Sender:+Resent-To:+Resent-Cc:"\ + "+Resent-Message-ID:+In-Reply-To:+References:"\ + "+List-Id:+List-Help:+List-Unsubscribe:"\ + "+List-Subscribe:+List-Post:+List-Owner:+List-Archive" + /* -------------------------------------------------------------------------- */ /* Length of the preallocated buffer for the "answer" from the dns/txt callback function. This should match the maximum RDLENGTH from DNS. */ |