+2009-04-28 Reiner Steib <Reiner.Steib@gmx.de>
+
+ * spam.el: Use dns-query instead of query-dns. Was renamed on
+ 2008-12-25 in dns.el.
+
2009-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
* rfc2047.el (rfc2047-decode-region): Don't skip past `start', which
(autoload 'gnus-registry-store-extra-entry "gnus-registry")
(autoload 'gnus-registry-fetch-extra "gnus-registry")
-;; autoload query-dns
-(autoload 'query-dns "dns")
+;; autoload dns-query
+(autoload 'dns-query "dns")
;;}}}
:group 'spam)
(defcustom spam-use-dig t
- "Whether `query-dig' should be used instead of `query-dns'."
+ "Whether `query-dig' should be used instead of `dns-query'."
:type 'boolean
:group 'spam)
(push (list ip server query-result)
matches)))
;; else, if not using dig.el
- (when (query-dns query-string)
+ (when (dns-query query-string)
(gnus-message 6 "positive blackhole check")
- (push (list ip server (query-dns query-string 'TXT))
+ (push (list ip server (dns-query query-string 'TXT))
matches)))))))))
(when matches
spam-split-group)))