summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAntoine Ginies <aginies@mandriva.com>2006-06-20 14:32:17 +0000
committerAntoine Ginies <aginies@mandriva.com>2006-06-20 14:32:17 +0000
commitfc2cc58566b3e3fa34e34f8622f94411d476c56f (patch)
treed635e15eb0808566cbd9b33be4dc25bfa93097b7
parent03ab8056d8bdb4b53b77929cc7c40cd0d5af7ec9 (diff)
downloaddrakwizard-fc2cc58566b3e3fa34e34f8622f94411d476c56f.tar
drakwizard-fc2cc58566b3e3fa34e34f8622f94411d476c56f.tar.gz
drakwizard-fc2cc58566b3e3fa34e34f8622f94411d476c56f.tar.bz2
drakwizard-fc2cc58566b3e3fa34e34f8622f94411d476c56f.tar.xz
drakwizard-fc2cc58566b3e3fa34e34f8622f94411d476c56f.zip
use default postfix message size limit conf (10240000)
-rwxr-xr-xpostfix_wizard/Postfix.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/postfix_wizard/Postfix.pm b/postfix_wizard/Postfix.pm
index e443aa1c..2565c688 100755
--- a/postfix_wizard/Postfix.pm
+++ b/postfix_wizard/Postfix.pm
@@ -229,7 +229,7 @@ $o->{pages} = {
name => N('Message options') . N('Various options to configure your message queue, delay, size...'),
pre => sub {
$postfix->{maximal_queue_lifetime} and $o->{var}{wiz_maximal_queue_lifetime} = $postfix->{maximal_queue_lifetime} or $o->{var}{wiz_maximal_queue_lifetime} = "5d";
- $postfix->{message_size_limit} and $o->{var}{wiz_message_size_limit} = $postfix->{message_size_limit} or $o->{var}{wiz_message_size_limit} = "5000";
+ $postfix->{message_size_limit} and $o->{var}{wiz_message_size_limit} = $postfix->{message_size_limit} or $o->{var}{wiz_message_size_limit} = "10240000";
$o->{var}{wiz_delay_warning_time} ||= $postfix->{delay_warning_time} or $postfix->{delay_warning_time} = "2h";
},
data => [