From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Volkan YAZICI Newsgroups: gmane.emacs.help Subject: Re: SMTP library problem Date: Tue, 4 Mar 2008 22:42:04 -0800 (PST) Organization: http://groups.google.com Message-ID: <15f792c6-08e2-4b52-ab9f-b9d0f1f3b35b@47g2000hsb.googlegroups.com> References: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1204727915 7335 80.91.229.12 (5 Mar 2008 14:38:35 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Wed, 5 Mar 2008 14:38:35 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Wed Mar 05 15:38:52 2008 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 1JWulP-0000Bp-Oi for geh-help-gnu-emacs@m.gmane.org; Wed, 05 Mar 2008 15:38:36 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1JWuks-0007Cr-8c for geh-help-gnu-emacs@m.gmane.org; Wed, 05 Mar 2008 09:38:02 -0500 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!postnews.google.com!47g2000hsb.googlegroups.com!not-for-mail Original-Newsgroups: gnu.emacs.help Original-Lines: 27 Original-NNTP-Posting-Host: 213.139.194.86 Original-X-Trace: posting.google.com 1204699324 32417 127.0.0.1 (5 Mar 2008 06:42:04 GMT) Original-X-Complaints-To: groups-abuse@google.com Original-NNTP-Posting-Date: Wed, 5 Mar 2008 06:42:04 +0000 (UTC) Complaints-To: groups-abuse@google.com Injection-Info: 47g2000hsb.googlegroups.com; posting-host=213.139.194.86; posting-account=xozGQQoAAAD99EQH9srmwM1ajggyokYW User-Agent: G2/1.0 X-HTTP-UserAgent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; InfoPath.2; .NET CLR 1.1.4322; .NET CLR 2.0.50727),gzip(gfe),gzip(gfe) Original-Xref: shelby.stanford.edu gnu.emacs.help:156682 X-Mailman-Approved-At: Wed, 05 Mar 2008 09:37:45 -0500 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:52056 Archived-At: Hi, On 4 Mart, 20:09, "James Long" wrote: > (setq send-mail-function 'smtpmail-send-it) > (setq message-send-mail-function 'smtpmail-send-it) > (setq smtpmail-smtp-server "~server~") > (setq smtpmail-smtp-service ~port~) > (setq smtpmail-starttls-credentials '(("~server~" ~port~ "~user~" "~pass~"))) > (setq smtpmail-debug-info t) > (setq smtpmail-debug-verb t) I'm not sure if it's still related with your problem but... AFAIK, you'll also need to set smtpmail-auth-credentials variable too. (BTW, assuming you configured starttls-gnutls-program and starttls-extra- arguments appropriately.) > I'm sure my credentials, server, and port are correct, and that the > server is fine. I don't get anything in the SMTP trace buffer. I > suppose I should figure out how to use edebug, which I will attempt > later on. I dunno about edebug (I should check it out too), but you can simply get a rough idea about the problem via some kind of strace tool. (Or listen communication going on on related ports via some middleware.) Regards.