diff options
author | Jeremy Harris <jgh146exb@wizmail.org> | 2017-11-03 11:02:19 +0000 |
---|---|---|
committer | Jeremy Harris <jgh146exb@wizmail.org> | 2017-11-03 12:10:32 +0000 |
commit | 484cc1a938bec2546c2475deecdd11d34866a257 (patch) | |
tree | aea41ad2df99b30456844e77903d0a45531d05e9 /test/scripts | |
parent | 3324ab3f03dc273e0ad6d9c6d91ce78b2ca35e17 (diff) |
DKIM: better syntax for control of oversigning. Bug 2180
Diffstat (limited to 'test/scripts')
-rw-r--r-- | test/scripts/4500-DKIM/4520 | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/test/scripts/4500-DKIM/4520 b/test/scripts/4500-DKIM/4520 index 3e5879972..1bc4c6030 100644 --- a/test/scripts/4500-DKIM/4520 +++ b/test/scripts/4500-DKIM/4520 @@ -18,6 +18,39 @@ From: nobody@example.com content **** # +# no header, multi-sign +exim -DOPT=From:=X-Mine -odf b10@test.ex +From: nobody@example.com + +content +**** +# +# double header, multi-sign +exim -DOPT=From:=X-Mine -odf b12@test.ex +From: nobody@example.com +X-mine: one +X-mine: two + +content +**** +# +# +# no header, always-oversign +exim -DOPT=+X-Mine -odf b20@test.ex +From: nobody@example.com + +content +**** +# +# double header, always-oversign +exim -DOPT=+X-Mine -odf b22@test.ex +From: nobody@example.com +X-mine: one +X-mine: two + +content +**** +# # default header set exim -DHEADERS_MAXSIZE=y -odf c@test.ex From: nobody@example.com |