(sendmail-program): Try /usr/ucblib/sendmail.

This commit is contained in:
Richard M. Stallman 1993-01-28 06:17:47 +00:00
parent 658eed663c
commit 3def68cde8

View file

@ -103,7 +103,9 @@ Its name should end with a slash.")
(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/")