]> git.eshelyaron.com Git - emacs.git/commitdiff
(send-mail-function): Use mailclient-send-it
authorRichard M. Stallman <rms@gnu.org>
Sun, 16 Oct 2005 17:52:04 +0000 (17:52 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sun, 16 Oct 2005 17:52:04 +0000 (17:52 +0000)
as default on darwin and windows systems.

lisp/ChangeLog
lisp/mail/sendmail.el

index 43320f3d00e8df069f609a44231887f9d6877a5f..1bdbfd1a077619eee189d0d372dfb5fc698675f9 100644 (file)
@@ -1,3 +1,8 @@
+2005-10-16  David Reitter <david.reitter@gmail.com>
+
+       * mail/sendmail.el (send-mail-function): Use mailclient-send-it
+       as default on darwin and windows systems.
+
 2005-10-16  Sven Joachim  <svenjoac@gmx.de>  (tiny change)
 
        * arc-mode.el (archive-zip-extract): Doc fix.
index f7c62026d80bccdc7c5e576400d43e31d84c623a..81afe688c10535213088af21db376d9837063dcb 100644 (file)
@@ -120,7 +120,10 @@ nil means let mailer mail back a message to report errors."
 
 ;; Useful to set in site-init.el
 ;;;###autoload
-(defcustom send-mail-function 'sendmail-send-it
+(defcustom send-mail-function 
+  (if (and window-system (memq system-type '(darwin windows-nt)))
+      'mailclient-send-it
+    'sendmail-send-it)
   "Function to call to send the current buffer as mail.
 The headers should be delimited by a line which is
 not a valid RFC822 header or continuation line,