summaryrefslogtreecommitdiff
path: root/lisp/paths.el
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1997-06-26 07:21:42 +0000
committerRichard M. Stallman <rms@gnu.org>1997-06-26 07:21:42 +0000
commite0d9dfada4cca37c64c50d63313882b835d1f3d9 (patch)
tree5bbe9d8d31a381fc8629a183d79c73cdb4411cbc /lisp/paths.el
parentfc7c51c66ca4038a197b94da825e4cfdcdc5359e (diff)
downloademacs-e0d9dfada4cca37c64c50d63313882b835d1f3d9.tar.gz
(sendmail-program): Look first in /usr/sbin.
Diffstat (limited to 'lisp/paths.el')
-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.")
(defconst sendmail-program
(cond
- ((file-exists-p "/usr/lib/sendmail") "/usr/lib/sendmail")
((file-exists-p "/usr/sbin/sendmail") "/usr/sbin/sendmail")
+ ((file-exists-p "/usr/lib/sendmail") "/usr/lib/sendmail")
((file-exists-p "/usr/ucblib/sendmail") "/usr/ucblib/sendmail")
(t "fakemail")) ;In ../etc, to interface to /bin/mail.
"Program used to send messages.")