diff options
| author | Richard M. Stallman | 1993-08-04 23:19:50 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1993-08-04 23:19:50 +0000 |
| commit | 9c85ef9fe1dfc4f825647670f46ad21b8501bf0a (patch) | |
| tree | 3039f0364ddffdf438fd27091805c569fc58107d | |
| parent | 34fa2dc2e5f4138059f305483f8cbcb20349c422 (diff) | |
| download | emacs-9c85ef9fe1dfc4f825647670f46ad21b8501bf0a.tar.gz emacs-9c85ef9fe1dfc4f825647670f46ad21b8501bf0a.zip | |
(sendmail-program): Try /usr/sbin/sendmail.el also.
| -rw-r--r-- | lisp/paths.el | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lisp/paths.el b/lisp/paths.el index 9e1b8f8e94a..ea97278faf3 100644 --- a/lisp/paths.el +++ b/lisp/paths.el | |||
| @@ -108,11 +108,11 @@ Will use `gnus-startup-file'-SERVER instead if exists.") | |||
| 108 | Its name should end with a slash.") | 108 | Its name should end with a slash.") |
| 109 | 109 | ||
| 110 | (defconst sendmail-program | 110 | (defconst sendmail-program |
| 111 | (if (file-exists-p "/usr/lib/sendmail") | 111 | (cond |
| 112 | "/usr/lib/sendmail" | 112 | ((file-exists-p "/usr/lib/sendmail") "/usr/lib/sendmail") |
| 113 | (if (file-exists-p "/usr/ucblib/sendmail") | 113 | ((file-exists-p "/usr/sbin/sendmail") "/usr/sbin/sendmail") |
| 114 | "/usr/ucblib/sendmail" | 114 | ((file-exists-p "/usr/ucblib/sendmail") "/usr/ucblib/sendmail") |
| 115 | "fakemail")) ;In ../etc, to interface to /bin/mail. | 115 | (t "fakemail")) ;In ../etc, to interface to /bin/mail. |
| 116 | "Program used to send messages.") | 116 | "Program used to send messages.") |
| 117 | 117 | ||
| 118 | (defconst term-file-prefix (if (eq system-type 'vax-vms) "[.term]" "term/") | 118 | (defconst term-file-prefix (if (eq system-type 'vax-vms) "[.term]" "term/") |