aboutsummaryrefslogtreecommitdiffstats
path: root/config/spamd_whitelist.xml
diff options
context:
space:
mode:
authorErmal <eri@pfsense.org>2010-03-23 14:28:16 +0000
committerErmal <eri@pfsense.org>2010-03-23 14:28:16 +0000
commit57b1446ac5fb0fead3c545264978aa7896d28654 (patch)
treeca2ff760b21918913c8ff62fa6b4303b7f0efa7f /config/spamd_whitelist.xml
parentd56b96f7f9fd1ef61aa644ddcd4da6b65759e004 (diff)
downloadpfsense-packages-57b1446ac5fb0fead3c545264978aa7896d28654.tar.gz
pfsense-packages-57b1446ac5fb0fead3c545264978aa7896d28654.tar.bz2
pfsense-packages-57b1446ac5fb0fead3c545264978aa7896d28654.zip
Move all spamd functions to its folder.
Diffstat (limited to 'config/spamd_whitelist.xml')
-rw-r--r--config/spamd_whitelist.xml132
1 files changed, 0 insertions, 132 deletions
diff --git a/config/spamd_whitelist.xml b/config/spamd_whitelist.xml
deleted file mode 100644
index f7b3f4fe..00000000
--- a/config/spamd_whitelist.xml
+++ /dev/null
@@ -1,132 +0,0 @@
-<?xml version="1.0" encoding="utf-8" ?>
-<!DOCTYPE packagegui SYSTEM "./schema/packages.dtd">
-<?xml-stylesheet type="text/xsl" href="./xsl/package.xsl"?>
-<packagegui>
- <copyright>
- <![CDATA[
-/* $Id$ */
-/* ========================================================================== */
-/*
- authng.xml
- part of pfSense (http://www.pfSense.com)
- Copyright (C) 2007 to whom it may belong
- All rights reserved.
-
- Based on m0n0wall (http://m0n0.ch/wall)
- Copyright (C) 2003-2006 Manuel Kasper <mk@neon1.net>.
- 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.
- */
-/* ========================================================================== */
- ]]>
- </copyright>
- <description>Describe your package here</description>
- <requirements>Describe your package requirements here</requirements>
- <faq>Currently there are no FAQ items provided.</faq>
- <name>spamd-whitelist</name>
- <version>0.1.0</version>
- <title>SpamD: Whitelist</title>
- <!-- Menu is where this packages menu will appear -->
- <menu>
- <name>SpamD Whitelist</name>
- <tooltiptext></tooltiptext>
- <section>Services</section>
- <configfile>spamd.xml</configfile>
- </menu>
- <tabs>
- <tab>
- <text>SpamD External Sources</text>
- <url>/pkg.php?xml=spamd.xml</url>
- </tab>
- <tab>
- <text>SpamD Whitelist</text>
- <url>/pkg.php?xml=spamd_whitelist.xml</url>
- <active/>
- </tab>
- <tab>
- <text>SpamD Settings</text>
- <url>/pkg_edit.php?xml=spamd_settings.xml&amp;id=0</url>
- </tab>
- <tab>
- <text>SpamD Database</text>
- <url>/spamd_db.php</url>
- </tab>
- </tabs>
- <!-- configpath gets expanded out automatically and config items will be
- stored in that location -->
- <configpath>['installedpackages']['spamdwhitelist']['config']</configpath>
- <adddeleteeditpagefields>
- <columnitem>
- <fielddescr>Exempted IP</fielddescr>
- <fieldname>ip</fieldname>
- </columnitem>
- <columnitem>
- <fielddescr>Description</fielddescr>
- <fieldname>description</fieldname>
- </columnitem>
- </adddeleteeditpagefields>
- <!-- fields gets invoked when the user adds or edits a item. the following items
- will be parsed and rendered for the user as a gui with input, and selectboxes. -->
- <fields>
- <field>
- <fielddescr>Exempted IP</fielddescr>
- <fieldname>ip</fieldname>
- <description>Enter the IP to exempt from blacklisting</description>
- <type>input</type>
- </field>
- <field>
- <fielddescr>Description</fielddescr>
- <fieldname>description</fieldname>
- <description>Enter the description for this item</description>
- <type>input</type>
- </field>
- </fields>
- <custom_php_command_before_form>
- function sync_package_spamd_whitelist() {
- global $config;
- conf_mount_rw();
- config_lock();
- /* write out ip to the whitelist db */
- $fd = fopen("/var/db/whitelist.txt","w");
- if($config['installedpackages']['spamdwhitelist']['config'] != "") {
- foreach($config['installedpackages']['spamdwhitelist']['config'] as $spamd) {
- fwrite($fd, $spamd['ip'] . "\n");
- }
- }
- fclose($fd);
- /* signal a reload of all files */
- mwexec("/usr/bin/killall -HUP spamlogd");
- mwexec("/sbin/pfctl -t spamd-white -T add {$spamd['ip']}");
- conf_mount_ro();
- config_unlock();
- }
- </custom_php_command_before_form>
- <custom_delete_php_command>
- sync_package_spamd_whitelist();
- </custom_delete_php_command>
- <custom_php_resync_config_command>
- sync_package_spamd_whitelist();
- </custom_php_resync_config_command>
-</packagegui> \ No newline at end of file