# HG changeset patch # User Richard M. Stallman # Date 728201867 0 # Node ID ba2fcbf5d6a1823bc10b67279b52921e6886664e # Parent e2f96965cb14a6582dfb318bfd49a9d598a40ceb (sendmail-program): Try /usr/ucblib/sendmail. diff -r e2f96965cb14 -r ba2fcbf5d6a1 lisp/paths.el --- 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/")