summaryrefslogtreecommitdiff
path: root/test/confs/5007
diff options
context:
space:
mode:
authorPhilip Hazel <ph10@hermes.cam.ac.uk>2006-02-10 16:29:20 +0000
committerPhilip Hazel <ph10@hermes.cam.ac.uk>2006-02-10 16:29:20 +0000
commit21c28500c0afea85a4acc9cd2e6c816522394431 (patch)
tree176ac3a21ef0323b82faa26105e13091984a1063 /test/confs/5007
parent8fe918b095c7a6a1b117dbf2f1ca35c8d3cabbb1 (diff)
Give error if overflow in quota setting in appendfile on a 32-bit
system; make Exim output off_t size for -bV so tests can be appropriate.
Diffstat (limited to 'test/confs/5007')
-rw-r--r--test/confs/500749
1 files changed, 49 insertions, 0 deletions
diff --git a/test/confs/5007 b/test/confs/5007
new file mode 100644
index 000000000..a1ac93e55
--- /dev/null
+++ b/test/confs/5007
@@ -0,0 +1,49 @@
+# Exim test configuration 5007
+
+QUOTA=500
+
+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 -----
+
+delay_warning =
+qualify_domain = test.ex
+
+
+# ----- Routers -----
+
+begin routers
+
+r1:
+ driver = accept
+ transport = t1
+
+# ----- Transports -----
+
+begin transports
+
+t1:
+ driver = appendfile
+ directory = DIR/test-mail/$local_part
+ user = CALLER
+ maildir_format
+ maildir_use_size_file
+ quota = QUOTA
+
+
+# ----- Retry -----
+
+begin retry
+
+* * F,1d,1d
+
+
+# End