1 ;;; spook.el --- spook phrase utility for overloading the NSA line eater
3 ;; Copyright (C) 1988, 1993, 2001, 2002, 2003, 2004,
4 ;; 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
10 ;; This file is part of GNU Emacs.
12 ;; GNU Emacs is free software; you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation; either version 3, or (at your option)
17 ;; GNU Emacs is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ;; GNU General Public License for more details.
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs; see the file COPYING. If not, write to the
24 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
25 ;; Boston, MA 02110-1301, USA.
29 ;; Steve Strassmann <straz@media-lab.media.mit.edu> didn't write
30 ;; this, and even if he did, he really didn't mean for you to use it
31 ;; in an anarchistic way.
34 ;; Just before sending mail, do M-x spook.
35 ;; A number of phrases will be inserted into your buffer, to help
36 ;; give your message that extra bit of attractiveness for automated
37 ;; keyword scanners. Help defeat the NSA trunk trawler!
45 "Spook phrase utility for overloading the NSA line eater."
49 (defcustom spook-phrases-file
(expand-file-name "spook.lines" data-directory
)
50 "Keep your favorite phrases here."
54 (defcustom spook-phrase-default-count
15
55 "Default number of phrases to insert."
61 "Adds that special touch of class to your outgoing mail."
63 (cookie-insert spook-phrases-file
64 spook-phrase-default-count
65 "Checking authorization..."
66 "Checking authorization...Approved"))
69 (defun snarf-spooks ()
70 "Return a vector containing the lines from `spook-phrases-file'."
71 (cookie-snarf spook-phrases-file
72 "Checking authorization..."
73 "Checking authorization...Approved"))
75 ;; Note: the implementation that used to take up most of this file has been
76 ;; cleaned up, generalized, gratuitously broken by esr, and now resides in
81 ;;; arch-tag: c682b61f-92b6-4492-9c0d-2367e562449c
82 ;;; spook.el ends here