aboutsummaryrefslogtreecommitdiffstats
path: root/lisp
diff options
context:
space:
mode:
authorGlenn Morris2011-05-17 20:39:45 -0700
committerGlenn Morris2011-05-17 20:39:45 -0700
commitc136e5cdf2e7ea9745727c07146713c582f93cde (patch)
treeae0d7bb83755d036f5856199f481c74a49583bc9 /lisp
parente565dd3789e0ef5589035034893d99de239c87a2 (diff)
downloademacs-c136e5cdf2e7ea9745727c07146713c582f93cde.tar.gz
emacs-c136e5cdf2e7ea9745727c07146713c582f93cde.zip
Remove lib-src/fakemail.c.
* lib-src/fakemail.c: Remove file. * lib-src/Makefile.in (UTILITIES): Remove fakemail${EXEEXT}. (fakemail${EXEEXT}): Remove rule. * lib-src/makefile.w32-in ($(BLD)/fakemail.exe, fakemail) ($(BLD)/fakemail.$(O)): Remove. * lisp/mail/sendmail.el (sendmail-program): Fall back to just "sendmail". * lisp/mail/feedmail.el: Update commentary. * doc/emacs/ack.texi (Acknowledgments): Remove fakemail.c. * etc/NEWS: Mention this. * INSTALL: Remove fakemail.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/ChangeLog2
-rw-r--r--lisp/mail/feedmail.el16
-rw-r--r--lisp/mail/sendmail.el4
3 files changed, 11 insertions, 11 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index fa61c6913c2..e7c835400ad 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,7 @@
12011-05-18 Glenn Morris <rgm@gnu.org> 12011-05-18 Glenn Morris <rgm@gnu.org>
2 2
3 * mail/sendmail.el (sendmail-program): Fall back to just "sendmail".
4
3 Rationalize calendar handling of day and month abbrev-arrays. 5 Rationalize calendar handling of day and month abbrev-arrays.
4 * calendar/calendar.el (calendar-customized-p): New function. 6 * calendar/calendar.el (calendar-customized-p): New function.
5 (calendar-abbrev-construct, calendar-make-alist): Change what it does. 7 (calendar-abbrev-construct, calendar-make-alist): Change what it does.
diff --git a/lisp/mail/feedmail.el b/lisp/mail/feedmail.el
index 3ef8a6c4955..b86bdb178f6 100644
--- a/lisp/mail/feedmail.el
+++ b/lisp/mail/feedmail.el
@@ -13,9 +13,8 @@
13;; A replacement for parts of Emacs' sendmail.el (specifically, 13;; A replacement for parts of Emacs' sendmail.el (specifically,
14;; it's what handles your outgoing mail after you hit C-c C-c in mail 14;; it's what handles your outgoing mail after you hit C-c C-c in mail
15;; mode). See below for a list of additional features, including the 15;; mode). See below for a list of additional features, including the
16;; ability to queue messages for later sending. If you are using 16;; ability to queue messages for later sending. This replaces
17;; fakemail as a subprocess, you can switch to feedmail and eliminate 17;; the standalone fakemail program that used to be distributed with Emacs.
18;; the use of fakemail.
19 18
20;; feedmail works with recent versions of Emacs (20.x series) and 19;; feedmail works with recent versions of Emacs (20.x series) and
21;; XEmacs (tested with 20.4 and later betas). It probably no longer 20;; XEmacs (tested with 20.4 and later betas). It probably no longer
@@ -90,12 +89,11 @@
90;; This code does in elisp a superset of the stuff that used to be done 89;; This code does in elisp a superset of the stuff that used to be done
91;; by the separate program "fakemail" for processing outbound email. 90;; by the separate program "fakemail" for processing outbound email.
92;; In other words, it takes over after you hit "C-c C-c" in mail mode. 91;; In other words, it takes over after you hit "C-c C-c" in mail mode.
93;; By appropriate setting of options, you can still use "fakemail", 92;; By appropriate setting of options, you can even revert to sendmail
94;; or you can even revert to sendmail (which is not too popular 93;; (which is not too popular locally). See the variables at the top
95;; locally). See the variables at the top of the elisp for how to 94;; of the elisp for how to achieve these effects (there are more
96;; achieve these effects (there are more features than in this bullet 95;; features than in this bullet list, so trolling through the variable
97;; list, so trolling through the variable and function doc strings may 96;; and function doc strings may be worth your while):
98;; be worth your while):
99;; 97;;
100;; --- you can park outgoing messages into a disk-based queue and 98;; --- you can park outgoing messages into a disk-based queue and
101;; stimulate sending them all later (handy for laptop users); 99;; stimulate sending them all later (handy for laptop users);
diff --git a/lisp/mail/sendmail.el b/lisp/mail/sendmail.el
index ed4270d484c..bbb02d7b978 100644
--- a/lisp/mail/sendmail.el
+++ b/lisp/mail/sendmail.el
@@ -48,9 +48,9 @@
48 ((file-exists-p "/usr/sbin/sendmail") "/usr/sbin/sendmail") 48 ((file-exists-p "/usr/sbin/sendmail") "/usr/sbin/sendmail")
49 ((file-exists-p "/usr/lib/sendmail") "/usr/lib/sendmail") 49 ((file-exists-p "/usr/lib/sendmail") "/usr/lib/sendmail")
50 ((file-exists-p "/usr/ucblib/sendmail") "/usr/ucblib/sendmail") 50 ((file-exists-p "/usr/ucblib/sendmail") "/usr/ucblib/sendmail")
51 (t "fakemail"))) ; in lib-src, to interface to /bin/mail 51 (t "sendmail")))
52 "Program used to send messages." 52 "Program used to send messages."
53 :version "24.1" ; added executable-find 53 :version "24.1" ; add executable-find, remove fakemail
54 :group 'mail 54 :group 'mail
55 :type 'file) 55 :type 'file)
56 56