aboutsummaryrefslogtreecommitdiffstats
path: root/config/postfix/postfix_view_config.php
diff options
context:
space:
mode:
authorMarcello Coutinho <marcellocoutinho@gmail.com>2014-11-18 17:57:06 -0200
committerMarcello Coutinho <marcellocoutinho@gmail.com>2014-11-18 17:57:06 -0200
commite32299eb10722d6b5d232335903061c060b086ed (patch)
tree7f81855e6d8962d1dd459e83d9cb2eea9064a539 /config/postfix/postfix_view_config.php
parent5de63ed7fed8e7e86686da1346fee0590d8316b2 (diff)
downloadpfsense-packages-e32299eb10722d6b5d232335903061c060b086ed.tar.gz
pfsense-packages-e32299eb10722d6b5d232335903061c060b086ed.tar.bz2
pfsense-packages-e32299eb10722d6b5d232335903061c060b086ed.zip
Postfix - Improve package instalation folder checks
Diffstat (limited to 'config/postfix/postfix_view_config.php')
-rw-r--r--config/postfix/postfix_view_config.php14
1 files changed, 9 insertions, 5 deletions
diff --git a/config/postfix/postfix_view_config.php b/config/postfix/postfix_view_config.php
index f82c9371..f50ae991 100644
--- a/config/postfix/postfix_view_config.php
+++ b/config/postfix/postfix_view_config.php
@@ -29,11 +29,15 @@
*/
$shortcut_section = "postfix";
require("guiconfig.inc");
-$pf_version=substr(trim(file_get_contents("/etc/version")),0,3);
-if ($pf_version > 2.0)
- define('POSTFIX_LOCALBASE', '/usr/pbi/postfix-' . php_uname("m"));
-else
- define('POSTFIX_LOCALBASE','/usr/local');
+$pfs_version = substr(trim(file_get_contents("/etc/version")),0,3);
+if (is_dir('/usr/pbi/postfix-' . php_uname("m"))) {
+ if ($pfs_version == 2.2)
+ define('POSTFIX_LOCALBASE', '/usr/pbi/postfix-' . php_uname("m")."/local");
+ else
+ define('POSTFIX_LOCALBASE', '/usr/pbi/postfix-' . php_uname("m"));
+} else {
+ define('POSTFIX_LOCALBASE','/usr/local');
+}
function get_file($file){
$files['main']=POSTFIX_LOCALBASE."/etc/postfix/main.cf";