# HG changeset patch # User Richard M. Stallman # Date 867309702 0 # Node ID d001394d1a2efb54f360cd548a4e4dd5a828f505 # Parent 44e598b69b42e94ac18c8ed818a8aa76def3e4cf (sendmail-program): Look first in /usr/sbin. diff -r 44e598b69b42 -r d001394d1a2e lisp/paths.el --- a/lisp/paths.el Thu Jun 26 01:00:03 1997 +0000 +++ b/lisp/paths.el Thu Jun 26 07:21:42 1997 +0000 @@ -113,8 +113,8 @@ (defconst sendmail-program (cond + ((file-exists-p "/usr/sbin/sendmail") "/usr/sbin/sendmail") ((file-exists-p "/usr/lib/sendmail") "/usr/lib/sendmail") - ((file-exists-p "/usr/sbin/sendmail") "/usr/sbin/sendmail") ((file-exists-p "/usr/ucblib/sendmail") "/usr/ucblib/sendmail") (t "fakemail")) ;In ../etc, to interface to /bin/mail. "Program used to send messages.")