summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1993-01-28 06:17:47 +0000
committerRichard M. Stallman <rms@gnu.org>1993-01-28 06:17:47 +0000
commitb76c3c58ee098b061afe4771d712f25c19424b0a (patch)
treee7825970d09e536807927cf11a75c908e6d0e047
parentc475387fd675dfa81802698893d68fb34eedc1ac (diff)
downloademacs-b76c3c58ee098b061afe4771d712f25c19424b0a.tar.gz
(sendmail-program): Try /usr/ucblib/sendmail.
-rw-r--r--lisp/paths.el4
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/paths.el b/lisp/paths.el
index e5011b8d568..62a0b9f16ff 100644
--- a/lisp/paths.el
+++ b/lisp/paths.el
@@ -103,7 +103,9 @@ Its name should end with a slash.")
(defconst sendmail-program
(if (file-exists-p "/usr/lib/sendmail")
"/usr/lib/sendmail"
- "fakemail") ;In ../etc, to interface to /bin/mail.
+ (if (file-exists-p "/usr/ucblib/sendmail")
+ "/usr/ucblib/sendmail"
+ "fakemail")) ;In ../etc, to interface to /bin/mail.
"Program used to send messages.")
(defconst term-file-prefix (if (eq system-type 'vax-vms) "[.term]" "term/")