From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "Richard M. Stallman" Newsgroups: gmane.emacs.devel Subject: Re: Sending e-mail via system's mail client from sendmail.el Date: Mon, 11 Jul 2005 01:34:56 -0400 Message-ID: References: <4A08801D-0AD9-4874-A008-A066E8E5EDDF@gmail.com> Reply-To: rms@gnu.org NNTP-Posting-Host: main.gmane.org X-Trace: sea.gmane.org 1121063643 29034 80.91.229.2 (11 Jul 2005 06:34:03 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 11 Jul 2005 06:34:03 +0000 (UTC) Cc: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Mon Jul 11 08:34:03 2005 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1DrrrQ-0002bI-Cd for ged-emacs-devel@m.gmane.org; Mon, 11 Jul 2005 08:33:48 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Drrsy-0002O7-Me for ged-emacs-devel@m.gmane.org; Mon, 11 Jul 2005 02:35:24 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Drrai-0006G7-CO for emacs-devel@gnu.org; Mon, 11 Jul 2005 02:16:33 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1DrrY2-0005mI-BV for emacs-devel@gnu.org; Mon, 11 Jul 2005 02:13:51 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1DrrXy-00058R-9K for emacs-devel@gnu.org; Mon, 11 Jul 2005 02:13:42 -0400 Original-Received: from [199.232.76.164] (helo=fencepost.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.34) id 1Drr6X-0007gg-QP for emacs-devel@gnu.org; Mon, 11 Jul 2005 01:45:21 -0400 Original-Received: from rms by fencepost.gnu.org with local (Exim 4.34) id 1DrqwS-0007fM-2n; Mon, 11 Jul 2005 01:34:56 -0400 Original-To: David Reitter In-reply-to: <4A08801D-0AD9-4874-A008-A066E8E5EDDF@gmail.com> (message from David Reitter on Sun, 10 Jul 2005 12:34:06 +0100) X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:40755 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:40755 I can't check the details, but it seems like basically the right thing. > To activate: > (setq send-mail-function 'mailclient-send-it) Forgot this: Maybe it would be better to include this in mailclient.el? No, because just loading a Lisp file shouldn't change the behavior of Emacs. But it isn't needed anyway. This change in sendmail.el ! (defcustom send-mail-function ! (if (eq system-type 'darwin) ! 'mailclient-send-it ! 'sendmail-send-it) is the right way to do that job. Nothing more is needed. Thanks. Have you signed copyright papers yet?