summaryrefslogtreecommitdiff
path: root/test/confs/5011
diff options
context:
space:
mode:
authorHeiko Schlittermann (HS12-RIPE) <hs@schlittermann.de>2017-06-25 22:54:08 +0200
committerHeiko Schlittermann (HS12-RIPE) <hs@schlittermann.de>2017-06-25 23:00:18 +0200
commitd291c7670e4c370cdc4f631ea58f82c7f4f87823 (patch)
treea31abed23e38d6071b40b311420a31491edce01b /test/confs/5011
parent53d77ba6ef973fcbb4b0c17a60bc9229e45aa1ae (diff)
Add quota/quota_filecount transport option modifier "no_check" Bug 1115
This option modifier allows to ignore the quota limits, but update the maildirsize file.
Diffstat (limited to 'test/confs/5011')
-rw-r--r--test/confs/501135
1 files changed, 35 insertions, 0 deletions
diff --git a/test/confs/5011 b/test/confs/5011
new file mode 100644
index 000000000..f1a19a85d
--- /dev/null
+++ b/test/confs/5011
@@ -0,0 +1,35 @@
+# Exim test configuration 5011
+
+.include DIR/aux-var/std_conf_prefix
+
+primary_hostname = myhost.test.ex
+
+# ----- Main settings -----
+
+qualify_domain = test.ex
+
+
+# ----- Routers -----
+
+begin routers
+
+all:
+ driver = accept
+ retry_use_local_part
+ transport = local_delivery
+
+
+# ----- Transports -----
+
+begin transports
+
+local_delivery:
+ driver = appendfile
+ directory = DIR/test-mail
+ maildir_format
+ quota = 30
+ quota_filecount = 1/no_check
+ user = CALLER
+ maildir_use_size_file
+
+# End