From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "Denis Bueno" Newsgroups: gmane.emacs.help,gmane.emacs.windows Subject: Re: [h-e-w] [crosspost] Sending mail with an Exchange server Date: Tue, 26 Jun 2007 09:31:10 -0600 Message-ID: References: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1182871903 5620 80.91.229.12 (26 Jun 2007 15:31:43 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Tue, 26 Jun 2007 15:31:43 +0000 (UTC) To: "Denis Bueno" , "help-emacs-windows@gnu.org" , "help-gnu-emacs@gnu.org" Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Tue Jun 26 17:31:40 2007 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.50) id 1I3D11-0003WD-Tk for geh-help-gnu-emacs@m.gmane.org; Tue, 26 Jun 2007 17:31:40 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1I3D11-0002ZV-CM for geh-help-gnu-emacs@m.gmane.org; Tue, 26 Jun 2007 11:31:39 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1I3D0k-0002Ym-Ga for help-gnu-emacs@gnu.org; Tue, 26 Jun 2007 11:31:22 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1I3D0k-0002YU-3D for help-gnu-emacs@gnu.org; Tue, 26 Jun 2007 11:31:22 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1I3D0h-0002Xl-KF; Tue, 26 Jun 2007 11:31:19 -0400 Original-Received: from mm04snlnto.sandia.gov ([132.175.109.21] helo=sentry.sandia.gov) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1I3D0h-0005Bi-48; Tue, 26 Jun 2007 11:31:19 -0400 Original-Received: from [134.253.164.156] by sentry.sandia.gov with ESMTP (SMTP Relay 01 (Email Firewall v6.3.1)); Tue, 26 Jun 2007 09:31:05 -0600 X-Server-Uuid: 6CEB1540-FE13-491B-9872-FD67060ED864 Original-Received: from ES21SNLNT.srn.sandia.gov ([134.253.164.104]) by ES23SNLNT.srn.sandia.gov with Microsoft SMTPSVC(6.0.3790.3959); Tue, 26 Jun 2007 09:31:05 -0600 Original-Received: from 134.253.112.175 ([134.253.112.175]) by ES21SNLNT.srn.sandia.gov ([134.253.164.116]) with Microsoft Exchange Server HTTP-DAV ; Tue, 26 Jun 2007 15:31:02 +0000 User-Agent: Microsoft-Entourage/11.3.3.061214 Thread-Topic: [h-e-w] [crosspost] Sending mail with an Exchange server Thread-Index: Ace3Owp4SLvhsCMuEdyFtgAX8tQlcQAy/sIs In-Reply-To: X-OriginalArrivalTime: 26 Jun 2007 15:31:05.0585 (UTC) FILETIME=[02DFC610:01C7B807] X-TMWD-Spam-Summary: TS=20070626153109; SEV=2.2.2; DFV=B2007062611; IFV=2.0.4,4.0-9; AIF=B2007062611; RPD=5.02.0125; ENG=IBF; RPDID=7374723D303030312E30413031303230372E34363831333133432E303035332C73733D312C6667733D30; CAT=NONE; CON=NONE X-MMS-Spam-Filter-ID: B2007062611_5.02.0125_4.0-9 X-WSS-ID: 6A9FEEB339S1130504-01-01 X-detected-kernel: Windows 2000 SP4, XP SP1+ 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: , Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:45293 gmane.emacs.windows:3679 Archived-At: On 06/25/2007 09:11, "Denis Bueno" wrote: > I have some customisations of smtpmail that allow me to send mail using > Gmail's SMTP. I'd like to have similar settings that allow me to send mail > using an Exchange server. > > Does anyone have such a setup working for them? How does one do it? Well, SMTP worked. Specifically, requiring 'smtpmail, (setq user-mail-address "" send-mail-function 'smtpmail-send-it message-send-mail-function 'smtpmail-send-it smtpmail-starttls-credentials '(("" "25" nil nil)) smtpmail-auth-credentials (expand-file-name "~/.authinfo") smtpmail-smtp-server "" smtpmail-smtp-service 25 smtpmail-debug-info t smtpmail-debug-verb nil) where "~/.authinfo" looks like: machine port 25 login Also, of course, I had to make sure starttls was installed. -Denis