From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Katsumi Yamaoka Newsgroups: gmane.emacs.help Subject: Re: Authenticated SMTP with RMAIL under Windows Date: Fri, 03 Sep 2004 12:39:55 +0900 Organization: Emacsen advocacy group Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Message-ID: References: NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1094183119 28598 80.91.224.253 (3 Sep 2004 03:45:19 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Fri, 3 Sep 2004 03:45:19 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Fri Sep 03 05:45:13 2004 Return-path: Original-Received: from lists.gnu.org ([199.232.76.165]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1C350j-00008i-00 for ; Fri, 03 Sep 2004 05:45:13 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.33) id 1C355i-0005xx-Pi for geh-help-gnu-emacs@m.gmane.org; Thu, 02 Sep 2004 23:50:22 -0400 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!newsmi-us.news.garr.it!newsmi-eu.news.garr.it!NewsITBone-GARR!fu-berlin.de!uni-berlin.de!not-for-mail Original-Newsgroups: gnu.emacs.help Original-Lines: 21 Original-X-Trace: news.uni-berlin.de hgLmdpDze/I3QVVqDHMdzAIQxI18YAKXS1BsVfus5WPkKRE7k= X-Face: #kKnN,xUnmKia.'[pp`; Omh}odZK)?7wQSl"4o04=EixTF+V[""w~iNbM9ZL+.b*_CxUmFk B#Fu[*?MZZH@IkN:!"\w%I_zt>[$nm7nQosZ<3eu; B:$Q_:p!',P.c0-_Cy[dz4oIpw0ESA^D*1Lw= L&i*6&( User-Agent: Gnus/5.1006 (Gnus v5.10.6) Emacs/21.3.50 (gnu/linux) Cancel-Lock: sha1:yW1X6ekQvnKY9N2jfh8sZeum5tk= Original-Xref: shelby.stanford.edu gnu.emacs.help:125071 Original-To: help-gnu-emacs@gnu.org X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: main.gmane.org gmane.emacs.help:20424 X-Report-Spam: http://spam.gmane.org/gmane.emacs.help:20424 >>>>> In Bob Babcock wrote: > EarthLink says that they will be switching to "Authenticated SMTP (ASMTP)" > later this year. Can emacs rmail do this under Windows 2000? > Alternatively, is there a proxy I can put between emacs and the network to > do this? (I've already got a spam-filtering proxy on the pop side of the > connection.) Thanks for any info. One way is to use smtpmail.el which supports SMTP AUTH and STARTTLS. You can find a hint in the beginning of the lisp/mail/smtpmail.el file. My setting for that at home is as follows: (setq smtpmail-auth-credentials '(("mail.jpl.org" 25 "yamaoka" "password"))) (setq smtpmail-starttls-credentials '(("mail.jpl.org" 25 nil nil))) Unfortunately those features aren't supported by the smtpmail.el module which is contained in the released Emacs versions, and I don't know when the next Emacs is released.