More new test committing.
[exim.git] / test / confs / 0102
diff --git a/test/confs/0102 b/test/confs/0102
new file mode 100644 (file)
index 0000000..dd17eb8
--- /dev/null
@@ -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