aboutsummaryrefslogtreecommitdiffstats
path: root/config/mailreport/status_mail_report.php
diff options
context:
space:
mode:
authorjim-p <jimp@pfsense.org>2011-07-19 17:13:47 -0400
committerjim-p <jimp@pfsense.org>2011-07-19 17:13:47 -0400
commit6eb2826c34930dbda15512f1d64db00a7c7f3859 (patch)
tree9dfae4e4680cd60d62f5f94b3d17c887be798868 /config/mailreport/status_mail_report.php
parent45d0772b631b7cf8ca286b273f1edacd45fc234b (diff)
downloadpfsense-packages-6eb2826c34930dbda15512f1d64db00a7c7f3859.tar.gz
pfsense-packages-6eb2826c34930dbda15512f1d64db00a7c7f3859.tar.bz2
pfsense-packages-6eb2826c34930dbda15512f1d64db00a7c7f3859.zip
Add mailreport package for periodic e-mail of RRD graphs. First rev.
Diffstat (limited to 'config/mailreport/status_mail_report.php')
-rw-r--r--config/mailreport/status_mail_report.php114
1 files changed, 114 insertions, 0 deletions
diff --git a/config/mailreport/status_mail_report.php b/config/mailreport/status_mail_report.php
new file mode 100644
index 00000000..d694e44f
--- /dev/null
+++ b/config/mailreport/status_mail_report.php
@@ -0,0 +1,114 @@
+<?php
+/* $Id$ */
+/*
+ status_rrd_graph.php
+ Part of pfSense
+ Copyright (C) 2011 Jim Pingle <jimp@pfsense.org>
+ All rights reserved.
+
+ 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.
+*/
+/*
+ pfSense_MODULE: system
+*/
+
+##|+PRIV
+##|*IDENT=page-status-rrdgraphs
+##|*NAME=Status: RRD Graphs page
+##|*DESCR=Allow access to the 'Status: RRD Graphs' page.
+##|*MATCH=status_rrd_graph.php*
+##|-PRIV
+
+require("guiconfig.inc");
+require_once("mail_reports.inc");
+
+/* if the rrd graphs are not enabled redirect to settings page */
+if(! isset($config['rrd']['enable'])) {
+ header("Location: status_rrd_graph_settings.php");
+}
+
+if (!is_array($config['mailreports']['schedule']))
+ $config['mailreports']['schedule'] = array();
+
+$a_mailreports = &$config['mailreports']['schedule'];
+
+if ($_GET['act'] == "del") {
+ if ($a_mailreports[$_GET['id']]) {
+ $name = $a_mailreports[$_GET['id']]['descr'];
+ unset($a_mailreports[$_GET['id']]);
+
+ // Fix up cron job(s)
+ set_mail_report_cron_jobs($a_mailreports);
+
+ write_config("Removed Mail Report '{$name}'");
+ header("Location: status_mail_report.php");
+ exit;
+ }
+}
+
+$pgtitle = array(gettext("Status"),gettext("Mail Reports"));
+include("head.inc");
+?>
+<body link="#0000CC" vlink="#0000CC" alink="#0000CC">
+<?php include("fbegin.inc"); ?>
+<table width="100%" border="0" cellpadding="0" cellspacing="0">
+ <tr><td><div id="mainarea">
+ <table class="tabcont" width="100%" border="0" cellpadding="0" cellspacing="0">
+ <tr><td colspan="4">Here you can define a list of reports, containing multiple RRD graphs, to be sent by e-mail. </td></tr>
+ <tr><td>&nbsp;</td></tr>
+ <tr>
+ <td width="45%" class="listhdr"><?=gettext("Description");?></td>
+ <td width="35%" class="listhdr"><?=gettext("Schedule");?></td>
+ <td width="10%" class="listhdr"><?=gettext("Graphs");?></td>
+ <td width="10%" class="list"><a href="status_mail_report_edit.php"><img src="./themes/<?= $g['theme']; ?>/images/icons/icon_plus.gif" width="17" height="17" border="0"></a></td>
+ </tr>
+ <?php $i = 0; foreach ($a_mailreports as $mailreport): ?>
+ <tr ondblclick="document.location='status_mail_report_edit.php?id=<?=$i;?>'">
+ <td class="listlr"><?php echo $mailreport['descr']; ?></td>
+ <td class="listlr"><?php echo $mailreport['schedule_friendly']; ?></td>
+ <td class="listlr"><?php echo count($mailreport['row']); ?></td>
+ <td valign="middle" nowrap class="list">
+ <a href="status_mail_report_edit.php?id=<?=$i;?>"><img src="./themes/<?= $g['theme']; ?>/images/icons/icon_e.gif" width="17" height="17" border="0"></a>
+ &nbsp;
+ <a href="status_mail_report.php?act=del&id=<?=$i;?>" onclick="return confirm('<?=gettext("Do you really want to delete this entry?");?>')"><img src="./themes/<?= $g['theme']; ?>/images/icons/icon_x.gif" width="17" height="17" border="0"></a>
+ </td>
+ </tr>
+ <?php $i++; endforeach; ?>
+ <tr>
+ <td class="list" colspan="3"></td>
+ <td class="list"><a href="status_mail_report_edit.php"><img src="./themes/<?= $g['theme']; ?>/images/icons/icon_plus.gif" width="17" height="17" border="0"></a></td>
+ </tr>
+ <tr>
+ <td colspan="3" class="list"><p class="vexpl">
+ <span class="red"><strong><?=gettext("Note:");?><br></strong></span>
+ <?=gettext("Click + above to add scheduled reports.");?><br/>
+ Configure your SMTP settings under <a href="/system_advanced_notifications.php">System -&gt; Advanced, on the Notifications tab</a>.
+ </td>
+ <td class="list">&nbsp;</td>
+ </tr>
+ </table>
+ </div></td></tr>
+</table>
+
+<?php include("fend.inc"); ?>
+</body>
+</html>