Use compressed form of ipv6 in $sender_host_address under -bh. Bug 3027
[exim.git] / test / confs / 3414
1 # Exim test configuration 3414
2
3 ACL=
4 OPT=
5
6 exim_path = EXIM_PATH
7 keep_environment =
8 host_lookup_order = bydns
9 primary_hostname = myhost.test.ex
10 spool_directory = DIR/spool
11 log_file_path = DIR/spool/log/%slog
12 gecos_pattern = ""
13 gecos_name = CALLER_NAME
14 chunking_advertise_hosts =
15 tls_advertise_hosts =
16 .ifdef _EXP_LIMITS
17 limits_advertise_hosts = !*
18 .endif
19
20 # ----- Main settings -----
21
22 acl_smtp_mail = mail
23 OPT acl_smtp_mailauth=ACL
24
25
26 # ----- ACLs -----
27
28 begin acl
29
30 acl1:
31   accept condition = ${if eq{$authenticated_sender}{ok@ok}{1}{0}}
32
33 mail:
34   warn    log_message = \$authenticated_sender=$authenticated_sender
35   accept
36
37
38 # ----- Authenticators -----
39
40 begin authenticators
41
42 ok:
43   driver = plaintext
44   public_name = PLAIN
45   server_prompts = :
46   server_condition = true
47
48
49 # End