From mboxrd@z Thu Jan 1 00:00:00 1970 From: Erwin Panen Subject: orgmode / emacs /msmtp on winxp Date: Sat, 22 Jan 2011 23:55:19 +0100 Message-ID: <4D3B6057.8070708@fastmail.fm> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Return-path: Received: from [140.186.70.92] (port=57078 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PgmMj-0002zb-GJ for emacs-orgmode@gnu.org; Sat, 22 Jan 2011 17:55:34 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PgmMe-00079H-Bj for emacs-orgmode@gnu.org; Sat, 22 Jan 2011 17:55:29 -0500 Received: from out1.smtp.messagingengine.com ([66.111.4.25]:46087) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PgmMe-000791-91 for emacs-orgmode@gnu.org; Sat, 22 Jan 2011 17:55:24 -0500 Received: from compute2.internal (compute2.nyi.mail.srv.osa [10.202.2.42]) by gateway1.messagingengine.com (Postfix) with ESMTP id 60B9F21383 for ; Sat, 22 Jan 2011 17:55:22 -0500 (EST) Received: from macbook-3.local (93-158-9-16.subs.ibrowse.com [93.158.9.16]) by mail.messagingengine.com (Postfix) with ESMTPSA id ECAEA447721 for ; Sat, 22 Jan 2011 17:55:21 -0500 (EST) List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Hi, I guess this is perhaps more emacs related but here goes: I'm trying to get going with gnus. My system is running XP. I have msmtp installed and working. (tested using cli) In emacs using eshell and issuing msmtp --v I get the correct output. Versions: Gnus 5.13 Emacs 23.2.1 msmtp 1.4.17 What goes wrong is this: In emacs I issue M-x mail, fill in, and C-c C-c to send => this opens my Thunderbird client. I've added the equivalent of these to .emacs and .gnus ------------------------------------------------------------------- ;; with Emacs 23.1, you have to set this explicitly (in MS Windows) ;; otherwise it tries to send through OS associated mail client (setq message-send-mail-function 'message-send-mail-with-sendmail) ;; we substitute sendmail with msmtp (setq sendmail-program "c:/gnu/bin/msmtp.exe") ;;need to tell msmtp which account we're using (setq message-sendmail-extra-arguments '("-a" "anderson")) ;; you might want to set the following too (setq mail-host-address "gmail.com") (setq user-full-name "Anderson Guy") (setq user-mail-address "sivaram.notthere@gmail.com") What can I do to debug this behaviour?