X-Git-Url: https://code.delx.au/gnu-emacs/blobdiff_plain/6c96b8933b2c5b5c85d8fa0c3f77431f5dae2e27..ef62b23df5a7007c3d8c74dbca87ba83e9da682e:/lisp/mh-e/mh-junk.el diff --git a/lisp/mh-e/mh-junk.el b/lisp/mh-e/mh-junk.el index 26b00a158b..2119d6f93e 100644 --- a/lisp/mh-e/mh-junk.el +++ b/lisp/mh-e/mh-junk.el @@ -1,6 +1,6 @@ ;;; mh-junk.el --- MH-E interface to anti-spam measures -;; Copyright (C) 2003, 2004, 2005, 2006, 2007 Free Software Foundation, Inc. +;; Copyright (C) 2003-2012 Free Software Foundation, Inc. ;; Author: Satyaki Das , ;; Bill Wohler @@ -9,10 +9,10 @@ ;; This file is part of GNU Emacs. -;; GNU Emacs is free software; you can redistribute it and/or modify +;; GNU Emacs is free software: you can redistribute it and/or modify ;; it under the terms of the GNU General Public License as published by -;; the Free Software Foundation; either version 2, or (at your option) -;; any later version. +;; the Free Software Foundation, either version 3 of the License, or +;; (at your option) any later version. ;; GNU Emacs is distributed in the hope that it will be useful, ;; but WITHOUT ANY WARRANTY; without even the implied warranty of @@ -20,9 +20,7 @@ ;; GNU General Public License for more details. ;; You should have received a copy of the GNU General Public License -;; along with GNU Emacs; see the file COPYING. If not, write to the -;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, -;; Boston, MA 02110-1301, USA. +;; along with GNU Emacs. If not, see . ;;; Commentary: @@ -109,8 +107,8 @@ RANGE is read in interactive use." "Blacklist MSG with SpamAssassin. SpamAssassin is one of the more popular spam filtering programs. -Get it from your local distribution or from -http://spamassassin.org/. +Get it from your local distribution or from the SpamAssassin web +site at URL `http://spamassassin.org/'. To use SpamAssassin, add the following recipes to \".procmailrc\": @@ -314,9 +312,9 @@ information can be used so that you can replace multiple (delete-other-windows) (pop-to-buffer (get-buffer-create "*MH-E Spammer Frequencies*")) (erase-buffer) - (maphash '(lambda (key value) "" - (if (> value 2) - (insert (format "%s %s\n" key value)))) + (maphash (lambda (key value) "" + (if (> value 2) + (insert (format "%s %s\n" key value)))) domains) (sort-numeric-fields 2 (point-min) (point-max)) (reverse-region (point-min) (point-max)) @@ -333,7 +331,8 @@ information can be used so that you can replace multiple "Blacklist MSG with bogofilter. Bogofilter is a Bayesian spam filtering program. Get it from your -local distribution or from http://bogofilter.sourceforge.net/. +local distribution or from the bogofilter web site at URL +`http://bogofilter.sourceforge.net/'. Bogofilter is taught by running: @@ -412,8 +411,9 @@ See `mh-bogofilter-blacklist' for more information." (defun mh-spamprobe-blacklist (msg) "Blacklist MSG with SpamProbe. -SpamProbe is a Bayesian spam filtering program. Get it from your local -distribution or from http://spamprobe.sourceforge.net. +SpamProbe is a Bayesian spam filtering program. Get it from your +local distribution or from the SpamProbe web site at URL +`http://spamprobe.sourceforge.net'. To use SpamProbe, add the following recipes to \".procmailrc\": @@ -466,5 +466,4 @@ See `mh-spamprobe-blacklist' for more information." ;; sentence-end-double-space: nil ;; End: -;; arch-tag: 603335f1-77ff-4306-8828-5d3dad51abe1 ;;; mh-junk.el ends here