Changeset 4161 for trunk/lisp/gnus/message.el
- Timestamp:
- 09/09/06 16:30:10 (2 years ago)
- Files:
-
- trunk/lisp/gnus/message.el (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/lisp/gnus/message.el
r4098 r4161 3898 3898 (append 3899 3899 (list (point-min) (point-max) 3900 (if (boundp 'sendmail-program) 3901 sendmail-program 3902 "/usr/lib/sendmail") 3900 (cond ((boundp 'sendmail-program) 3901 sendmail-program) 3902 ((file-exists-p "/usr/sbin/sendmail") 3903 "/usr/sbin/sendmail") 3904 ((file-exists-p "/usr/lib/sendmail") 3905 "/usr/lib/sendmail") 3906 ((file-exists-p "/usr/ucblib/sendmail") 3907 "/usr/ucblib/sendmail") 3908 (t "fakemail")) 3903 3909 nil errbuf nil "-oi") 3904 3910 ;; Always specify who from,
