unofficial mirror of bug-gnu-emacs@gnu.org 
 help / color / mirror / code / Atom feed
From: "Benjamin L. Russell" <dekudekuplex@yahoo.com>
To: Lars Magne Ingebrigtsen <larsi@gnus.org>
Cc: 8689@debbugs.gnu.org
Subject: bug#8689: 23.3; Gnus v5.13 freezes upon invocation of default STARTTLS in SMTP in GNU Emacs 23.3.1 (i386-mingw-nt5.1.2600) on Windows XP Professional, Service Pack 3
Date: Thu, 30 Jun 2011 07:59:21 -0700 (PDT)	[thread overview]
Message-ID: <1309445961.60175.YahooMailClassic@web32006.mail.mud.yahoo.com> (raw)
In-Reply-To: <m31uycfcpm.fsf@quimbies.gnus.org>

larsi@gnus.org (Lars Magne Ingebrigtsen) writes:

> DekuDekuplex@Yahoo.com
> (Benjamin L. Russell) writes:
> 
> > Previously, I had thought that the default STARTTLS
> configuration file
> > (C:\emacs\emacs-23.3\lisp\gnus\starttls.el) worked
> when invoking the
> > STARTTLS file in sending a message via the SMTP
> protocol; however,
> > yesterday I discovered that apparently my GNU Emacs
> 23.3.1 installation
> > had been using a modified STARTTLS configuration file
> from the older GNU
> > Emacs 23.2.1 version within the same C:\emacs
> directory when Gnus
> > started freezing every time in SMTP upon invocation of
> STARTTLS
> > immediately after I moved the older versions of Emacs
> to a different
> > directory.
> 
> What are the differences between the STARTTLS configuration
> files in the
> two Emacs 23.x versions?

Let's see:

----- inserted portion begins immediately after this line -----
Microsoft Windows XP [Version 5.1.2600]
(C) Copyright 1985-2001 Microsoft Corp.

C:\Documents and Settings\kensyuu>diff C:\emacs\emacs-23.3\lisp\gnus\starttls.el
 "C:\Documents and Settings\kensyuu\My Documents\GNU Emacs\Deprecated Versions\F
rom emacs Top-level Folder\emacs-23.2\lisp\gnus\starttls.el"
cygwin warning:
  MS-DOS style path detected: C:\emacs\emacs-23.3\lisp\gnus\starttls.el
  Preferred POSIX equivalent is: /cygdrive/c/emacs/emacs-23.3/lisp/gnus/starttls
.el
  CYGWIN environment variable option "nodosfilewarning" turns off this warning.
  Consult the user's guide for more details about POSIX paths:
    http://cygwin.com/cygwin-ug-net/using.html#using-pathnames
4c4
< ;;   2005, 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
---
> ;;   2005, 2006, 2007, 2008 Free Software Foundation, Inc.
13c13
< ;; GNU Emacs is free software: you can redistribute it and/or modify
---
> ;; GNU Emacs is free software; you can redistribute it and/or modify
15,16c15,16
< ;; the Free Software Foundation, either version 3 of the License, or
< ;; (at your option) any later version.
---
> ;; the Free Software Foundation; either version 3, or (at your option)
> ;; any later version.
20c20
< ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
---
> ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.        See the
24c24,26
< ;; along with GNU Emacs.  If not, see <http://www.gnu.org/licenses/>.
---
> ;; along with GNU Emacs; see the file COPYING.  If not, write to the
> ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
> ;; Boston, MA 02110-1301, USA.
199d200
< ;; Added based on a suggestion by Uday Reddy posted on 2010-04-26 at "Question
 #108267 : Questions : VM" (see https://answers.launchpad.net/vm/+question/10826
