Mercurial > emacs
changeset 1825:ba2fcbf5d6a1
(sendmail-program): Try /usr/ucblib/sendmail.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Thu, 28 Jan 1993 06:17:47 +0000 |
parents | e2f96965cb14 |
children | 6ca05c5f8979 |
files | lisp/paths.el |
diffstat | 1 files changed, 3 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/paths.el Thu Jan 28 06:16:04 1993 +0000 +++ b/lisp/paths.el Thu Jan 28 06:17:47 1993 +0000 @@ -103,7 +103,9 @@ (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/")