diff options
Diffstat (limited to 'test/confs/3406')
-rw-r--r-- | test/confs/3406 | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/test/confs/3406 b/test/confs/3406 new file mode 100644 index 000000000..a6c262e8b --- /dev/null +++ b/test/confs/3406 @@ -0,0 +1,36 @@ +# Exim test configuration 3406 + +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 = accept +trusted_users = CALLER + + +# ----- Authentication ----- + +begin authenticators + +a1: + driver = plaintext + public_name = FIRST + server_advertise_condition = \ + ${if eq{$sender_host_address}{10.0.0.2}{yes}{no}} + server_condition = yes + +a2: + driver = plaintext + public_name = SECOND + server_advertise_condition = \ + ${if eq{$sender_host_address}{10.0.0.3}{yes}{no}} + server_condition = yes + +# End |