diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2008-04-17 23:04:45 +0000 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2008-04-17 23:04:45 +0000 |
commit | ae7181a14ad66a20c2c16ec57d4e25653893bcad (patch) | |
tree | 40cbb260ff0f2dcbab252a697c0d8d0ba9a36ff7 /packages/spamd_db.php | |
parent | c2e3e599859ad1a232e98b4708c1fb62b5043ea4 (diff) | |
download | pfsense-packages-ae7181a14ad66a20c2c16ec57d4e25653893bcad.tar.gz pfsense-packages-ae7181a14ad66a20c2c16ec57d4e25653893bcad.tar.bz2 pfsense-packages-ae7181a14ad66a20c2c16ec57d4e25653893bcad.zip |
From the newer man page:
Previous versions of spamd required traps to be entered into the database
including the enclosing <> characters; current versions expect only the
email address without the enclosing <> characters.
Diffstat (limited to 'packages/spamd_db.php')
-rw-r--r-- | packages/spamd_db.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/spamd_db.php b/packages/spamd_db.php index a9a76032..cbaa27bd 100644 --- a/packages/spamd_db.php +++ b/packages/spamd_db.php @@ -91,7 +91,7 @@ if($_GET['action'] or $_POST['action']) { /* spam trap e-mail address */ if($_POST['spamtrapemail'] <> "") { - mwexec("/usr/local/sbin/spamdb -T -a \"<{$_POST['spamtrapemail']}>\""); + mwexec("/usr/local/sbin/spamdb -T -a \"{$_POST['spamtrapemail']}\""); mwexec("killall -HUP spamlogd"); $savemsg = $_POST['spamtrapemail'] . " added to spam trap database."; } @@ -114,7 +114,7 @@ if($_GET['getstatus'] <> "") { /* spam trap e-mail address */ if($_GET['spamtrapemail'] <> "") { - $status = exec("spamdb -T -a \"<{$_GET['spamtrapemail']}>\""); + $status = exec("spamdb -T -a \"{$_GET['spamtrapemail']}\""); mwexec("killall -HUP spamlogd"); if($status) echo $status; @@ -125,7 +125,7 @@ if($_GET['spamtrapemail'] <> "") { /* spam trap e-mail address */ if($_GET['whitelist'] <> "") { - $status = exec("spamdb -a \"<{$_GET['spamtrapemail']}>\""); + $status = exec("spamdb -a \"{$_GET['spamtrapemail']}\""); mwexec("killall -HUP spamlogd"); if($status) echo $status; |