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/sendmail.el

    r4098 r4161  
    4848  :group 'sendmail 
    4949  :version "22.1") 
     50 
     51(defcustom sendmail-program 
     52  (cond 
     53    ((file-exists-p "/usr/sbin/sendmail") "/usr/sbin/sendmail") 
     54    ((file-exists-p "/usr/lib/sendmail") "/usr/lib/sendmail") 
     55    ((file-exists-p "/usr/ucblib/sendmail") "/usr/ucblib/sendmail") 
     56    (t "fakemail"))                     ;In ../etc, to interface to /bin/mail. 
     57  "Program used to send messages." 
     58  :group 'mail 
     59  :type 'file) 
    5060 
    5161;;;###autoload