summaryrefslogtreecommitdiff
path: root/test/confs/3416
diff options
context:
space:
mode:
authorJeremy Harris <jgh146exb@wizmail.org>2014-12-16 15:02:48 +0000
committerJeremy Harris <jgh146exb@wizmail.org>2014-12-16 15:02:48 +0000
commited65a028cac9fff619338be84bef3643cc06ae06 (patch)
tree268234ad9cc99544cdc5da884b6b6c7fcabad104 /test/confs/3416
parentb770cfbe910d8819891d4e1c0338d94c031e0cc9 (diff)
Testsuite: move testcase (requires plaintext authenticator)exim-4_85_RC3
Diffstat (limited to 'test/confs/3416')
-rw-r--r--test/confs/341670
1 files changed, 70 insertions, 0 deletions
diff --git a/test/confs/3416 b/test/confs/3416
new file mode 100644
index 000000000..c5589de86
--- /dev/null
+++ b/test/confs/3416
@@ -0,0 +1,70 @@
+# Exim test configuration 3416
+# Recipient callout with AUTH
+
+exim_path = EXIM_PATH
+host_lookup_order = bydns
+primary_hostname = myhost.test.ex
+rfc1413_query_timeout = 0s
+spool_directory = DIR/spool
+log_file_path = DIR/spool/log/%slog
+gecos_pattern = ""
+gecos_name = CALLER_NAME
+
+# ----- Main settings -----
+
+acl_smtp_rcpt = check_rcpt
+
+queue_only
+
+
+# ----- Authentication -----
+
+begin authenticators
+
+plain:
+ driver = plaintext
+ public_name = PLAIN
+ client_send = ^userx^secret
+ server_advertise_condition = yes
+ server_prompts = :
+ server_condition = yes
+ server_set_id = $auth2
+
+
+# ----- ACLs -----
+
+begin acl
+
+check_rcpt:
+ accept verify = recipient/callout
+
+
+# ----- Routers -----
+
+begin routers
+
+r1:
+ driver = accept
+ transport = ${if eq{force}{$domain} {t2}{t1}}
+
+
+# ----- Transports -----
+
+begin transports
+
+t1:
+ driver = smtp
+ hosts = 127.0.0.1
+ port = PORT_S
+ allow_localhost
+ hosts_try_auth = *
+
+t2:
+ driver = smtp
+ hosts = 127.0.0.1
+ port = PORT_S
+ allow_localhost
+ hosts_try_auth = *
+ authenticated_sender= brian
+
+# End