From mboxrd@z Thu Jan 1 00:00:00 1970 From: Eric Abrahamsen Subject: Re: Questions about mail, MIME, etc. Date: Mon, 12 May 2014 09:37:37 +0800 Message-ID: <8738gfepzy.fsf@ericabrahamsen.net> References: <20140508133125.GA20746@pdavismbp15.iscinternal.com> <20140510234651.GG1117@pfdstudio-air.home> <87tx8xf211.fsf@ericabrahamsen.net> <20140511173542.GH1117@pfdstudio-air.home> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:33165) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Wjf8Q-0001Is-BA for emacs-orgmode@gnu.org; Sun, 11 May 2014 21:34:36 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Wjf8K-0000Oa-3b for emacs-orgmode@gnu.org; Sun, 11 May 2014 21:34:30 -0400 Received: from plane.gmane.org ([80.91.229.3]:33323) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Wjf8J-0000OW-TT for emacs-orgmode@gnu.org; Sun, 11 May 2014 21:34:24 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1Wjf8I-0001lT-FD for emacs-orgmode@gnu.org; Mon, 12 May 2014 03:34:22 +0200 Received: from 123.122.33.52 ([123.122.33.52]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 12 May 2014 03:34:22 +0200 Received: from eric by 123.122.33.52 with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 12 May 2014 03:34:22 +0200 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Peter Davis writes: > On Sun, May 11, 2014 at 11:05:30AM +0800, Eric Abrahamsen wrote: >> Peter Davis writes: >> >> > One more follow-on question. When I run org-mime-org-buffer-htmlize, I get a buffer in message mode with a nice MIME message almost ready to >> > go. I have not specified org-mime-library, so it defaults to mml, as expected for gnus. But when I type C-c C-c to send the message, I get >> > prompted for "via" with three options (which I don't remember offhand, but it was something like 'transport', 'sendmail' and 'smtp'. >> > >> > However, if I had previously run and quit gnus in that session, it just sends the message, badda-boom-badda-bing. >> > >> > Is there some minimal configuration I can add to .emacs to have the effect of running and quitting gnus to messages will send? I realize >> > this is not so much an org-mode question, but it's related. >> >> I have these variables set, I'll bet it's one or the other that makes >> the difference (probably the second). >> >> (setq mail-user-agent 'gnus-user-agent) >> (setq message-send-mail-function 'message-send-mail-with-sendmail) >> > > Ah! Using these lines, or even just the first one, did get rid of the "via:" prompt, but the messages never got delivered, even though emacs > said they had been sent. > > Then it occurred to me ... D'oh! I just added > > (load-file "~/.gnus.el") > > That worked! Sorry for the oversight. Glad you've got it working!