7) by Benjamin L. Russell on Tuesday, May 17, 2011, at 19:53.
212,213c213
<       ;; Modified based on a suggestion by Uday Reddy posted on 2010-04-26 at
"Question #108267 : Questions : VM" (see https://answers.launchpad.net/vm/+quest
ion/108267) by Benjamin L. Russell on Tuesday, May 17, 2011, at 19:53.
< ;     (signal-process (process-id process) 'SIGALRM)
---
>       ; (signal-process (process-id process) 'SIGALRM)
219,220c219
<         ;; Modified based on a suggestion by Uday Reddy posted on 2010-04-26 a
t "Question #108267 : Questions : VM" (see https://answers.launchpad.net/vm/+que
stion/108267) by Benjamin L. Russell on Tuesday, May 17, 2011, at 19:53.
< ;       (signal-process (process-id process) 'SIGALRM)
---
>         ; (signal-process (process-id process) 'SIGALRM)
245,249c244,246
<     ;; Modified based on a suggestion by Uday Reddy posted on 2010-04-26 at "Q
uestion #108267 : Questions : VM" (see https://answers.launchpad.net/vm/+questio
n/108267) by Benjamin L. Russell on Tuesday, May 17, 2011, at 19:53.
< ;    (signal-process (process-id process) 'SIGALRM)
<     (call-process starttls-kill-program nil nil nil
<                 "-ALRM" (format "%d" (process-id process)))
<   ))
---
>     ; (signal-process (process-id process) 'SIGALRM)))
>       (call-process starttls-kill-program nil nil nil
>                     "-ALRM" (format "%d" (process-id process)))))
259c256
<   (message "Opening STARTTLS connection to `%s:%s'..." host port)
---
>   (message "Opening STARTTLS connection to `%s'..." host)
284,285c281,282
<     (message "Opening STARTTLS connection to `%s:%s'...%s"
<            host port (if done "done" "failed"))
---
>     (message "Opening STARTTLS connection to `%s'...%s"
>            host (if done "done" "failed"))
305d301
<     (message "Opening STARTTLS connection to `%s:%s'" host (format "%s" port))

314,326d309
< (defun starttls-any-program-available ()
<   (let ((program (if starttls-use-gnutls
<                    starttls-gnutls-program
<                  starttls-program)))
<     (condition-case ()
<       (progn
<         (call-process program)
<         program)
<       (error (progn
<              (message "No STARTTLS program was available (tried '%s')"
<                       program)
<              nil)))))
<
329,330c312,313
< ;; arch-tag: 648b3bd8-63bd-47f5-904c-7c819aea2297
< ;;; starttls.el ends here
---
> ;;; arch-tag: 648b3bd8-63bd-47f5-904c-7c819aea2297
> ;;; starttls.el ends here
\ No newline at end of file
----- inserted portion ends immediately before this line -----

-- Benjamin L. Russell

--- On Thu, 6/30/11, Lars Magne Ingebrigtsen <larsi@gnus.org> wrote:

> From: Lars Magne Ingebrigtsen <larsi@gnus.org>
> Subject: Re: bug#8689: 23.3; Gnus v5.13 freezes upon invocation of default STARTTLS in SMTP in GNU Emacs 23.3.1 (i386-mingw-nt5.1.2600) on Windows XP Professional, Service Pack 3
> To: "Benjamin L. Russell" <DekuDekuplex@Yahoo.com>
> Cc: 8689@debbugs.gnu.org
> Date: Thursday, June 30, 2011, 8:19 AM
> DekuDekuplex@Yahoo.com
> (Benjamin L. Russell) writes:
> 
> > Previously, I had thought that the default STARTTLS
> configuration file
> > (C:\emacs\emacs-23.3\lisp\gnus\starttls.el) worked
> when invoking the
> > STARTTLS file in sending a message via the SMTP
> protocol; however,
> > yesterday I discovered that apparently my GNU Emacs
> 23.3.1 installation
> > had been using a modified STARTTLS configuration file
> from the older GNU
> > Emacs 23.2.1 version within the same C:\emacs
> directory when Gnus
> > started freezing every time in SMTP upon invocation of
> STARTTLS
> > immediately after I moved the older versions of Emacs
> to a different
> > directory.
> 
> What are the differences between the STARTTLS configuration
> files in the
> two Emacs 23.x versions?
> 
> -- 
> (domestic pets only, the antidote for overdose, milk.)
>   bloggy blog http://lars.ingebrigtsen.no/
>





  reply	other threads:[~2011-06-30 14:59 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-05-18  1:15 bug#8689: 23.3; Gnus v5.13 freezes upon invocation of default STARTTLS in SMTP in GNU Emacs 23.3.1 (i386-mingw-nt5.1.2600) on Windows XP Professional, Service Pack 3 Benjamin L. Russell
2011-05-30 17:11 ` Lars Magne Ingebrigtsen
2011-06-29 23:19 ` Lars Magne Ingebrigtsen
2011-06-30 14:59   ` Benjamin L. Russell [this message]
2011-06-30 16:40     ` Lars Magne Ingebrigtsen
2011-06-30 17:51       ` Benjamin L. Russell
     [not found] ` <mailman.774.1309456334.785.bug-gnu-emacs@gnu.org>
2011-06-30 18:52   ` Lars Magne Ingebrigtsen
2011-06-30 20:09     ` Benjamin L. Russell
2011-06-30 20:12       ` Lars Magne Ingebrigtsen
2013-07-06 18:17         ` Lars Ingebrigtsen

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.gnu.org/software/emacs/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1309445961.60175.YahooMailClassic@web32006.mail.mud.yahoo.com \
    --to=dekudekuplex@yahoo.com \
    --cc=8689@debbugs.gnu.org \
    --cc=larsi@gnus.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).