Fantu
2009-09-15 557480fdaf102ae8d3627483766b0d6c3ac9cf8a
Fix update of mailbox_size_limit and message_size_limit, mb to byte
1 files modified
4 ■■■■ changed files
server/plugins-available/postfix_server_plugin.inc.php 4 ●●●● patch | view | raw | blame | history
server/plugins-available/postfix_server_plugin.inc.php
@@ -102,8 +102,8 @@
            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)."'");
        
    }