comparison lisp/paths.el @ 18453:d001394d1a2e

(sendmail-program): Look first in /usr/sbin.
author Richard M. Stallman <rms@gnu.org>
date Thu, 26 Jun 1997 07:21:42 +0000
parents 3e58cf777864
children 6ecfb6510c3b
comparison
equal deleted inserted replaced
18452:44e598b69b42 18453:d001394d1a2e
111 "Name of directory used by system mailer for delivering new mail. 111 "Name of directory used by system mailer for delivering new mail.
112 Its name should end with a slash.") 112 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/sbin/sendmail") "/usr/sbin/sendmail")
116 ((file-exists-p "/usr/lib/sendmail") "/usr/lib/sendmail") 117 ((file-exists-p "/usr/lib/sendmail") "/usr/lib/sendmail")
117 ((file-exists-p "/usr/sbin/sendmail") "/usr/sbin/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.")
121 121
122 (defconst remote-shell-program 122 (defconst remote-shell-program