diff options
author | Martin Konold <martin.konold@erfrakon.de> | 2009-01-07 09:18:54 (GMT) |
---|---|---|
committer | Martin Konold <martin.konold@erfrakon.de> | 2009-01-07 09:18:54 (GMT) |
commit | 53b488e7b5dbddc27004b72e927f40f0a8f45e5b (patch) | |
tree | 72b57aae60ee76effd0ca2bc34e1ff1c1fc0fc71 | |
parent | 23952c33f7175bf6e14b163fde63491ba666d238 (diff) | |
download | kolab-conf-53b488e7b5dbddc27004b72e927f40f0a8f45e5b.tar.gz |
Martin Konold: Made postfix message size limit configurable via LDAP while remaining backwards compatible. Gunnar will do the final testing
-rw-r--r-- | conf/templates/main.cf.template.in | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/conf/templates/main.cf.template.in b/conf/templates/main.cf.template.in index 48535bc..67ede0c 100644 --- a/conf/templates/main.cf.template.in +++ b/conf/templates/main.cf.template.in @@ -14,10 +14,13 @@ KOLAB_META_END # this file is automatically written by the Kolab config backend # manual additions are lost unless made to the template in the Kolab config directory - # postfix default is 10 240 000 Byte = 10.24 Megabyte, -# we use 20 Mebibyte = 20*2^20 Byte +# we use 20 Megabyte = 20*2^20 Byte as Kolab default +@@@if postfix-message_size_limit@@@ +message_size_limit = @@@postfix-message_size_limit@@@ +@@@else@@@ message_size_limit = 20971520 +@@@endif@@@ # paths command_directory = @sbindir@ |