diff options
author | Philip Hazel <ph10@hermes.cam.ac.uk> | 2006-02-28 11:25:40 +0000 |
---|---|---|
committer | Philip Hazel <ph10@hermes.cam.ac.uk> | 2006-02-28 11:25:40 +0000 |
commit | 30dba1e609d941013dc8421de5104dad387ac5b1 (patch) | |
tree | 03360092d0a084fef98cc6392464a294b21b6ece /test/confs/0530 | |
parent | 8e3e25cac127659fa8b15f1ead18e1a39642f66b (diff) |
Add References: support to autoreply.
Diffstat (limited to 'test/confs/0530')
-rw-r--r-- | test/confs/0530 | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/test/confs/0530 b/test/confs/0530 new file mode 100644 index 000000000..b7ad3ffd2 --- /dev/null +++ b/test/confs/0530 @@ -0,0 +1,47 @@ +# Exim test configuration 0530 + +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 control = suppress_local_fixups + + +# ----- Routers ----- + +begin routers + +r1: + driver = accept + senders = : + transport = t1 + +r2: + driver = accept + transport = t2 + + +# ----- Transports ----- + +begin transports + +t1: + driver = appendfile + file = DIR/test-mail/$local_part + user = CALLER + +t2: + driver = autoreply + to = $sender_address + subject = Re: $h_subject: + text = This is the text of the autoreply. + user = CALLER + +# End |