From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Dan Anderson Newsgroups: gmane.emacs.help Subject: Still having problems with SMTP and Gnus Date: Thu, 27 Nov 2003 02:48:43 GMT Organization: Mathjunkies.com Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Message-ID: NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1069901985 19614 80.91.224.253 (27 Nov 2003 02:59:45 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Thu, 27 Nov 2003 02:59:45 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Thu Nov 27 03:59:41 2003 Return-path: Original-Received: from monty-python.gnu.org ([199.232.76.173]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1APCNZ-0007HZ-00 for ; Thu, 27 Nov 2003 03:59:41 +0100 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.24) id 1APDKl-0003Eo-2C for geh-help-gnu-emacs@m.gmane.org; Wed, 26 Nov 2003 23:00:51 -0500 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!news-spur1.maxwell.syr.edu!news.maxwell.syr.edu!news-rtr.nyroc.rr.com!news-out.nyroc.rr.com!twister.nyroc.rr.com.POSTED!53ab2750!not-for-mail Original-Newsgroups: gnu.emacs.help Original-Lines: 62 User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.3.50 Original-NNTP-Posting-Host: 24.59.76.83 Original-X-Complaints-To: abuse@rr.com Original-X-Trace: twister.nyroc.rr.com 1069901323 24.59.76.83 (Wed, 26 Nov 2003 21:48:43 EST) Original-NNTP-Posting-Date: Wed, 26 Nov 2003 21:48:43 EST Original-Xref: shelby.stanford.edu gnu.emacs.help:118689 Original-To: help-gnu-emacs@gnu.org X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.2 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:14631 X-Report-Spam: http://spam.gmane.org/gmane.emacs.help:14631 I'm trying to set up Gnus so that I can send mail through my SMTP server. I can access the server fine through evolution, and I just upgraded to the newest CVS version of emacs -- fresh as of last night. My .gnus looks like: ,---- | (setq user-mail-address "dan@mathjunkies.com") | (setq user-full-name "Dan Anderson") | (setq message-user-organization "Mathjunkies.com") | (add-hook 'gnus-group-mode-hook 'gnus-topic-mode) | (add-to-list 'gnus-secondary-select-methods | '(nnml "" | (nnml-directory "/home/daniel/nnml") | (get-new-mail t) | (directory-files nnheader-directory-files-safe))) | (setq send-mail-function 'smtpmail-send-it) | (setq message-send-mail-function 'smtpmail-send-it) | (setq smtpmail-smtp-server "mail.server.com") | (setq smtpmail-auth-credentials | '(("server.com" 25 "username" "password"))) | (setq smtpmail-debug-info t) | (setq smtpmail-debug-verb t) `---- And the trace of my SMTP session looks like: ,---- | 220 servername.com ESMTP Sendmail 8.11.6/8.11.6; Wed, 26 Nov 2003 20:42:08 -0600 | EHLO syr-24-59-76-83.twcny.rr.com | 250-servername.com Hello my hostname [my ip], pleased to meet you | 250-ENHANCEDSTATUSCODES | 250-8BITMIME | 250-SIZE | 250-DSN | 250-ONEX | 250-ETRN | 250-XUSR | 250-AUTH LOGIN PLAIN | 250 HELP | ONEX | 250 2.0.0 Only one transaction | XUSR | 250 2.0.0 Initial submission | MAIL FROM: SIZE=368 | 250 2.1.0 ... Sender ok | RCPT TO: | 550 5.7.1 ... Relaying denied | QUIT | 221 2.0.0 servername.com closing connection `---- What am I doing wrong? I really want to use Gnus for SMTP mail. Thanks in advance, Dan