diff options
author | Marcello Coutinho <marcellocoutinho@gmail.com> | 2012-05-15 12:16:54 -0300 |
---|---|---|
committer | Marcello Coutinho <marcellocoutinho@gmail.com> | 2012-05-15 12:16:54 -0300 |
commit | a569c2e5256e12beabf81c756513fee70a119a5b (patch) | |
tree | 17d7d1a87391239b3c855deb7764f42351b487ba /config/postfix/postfix.widget.php | |
parent | c54b1eb082de236cabfae77cb8968dd66fdb8d18 (diff) | |
download | pfsense-packages-a569c2e5256e12beabf81c756513fee70a119a5b.tar.gz pfsense-packages-a569c2e5256e12beabf81c756513fee70a119a5b.tar.bz2 pfsense-packages-a569c2e5256e12beabf81c756513fee70a119a5b.zip |
postfix - fixes on schedule check and sender_client_permissions
Diffstat (limited to 'config/postfix/postfix.widget.php')
-rwxr-xr-x | config/postfix/postfix.widget.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/config/postfix/postfix.widget.php b/config/postfix/postfix.widget.php index c439b5ce..70051c1d 100755 --- a/config/postfix/postfix.widget.php +++ b/config/postfix/postfix.widget.php @@ -27,6 +27,11 @@ @require_once("guiconfig.inc"); @require_once("pfsense-utils.inc"); @require_once("functions.inc"); + +$uname=posix_uname(); +if ($uname['machine']=='amd64') + ini_set('memory_limit', '250M'); + function open_table(){ echo "<table style=\"padding-top:0px; padding-bottom:0px; padding-left:0px; padding-right:0px\" width=\"100%\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\">"; echo" <tr>"; |