From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: "dsoliver@earthlink.net" Newsgroups: gmane.emacs.help Subject: smtpmail help Date: 30 Jan 2006 09:55:54 -0800 Organization: http://groups.google.com Message-ID: <1138643754.262092.6930@g44g2000cwa.googlegroups.com> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" X-Trace: sea.gmane.org 1138645673 17728 80.91.229.2 (30 Jan 2006 18:27:53 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 30 Jan 2006 18:27:53 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Mon Jan 30 19:27:40 2006 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1F3dkY-00011Z-0Q for geh-help-gnu-emacs@m.gmane.org; Mon, 30 Jan 2006 19:27:38 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1F3dnW-0000zy-6h for geh-help-gnu-emacs@m.gmane.org; Mon, 30 Jan 2006 13:30:42 -0500 Original-Path: shelby.stanford.edu!newsfeed.stanford.edu!postnews.google.com!g44g2000cwa.googlegroups.com!not-for-mail Original-Newsgroups: gnu.emacs.help Original-Lines: 102 Original-NNTP-Posting-Host: 68.190.246.105 Original-X-Trace: posting.google.com 1138643759 5678 127.0.0.1 (30 Jan 2006 17:55:59 GMT) Original-X-Complaints-To: groups-abuse@google.com Original-NNTP-Posting-Date: Mon, 30 Jan 2006 17:55:59 +0000 (UTC) User-Agent: G2/0.2 X-HTTP-UserAgent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.10) Gecko/20050716 Firefox/1.0.6,gzip(gfe),gzip(gfe) Complaints-To: groups-abuse@google.com Injection-Info: g44g2000cwa.googlegroups.com; posting-host=68.190.246.105; posting-account=Mu7y7gwAAAADJ71fYmB0mt2IqYzXiLJh Original-Xref: shelby.stanford.edu gnu.emacs.help:137297 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: , 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:32919 Archived-At: Hi all, I've got myself stuck. I used to use emacs smtpmail on RedHat 9. I've now switched to Slackware 10.2 running the 2.6.15.1 kernel and can no longer send email. Below are the smtp error I'm getting and a copy of my .emacs file. I've changed my actual password to "password" for obvious reasons. I've downloaded and installed gnutls, starttls.el, libcrypt. The .emacs file is the same I used to use in RH9. Does anyone have any ideas what I might try next? 220-pop-sarus.atl.sa.earthlink.net ESMTP Exim 3.36 #10 Mon, 30 Jan 2006 12:31:10 -0500 220-NO UCE. EarthLink does not authorize the use of its computers or network 220 equipment to deliver, accept, transmit, or distribute unsolicited e-mail. EHLO quantumnight.localdomain.earthlink.net 250-pop-sarus.atl.sa.earthlink.net Hello 68-190-246-105.dhcp.rvsd.ca.charter.com [68.190.246.105] 250-SIZE 14680064 250-PIPELINING 250 HELP MAIL FROM: SIZE=112 250 is syntactically correct RCPT TO: 550-EarthLink does not recognize your computer (68.190.246.105) as connecting from an EarthLink connection. If this is in error, please contact technical support. 550 relaying to prohibited by administrator QUIT 221 pop-sarus.atl.sa.earthlink.net closing connection ---------------------------- .emaccs file: ; -*- mode: emacs-lisp -*- ;; Set up the keyboard so the delete key on both the regular keyboard ;; and the keypad delete the character under the cursor and to the right ;; under X, instead of the default, backspace behavior. (global-set-key [delete] 'delete-char) (global-set-key [kp-delete] 'delete-char) ;; turn on font-lock mode (global-font-lock-mode t) ;; enable visual feedback on selections (setq-default transient-mark-mode t) ;; always end a file with a newline (setq require-final-newline t) ;; stop at the end of the file, not just add lines (setq next-line-add-newlines nil) (when window-system ;; enable wheelmouse support by default (mwheel-install) ;; use extended compound-text coding for X clipboard (set-selection-coding-system 'compound-text-with-extensions)) (setq default-major-mode 'text-mode) (add-hook 'text-mode-hook 'turn-on-auto-fill) (setq user-mail-address "dsoliver@earthlink.net") (setq send-mail-function 'smtpmail-send-it) ;; for 'mail' (setq smtpmail-smtp-server "smtp.earthlink.net") (setq smtpmail-local-domain "earthlink.net") (setq smtpmail-smtp-service 25) (setq smtpmail-debug-info t) (setq smtpmail-auth-credentials '(("smtp.earthlink.net" 25 "dsoliver@earthlink.net" "password"))) (setq smtpmail-starttls-credentials '(("smtp.earthlink.net" 25 "dsoliver@earthlink.net" "password"))) (custom-set-variables ;; custom-set-variables was added by Custom -- don't edit or cut/paste it! ;; Your init file should contain only one such instance. '(browse-url-browser-function (quote browse-url-lynx-emacs)) '(browse-url-generic-program "lynx") '(browse-url-netscape-program "firefox") '(visible-bell t)) (custom-set-faces ;; custom-set-faces was added by Custom -- don't edit or cut/paste it! ;; Your init file should contain only one such instance. )