Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
lolo888
ISPConfig 3
Commits
557480fd
Commit
557480fd
authored
Sep 15, 2009
by
Fantu
Browse files
Fix update of mailbox_size_limit and message_size_limit, mb to byte
parent
86f1304d
Changes
1
Hide whitespace changes
Inline
Side-by-side
server/plugins-available/postfix_server_plugin.inc.php
View file @
557480fd
...
...
@@ -102,8 +102,8 @@ class postfix_server_plugin {
exec
(
"postconf -e 'relayhost ='"
);
}
exec
(
"postconf -e 'mailbox_size_limit = "
.
intval
(
$mail_config
[
"mailbox_size_limit"
])
.
"'"
);
exec
(
"postconf -e 'message_size_limit = "
.
intval
(
$mail_config
[
"message_size_limit"
])
.
"'"
);
exec
(
"postconf -e 'mailbox_size_limit = "
.
intval
(
$mail_config
[
"mailbox_size_limit"
]
*
1024
*
1024
)
.
"'"
);
exec
(
"postconf -e 'message_size_limit = "
.
intval
(
$mail_config
[
"message_size_limit"
]
*
1024
*
1024
)
.
"'"
);
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment