aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1997-06-26 07:21:42 +0000
committerRichard M. Stallman1997-06-26 07:21:42 +0000
commit1e0fea28d9fc420a1bef104f7c700185f09ce311 (patch)
tree173fb205ee100babda72822c7010b9e7838a561f
parent7e46d459380f20ea20c3e7f0cb6d5467bc9fb66c (diff)
downloademacs-1e0fea28d9fc420a1bef104f7c700185f09ce311.tar.gz
emacs-1e0fea28d9fc420a1bef104f7c700185f09ce311.zip
(sendmail-program): Look first in /usr/sbin.
-rw-r--r--lisp/paths.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/paths.el b/lisp/paths.el
index 96536a1b4a1..0f5bd956a29 100644
--- a/lisp/paths.el
+++ b/lisp/paths.el
@@ -113,8 +113,8 @@ Its name should end with a slash.")
113 113
114(defconst sendmail-program 114(defconst sendmail-program
115 (cond 115 (cond
116 ((file-exists-p "/usr/lib/sendmail") "/usr/lib/sendmail")
117 ((file-exists-p "/usr/sbin/sendmail") "/usr/sbin/sendmail") 116 ((file-exists-p "/usr/sbin/sendmail") "/usr/sbin/sendmail")
117 ((file-exists-p "/usr/lib/sendmail") "/usr/lib/sendmail")
118 ((file-exists-p "/usr/ucblib/sendmail") "/usr/ucblib/sendmail") 118 ((file-exists-p "/usr/ucblib/sendmail") "/usr/ucblib/sendmail")
119 (t "fakemail")) ;In ../etc, to interface to /bin/mail. 119 (t "fakemail")) ;In ../etc, to interface to /bin/mail.
120 "Program used to send messages.") 120 "Program used to send messages.")