Show
Ignore:
Timestamp:
09/09/06 16:30:10 (2 years ago)
Author:
miyoshi
Message:

Sync up with Emacs CVS HEAD.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/lisp/mail/feedmail.el

    r3990 r4161  
    13411341  (apply 'call-process-region 
    13421342         (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")) 
    13441352                       nil errors-to nil "-oi" "-t") 
    13451353                 ;; provide envelope "from" to sendmail; results will vary