(spam-check-blackholes): remove "[IP address]"
authorTeodor Zlatanov <tzz@lifelogs.com>
Thu, 23 Oct 2003 16:14:39 +0000 (16:14 +0000)
committerTeodor Zlatanov <tzz@lifelogs.com>
Thu, 23 Oct 2003 16:14:39 +0000 (16:14 +0000)
requirement, now just "IP address" is enough for detection for
blackhole checking

lisp/ChangeLog
lisp/spam.el

index efcd260..f7e3b21 100644 (file)
@@ -1,3 +1,9 @@
+2003-10-23  Teodor Zlatanov  <tzz@lifelogs.com>
+
+       * spam.el (spam-check-blackholes): remove "[IP address]"
+       requirement, now just "IP address" is enough for detection for
+       blackhole checking
+
 2003-10-23  Simon Josefsson  <jas@extundo.com>
 
        * flow-fill.el (fill-flowed-encode, fill-flowed): Autoload.
index c21efe0..1737059 100644 (file)
@@ -772,7 +772,7 @@ See the Info node `(gnus)Fancy Mail Splitting' for more details."
        (goto-char (point-min))
        (gnus-message 5 "Checking headers for relay addresses")
        (while (re-search-forward
-               "\\[\\([0-9]+.[0-9]+.[0-9]+.[0-9]+\\)\\]" nil t)
+               "\\([0-9]+.[0-9]+.[0-9]+.[0-9]+\\)" nil t)
          (gnus-message 9 "Blackhole search found host IP %s." (match-string 1))
          (push (spam-reverse-ip-string (match-string 1))
                ips)))