From a4814eea469c780bd2095f03662be46dda6818fc Mon Sep 17 00:00:00 2001
From: ftimme <ft@falkotimme.com>
Date: Sun, 21 Jul 2013 21:06:24 -0400
Subject: [PATCH] - Monit integration into Monitoring module; allows to start/stop/restart services. - Added [SERVERNAME] placeholder to webmail URL.

---
 interface/web/mail/webmailer.php |   11 +++++++++--
 1 files changed, 9 insertions(+), 2 deletions(-)

diff --git a/interface/web/mail/webmailer.php b/interface/web/mail/webmailer.php
index 2cff5da..7b3e862 100644
--- a/interface/web/mail/webmailer.php
+++ b/interface/web/mail/webmailer.php
@@ -55,14 +55,21 @@
 $global_config = $app->getconf->get_global_config('mail');
 
 if($global_config['webmail_url'] != '') {
-	header('Location:' . $global_config['webmail_url']);
+	$webmail_url = $global_config['webmail_url'];
+	$webmail_url = str_replace('[SERVERNAME]', $serverData['server_name'], $webmail_url);
+	header('Location:' . $webmail_url);
 } else {
 
 /*
  * We only redirect to the login-form, so there is no need, to check any rights
  */
 	isset($_SERVER['HTTPS'])? $http = 'https' : $http = 'http';
-	header('Location:' . $http . '://' . $serverData['server_name'] . '/webmail');
+	if($web_config['server_type'] == 'nginx') {
+		header('Location: http://' . $serverData['server_name'] . ':8081/webmail');
+	} else {
+		header('Location: ' . $http . '://' . $serverData['server_name'] . '/webmail');
+	}
+	isset($_SERVER['HTTPS'])? $http = 'https' : $http = 'http';
 }
 exit;
 ?>
\ No newline at end of file

--
Gitblit v1.9.1