From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nick Dokos Subject: Re: org-mime-org-buffer-htmlize sending hangs ... Date: Mon, 21 Jul 2014 12:23:07 -0400 Message-ID: <87tx6a1y1g.fsf@alphaville.bos.redhat.com> References: <53CD1255.3080206@pfdstudio.com> <8761iqbzx5.fsf@gmail.com> <53CD31C6.9030009@pfdstudio.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:48984) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1X9GNC-00068Q-MS for emacs-orgmode@gnu.org; Mon, 21 Jul 2014 12:23:41 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1X9GN5-0001y7-OW for emacs-orgmode@gnu.org; Mon, 21 Jul 2014 12:23:34 -0400 Received: from plane.gmane.org ([80.91.229.3]:55266) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1X9GN5-0001y0-Hi for emacs-orgmode@gnu.org; Mon, 21 Jul 2014 12:23:27 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1X9GN0-00016t-Rz for emacs-orgmode@gnu.org; Mon, 21 Jul 2014 18:23:22 +0200 Received: from pool-98-110-160-12.bstnma.fios.verizon.net ([98.110.160.12]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 21 Jul 2014 18:23:22 +0200 Received: from ndokos by pool-98-110-160-12.bstnma.fios.verizon.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 21 Jul 2014 18:23: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 more observation: I tried quitting Aquamacs, and then quitting and > re-starting Emacs. The same problem occurred. > > I also looked in the *trace of SMTP session to ... * buffer, and it > was empty. > C-h v message-send-mail-function RET What the value is depends on which package you use to send mail. For smtpmail, this is probably `message-smtpmail-send-it' which just executes a hook and then calls `smtpmail-send-it'. I would edebug this function and step through it until it goes off the rails, then do the same thing on the next level down until you either find the culprit or give up in disgust. Even a partial descent into it however should be helpful to whoever you can beg/coerce to look at the problem (most probably you :-) ) If not smtpmail, then do the same thing with whatever function you *do* use. Check any buffers generated and watch out for any debug settings as you follow the flow. You might want to set any debug variables you find before doing it again for the Nth time where 2 <= N ... At least, that's how I would go about it. Nick