diff options
author | Jeremy Harris <jgh146exb@wizmail.org> | 2016-08-01 15:01:15 +0100 |
---|---|---|
committer | Jeremy Harris <jgh146exb@wizmail.org> | 2016-08-02 16:46:31 +0100 |
commit | 48f1c8532119577336c1aa1c91a50b57ebecdaf8 (patch) | |
tree | e6e83c30449d6a1fff95666ad97f0d409e7ec39b /test/confs/0900 | |
parent | e027f545443fd6a5ec74c48c27dcd8b6634d5bba (diff) |
transmit with DKIM
Diffstat (limited to 'test/confs/0900')
-rw-r--r-- | test/confs/0900 | 22 |
1 files changed, 20 insertions, 2 deletions
diff --git a/test/confs/0900 b/test/confs/0900 index cdc6d84eb..3235f1ee7 100644 --- a/test/confs/0900 +++ b/test/confs/0900 @@ -1,5 +1,7 @@ # Exim test configuration 0900 SERVER= +X= +OPT= exim_path = EXIM_PATH keep_environment = @@ -14,13 +16,14 @@ tls_advertise_hosts = # ----- Main settings ----- -domainlist local_domains = @ +domainlist local_domains = @ : test.ex acl_smtp_rcpt = check_recipient acl_smtp_data = check_data trusted_users = CALLER queue_only smtp_receive_timeout = 2s +log_selector = +received_recipients # ----- ACL ----- @@ -44,7 +47,7 @@ begin routers to_server: driver = accept condition = ${if !eq {SERVER}{server}} - transport = remote_smtp + transport = remote_smtp${if eq {X}{dkim} {_dkim}} errors_to = "" fail_remote_domains: @@ -81,6 +84,21 @@ remote_smtp: command_timeout = 2s final_timeout = 2s +remote_smtp_dkim: + driver = smtp + hosts = 127.0.0.1 + port = PORT_S + allow_localhost + command_timeout = 2s + final_timeout = 2s + + dkim_domain = test.ex + dkim_selector = sel + dkim_private_key = DIR/aux-fixed/dkim/dkim.private +.ifndef HEADERS_MAXSIZE + dkim_sign_headers = OPT +.endif + # ----- Retry ----- begin retry |