summaryrefslogtreecommitdiff
path: root/test/confs/0102
diff options
context:
space:
mode:
authorPhilip Hazel <ph10@hermes.cam.ac.uk>2006-02-07 10:34:24 +0000
committerPhilip Hazel <ph10@hermes.cam.ac.uk>2006-02-07 10:34:24 +0000
commitafda344b580b54a4513569720aec3260cd5ba546 (patch)
tree6318744c7d3f502ee72bcd20bab0f612c5dceacf /test/confs/0102
parent9ba4af2b76958e076a0c002e53ead87ed7a47a68 (diff)
downloadexim4-afda344b580b54a4513569720aec3260cd5ba546.tar.gz
More new test committing.
Diffstat (limited to 'test/confs/0102')
-rw-r--r--test/confs/010292
1 files changed, 92 insertions, 0 deletions
diff --git a/test/confs/0102 b/test/confs/0102
new file mode 100644
index 000000000..dd17eb840
--- /dev/null
+++ b/test/confs/0102
@@ -0,0 +1,92 @@
+# Exim test configuration 0102
+
+exim_path = EXIM_PATH
+host_lookup_order = bydns
+rfc1413_query_timeout = 0s
+spool_directory = DIR/spool
+log_file_path = DIR/spool/log/%slog
+gecos_pattern = ""
+gecos_name = CALLER_NAME
+
+# ----- Main settings -----
+
+domainlist local_domains = test.ex
+
+qualify_domain = test.ex
+
+
+# ----- Routers -----
+
+begin routers
+
+batch:
+ driver = accept
+ local_part_prefix = batch-
+ retry_use_local_part
+ transport = batch_bsmtp1
+
+localuser:
+ driver = accept
+ local_part_prefix = bsmtp_ : mmdf_
+ local_part_prefix_optional
+ retry_use_local_part
+ transport = ${local_part_prefix}local_delivery
+
+
+# ----- Transports -----
+
+begin transports
+
+local_delivery:
+ driver = appendfile
+ delivery_date_add
+ envelope_to_add
+ file = DIR/test-mail/$local_part
+ file_format = "From : local_delivery :\
+ MAIL : bsmtp_local_delivery :\
+ \1\1\1\1\n : mmdf_local_delivery :\
+ tpmissing : tpmissing"
+ return_path_add
+ user = CALLER
+
+bsmtp_local_delivery:
+ driver = appendfile
+ batch_max = 100
+ use_bsmtp
+ delivery_date_add
+ envelope_to_add
+ file = DIR/test-mail/$local_part
+ return_path_add
+ user = CALLER
+
+mmdf_local_delivery:
+ driver = appendfile
+ check_string = "\1\1\1\1\n"
+ escape_string = "\1\1\1\1 \n"
+ file = DIR/test-mail/$local_part
+ message_prefix = "\1\1\1\1\n"
+ message_suffix = "\1\1\1\1\n"
+ user = CALLER
+
+batch_bsmtp1:
+ driver = appendfile
+ batch_max = 100
+ use_bsmtp
+ file = DIR/test-mail/batched
+ file_format = "MAIL : batch_bsmtp2"
+ user = CALLER
+
+batch_bsmtp2:
+ driver = appendfile
+ batch_max = 100
+ use_bsmtp
+ file = DIR/test-mail/batched
+ user = CALLER
+
+# ----- Retry -----
+
+begin retry
+
+* * F,2d,2d
+
+# End