42e19cbe5a849a8d40f286be480a8b8e7ec6e1cc
[exim.git] / test / confs / 3000
1 # Exim test configuration 3000
2
3 exim_path = EXIM_PATH
4 host_lookup_order = bydns
5 primary_hostname = myhost.test.ex
6 qualify_domain = test.ex
7 spool_directory = DIR/spool
8 log_file_path = DIR/spool/log/%slog
9 gecos_pattern = ""
10 gecos_name = CALLER_NAME
11
12 # ----- Main settings -----
13
14 acl_smtp_rcpt = check_rcpt
15 perl_startup = do 'DIR/aux-fixed/TESTNUM.pl'
16 queue_only = true
17
18
19 # ----- ACLs -----
20
21 begin acl
22
23 check_rcpt:
24   accept condition = ${if !eq {${perl{foo_warn}}}{}}
25
26
27 # End