OCSP description: minor nits
[exim.git] / test / scripts / 9200-PostgreSQL / 9200
CommitLineData
59371ea7
PH
1# pgsql lookups - expects specific data
2exim -d-all+lookup -be
3${lookup pgsql {select name from them where id='ph10';}}
4${lookup pgsql {select name from them where id='ph10';}}
5${lookup pgsql {select name from them where id='xxxx';}}
6${lookup pgsql {select name from them where id='nothing';}}
7${lookup pgsql {select id,name from them where id='nothing';}}
8${lookup pgsql {delete from them where id='nonexist';}}
9${lookup pgsql {select * from them where id='quote2';}}
10${lookup pgsql {select * from them where id='newline';}}
11${lookup pgsql {select * from them where id='tab';}}
5547e2c5 12${lookup pgsql {select * from them where name='${quote_pgsql:'stquot}';}}
b7670459
PH
13${lookup pgsql {servers=x:localhost; select name from them where id='ph10';}}
14${lookup pgsql {servers=localhost:x; select name from them where id='ph10';}}
15${lookup pgsql {servers=localhost/test/CALLER/:x; select name from them where id='ph10';}}
16${lookup pgsql {servers=(/tmp/.s.PGSQL.5432)/test/ph10/:x; select name from them where id='ph10';}}
59371ea7
PH
17****
18exim -d -bh 10.0.0.0
19mail from:<a@b>
20rcpt to:<c@d>
21rcpt to:<c@d>
22quit
23****
24exim -odi -d CALLER
25Test message
26.
27****
28exim -DSERVERS=\(/tmp/.s.PGSQL.5432\)/test/ph10/ -d-all+lookup -be
29${lookup pgsql {select name from them where id='CALLER';}}
30****