Testsuite: Explicit disabling of identd no longer needed
[exim.git] / test / confs / 9200
CommitLineData
afda344b
PH
1# Exim test configuration 9200
2
3SERVERS=localhost/test/ph10/
4
5exim_path = EXIM_PATH
6host_lookup_order = bydns
7primary_hostname = myhost.test.ex
afda344b
PH
8spool_directory = DIR/spool
9log_file_path = DIR/spool/log/%slog
10gecos_pattern = ""
11gecos_name = CALLER_NAME
12
13# ----- Main settings -----
14
15domainlist local_domains = @
16hostlist relay_hosts = net-pgsql;select * from them where \
17 id='$sender_host_address'
18
19acl_smtp_rcpt = check_recipient
20
21pgsql_servers = SERVERS
22
23
24# ----- ACL -----
25
26begin acl
27
28check_recipient:
29 accept domains = +local_domains
30 accept hosts = +relay_hosts
31 deny message = relay not permitted
32
33
34# ----- Routers -----
35
36begin routers
37
38r1:
39 driver = accept
40 address_data = ${lookup pgsql{select name from them where id='ph10'}}
41 transport = t1
42
43
44# ----- Transports -----
45
46begin transports
47
48t1:
49 driver = appendfile
50 file = DIR/test-mail/\
51 ${lookup pgsql{select id from them where id='ph10'}{$value}fail}
52 user = CALLER
53
54
55# End