aboutsummaryrefslogtreecommitdiffstats
path: root/packages/spamd_db_ext.php
diff options
context:
space:
mode:
authorScott Ullrich <sullrich@pfsense.org>2006-06-02 16:57:59 +0000
committerScott Ullrich <sullrich@pfsense.org>2006-06-02 16:57:59 +0000
commitf14370090e067ae878690b3886dbb13a1f22f52e (patch)
tree01345b4187412011a134524d8c1d9011ff46216d /packages/spamd_db_ext.php
parenta260a70221d035dbedbba3d217344f28d31f1c1e (diff)
downloadpfsense-packages-f14370090e067ae878690b3886dbb13a1f22f52e.tar.gz
pfsense-packages-f14370090e067ae878690b3886dbb13a1f22f52e.tar.bz2
pfsense-packages-f14370090e067ae878690b3886dbb13a1f22f52e.zip
Delete items from SpamD blacklist when they are deleted from the SpamDB as well.
Diffstat (limited to 'packages/spamd_db_ext.php')
-rw-r--r--packages/spamd_db_ext.php23
1 files changed, 23 insertions, 0 deletions
diff --git a/packages/spamd_db_ext.php b/packages/spamd_db_ext.php
index 8a6b726c..ae6c51fb 100644
--- a/packages/spamd_db_ext.php
+++ b/packages/spamd_db_ext.php
@@ -73,6 +73,7 @@ if($_GET['action'] or $_POST['action']) {
usleep(100);
exec("/usr/local/sbin/spamdb -a {$srcip}");
mwexec("/sbin/pfctl -q -t blacklist -T replace -f /var/db/blacklist.txt");
+ delete_from_spamd_bl($srcip);
log_error("spamd: {$srcip} has been whitelisted by {$_SERVER['REMOTE_ADDR']} {$loginname}");
hup_spamd();
exit;
@@ -82,6 +83,7 @@ if($_GET['action'] or $_POST['action']) {
hup_spamd();
mwexec("/sbin/pfctl -q -t spamd -T delete $srcip");
mwexec("/sbin/pfctl -q -t blacklist -T replace -f /var/db/blacklist.txt");
+ delete_from_spamd_bl($srcip);
log_error("spamd: {$srcip} has been deleted by {$_SERVER['REMOTE_ADDR']} {$loginname}");
exit;
} else if($action == "spamtrap") {
@@ -154,6 +156,27 @@ if($_GET['whitelist'] <> "") {
exit;
}
+function delete_from_spamd_bl($ip) {
+ config_lock();
+ if(!file_exists("/var/db/blacklist.txt"))
+ return;
+ $blacklist = file("/var/db/blacklist.txt");
+ $new_blacklist = array();
+ foreach($blacklist as $bl) {
+ if(stristr($bl, $ip)) {
+ /* don't add item */
+ } else {
+ $new_blacklist[] = $bl;
+ }
+ }
+ $fd = fopen("/var/db/blacklist.txt", "w");
+ foreach($new_blacklist as $bl)
+ fwrite($fd, $bl . "\n");
+ flose($fd);
+ mwexec("/sbin/pfctl -q -t blacklist -T replace -f /var/db/blacklist.txt");
+ config_unlock();
+}
+
function delete_from_spamd_db($srcip) {
config_lock();
$fd = fopen("/tmp/execcmds", "w");