diff options
author | marcelloc <marcellocoutinho@gmail.com> | 2011-11-15 01:55:13 -0200 |
---|---|---|
committer | marcelloc <marcellocoutinho@gmail.com> | 2011-11-15 01:55:13 -0200 |
commit | 23baa90a7216f9159ca1569554bea064ef28a726 (patch) | |
tree | 7d4a7ac9177b9a0d67ce17c3225ccf0b881ec376 /config/postfix/postfix.widget.php | |
parent | 1a900aafa3d7996900e61ee3656fbffa6c7effb2 (diff) | |
download | pfsense-packages-23baa90a7216f9159ca1569554bea064ef28a726.tar.gz pfsense-packages-23baa90a7216f9159ca1569554bea064ef28a726.tar.bz2 pfsense-packages-23baa90a7216f9159ca1569554bea064ef28a726.zip |
postfix - version 2.2 relased + widget
Diffstat (limited to 'config/postfix/postfix.widget.php')
-rwxr-xr-x | config/postfix/postfix.widget.php | 117 |
1 files changed, 117 insertions, 0 deletions
diff --git a/config/postfix/postfix.widget.php b/config/postfix/postfix.widget.php new file mode 100755 index 00000000..dd43afa4 --- /dev/null +++ b/config/postfix/postfix.widget.php @@ -0,0 +1,117 @@ +<?php +/* + Copyright 2011 Marcello Coutinho + Part of pfSense widgets (www.pfsense.com) + + Redistribution and use in source and binary forms, with or without + modification, are permitted provided that the following conditions are met: + + 1. Redistributions of source code must retain the above copyright notice, + this list of conditions and the following disclaimer. + + 2. Redistributions in binary form must reproduce the above copyright + notice, this list of conditions and the following disclaimer in the + documentation and/or other materials provided with the distribution. + + THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, + INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY + AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE + AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, + OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF + SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS + INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN + CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) + ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE + POSSIBILITY OF SUCH DAMAGE. +*/ +@require_once("guiconfig.inc"); +@require_once("pfsense-utils.inc"); +@require_once("functions.inc"); +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>"; +} +function close_table(){ + echo" </tr>"; + echo"</table>"; + +} + +$pfb_table=array(); +$img['Sick']="<img src ='/themes/{$g['theme']}/images/icons/icon_interface_down.gif'>"; +$img['Healthy']="<img src ='/themes/{$g['theme']}/images/icons/icon_interface_up.gif'>"; + + +#var_dump($pfb_table); +#exit; +?><div id='postfix'><?php + +$postfix_dir="/var/db/postfix/"; +$curr_time = time(); +for ($z = 0; $z > -3; $z--){ + +if ($z==0) + $postfix_db=date("Y-m-d"); +else + $postfix_db=date("Y-m-d",strtotime("$z day",$curr_time)); + +if (file_exists($postfix_dir.'/'.$postfix_db.".db")){ + $dbhandle = sqlite_open($postfix_dir.'/'.$postfix_db.".db", 0666, $error); + #noqueue + open_table(); + print "<td class=\"vncellt\"><strong><center>$postfix_db</center></strong></td>"; + close_table(); + open_table(); + $stm="select count(*) as total from mail_noqueue"; + $result = sqlite_query($dbhandle, $stm); + $row_noqueue = sqlite_fetch_array($result, SQLITE_ASSOC); + + #queue + $result = sqlite_query($dbhandle, $stm); + $stm="select status,count(*) as total from mail_queue group by status order by status"; + $result = sqlite_query($dbhandle, $stm); + $reader=""; + $count=""; + for ($i = 1; $i <= 15; $i++) { + $row = sqlite_fetch_array($result, SQLITE_ASSOC); + if (is_array($row)){ + if (preg_match("/\w+/",$row['status'])){ + $reader.="<td class=\"listlr\"width=50%><strong>".ucfirst($row['status'])."</strong></td>\n"; + if ($row['status']=="reject") + $row['total']=+$row_noqueue['total']; + $count.="<td class=\"listlr\">".$row['total']."</td>\n"; + } + } + } + print "<tr>".$reader."</tr>"; + print "<tr>".$count."</tr>"; + close_table(); + echo "<br>"; + $result = sqlite_query($dbhandle, $stm); + sqlite_close($dbhandle); +} +} +echo" </tr>"; +echo"</table></div>"; + +?> +<script type="text/javascript"> + function getstatus_postfix() { + scroll(0,0); + var url = "/widgets/widgets/postfix.widget.php"; + var pars = 'getupdatestatus=yes'; + var myAjax = new Ajax.Request( + url, + { + method: 'get', + parameters: pars, + onComplete: activitycallback_postfix + }); + //I know it's ugly but works. + setTimeout('getstatus_postfix()', 60000); + } + function activitycallback_postfix(transport) { + $('postfix').innerHTML = transport.responseText; + } + getstatus_postfix(); +</script> |