Changeset 4161 for trunk/lisp/mail/feedmail.el
- Timestamp:
- 09/09/06 16:30:10 (2 years ago)
- Files:
-
- trunk/lisp/mail/feedmail.el (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/lisp/mail/feedmail.el
r3990 r4161 1341 1341 (apply 'call-process-region 1342 1342 (append (list (point-min) (point-max) 1343 (if (boundp 'sendmail-program) sendmail-program "/usr/lib/sendmail") 1343 (cond ((boundp 'sendmail-program) 1344 sendmail-program) 1345 ((file-exists-p "/usr/sbin/sendmail") 1346 "/usr/sbin/sendmail") 1347 ((file-exists-p "/usr/lib/sendmail") 1348 "/usr/lib/sendmail") 1349 ((file-exists-p "/usr/ucblib/sendmail") 1350 "/usr/ucblib/sendmail") 1351 (t "fakemail")) 1344 1352 nil errors-to nil "-oi" "-t") 1345 1353 ;; provide envelope "from" to sendmail; results will vary
