From 8b5ccd302bd1497de721a25e4ce086bebf95173f Mon Sep 17 00:00:00 2001
From: tbrehm <t.brehm@ispconfig.org>
Date: Sun, 08 Jun 2008 15:32:42 -0400
Subject: [PATCH] Fixed a problem with the logout when the php session has ended.

---
 interface/web/mail/lib/module.conf.php |   16 ++++++++++++++++
 1 files changed, 16 insertions(+), 0 deletions(-)

diff --git a/interface/web/mail/lib/module.conf.php b/interface/web/mail/lib/module.conf.php
index efd5036..5a6fa82 100644
--- a/interface/web/mail/lib/module.conf.php
+++ b/interface/web/mail/lib/module.conf.php
@@ -58,6 +58,10 @@
 	$items[] = array( 	'title' 	=> 'Policy',
 				  		'target' 	=> 'content',
 				  		'link'	    => 'mail/spamfilter_policy_list.php');
+						
+	$items[] = array( 	'title' 	=> 'Server Settings',
+				  		'target' 	=> 'content',
+				  		'link'	    => 'mail/spamfilter_config_list.php');
 }
 
 $module['nav'][] = array(	'title'	=> 'Spamfilter',
@@ -76,7 +80,19 @@
 							'open' 	=> 1,
 							'items'	=> $items);
 
+//**** Statistics menu
+$items = array();
 
+$items[] = array( 'title' 	=> 'Mailbox traffic',
+				  'target' 	=> 'content',
+				  'link'	=> 'mail/mail_user_stats.php');
+
+
+$module['nav'][] = array(	'title'	=> 'Statistics',
+							'open' 	=> 1,
+							'items'	=> $items);
+							
+							
 //**** Global filters menu
 $items = array();
 if($_SESSION['s']['user']['typ'] == 'admin') {

--
Gitblit v1.9.1