aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1993-08-04 23:19:50 +0000
committerRichard M. Stallman1993-08-04 23:19:50 +0000
commit9c85ef9fe1dfc4f825647670f46ad21b8501bf0a (patch)
tree3039f0364ddffdf438fd27091805c569fc58107d
parent34fa2dc2e5f4138059f305483f8cbcb20349c422 (diff)
downloademacs-9c85ef9fe1dfc4f825647670f46ad21b8501bf0a.tar.gz
emacs-9c85ef9fe1dfc4f825647670f46ad21b8501bf0a.zip
(sendmail-program): Try /usr/sbin/sendmail.el also.
-rw-r--r--lisp/paths.el10
1 files changed, 5 insertions, 5 deletions
diff --git a/lisp/paths.el b/lisp/paths.el
index 9e1b8f8e94a..ea97278faf3 100644
--- a/lisp/paths.el
+++ b/lisp/paths.el
@@ -108,11 +108,11 @@ Will use `gnus-startup-file'-SERVER instead if exists.")
108Its name should end with a slash.") 108Its name should end with a slash.")
109 109
110(defconst sendmail-program 110(defconst sendmail-program
111 (if (file-exists-p "/usr/lib/sendmail") 111 (cond
112 "/usr/lib/sendmail" 112 ((file-exists-p "/usr/lib/sendmail") "/usr/lib/sendmail")
113 (if (file-exists-p "/usr/ucblib/sendmail") 113 ((file-exists-p "/usr/sbin/sendmail") "/usr/sbin/sendmail")
114 "/usr/ucblib/sendmail" 114 ((file-exists-p "/usr/ucblib/sendmail") "/usr/ucblib/sendmail")
115 "fakemail")) ;In ../etc, to interface to /bin/mail. 115 (t "fakemail")) ;In ../etc, to interface to /bin/mail.
116 "Program used to send messages.") 116 "Program used to send messages.")
117 117
118(defconst term-file-prefix (if (eq system-type 'vax-vms) "[.term]" "term/") 118(defconst term-file-prefix (if (eq system-type 'vax-vms) "[.term]" "term/")