From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: thomasaaron Newsgroups: gmane.emacs.help Subject: Configuring emacs smtp for yahoo Date: Tue, 5 Dec 2006 08:27:00 -0800 (PST) Message-ID: <7702656.post@talk.nabble.com> NNTP-Posting-Host: dough.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Trace: sea.gmane.org 1165349287 12684 80.91.229.10 (5 Dec 2006 20:08:07 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Tue, 5 Dec 2006 20:08:07 +0000 (UTC) Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Tue Dec 05 21:08:07 2006 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by dough.gmane.org with esmtp (Exim 4.50) id 1GrgaE-0002MF-Sb for geh-help-gnu-emacs@m.gmane.org; Tue, 05 Dec 2006 21:08:07 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1GrgaE-0000RH-CW for geh-help-gnu-emacs@m.gmane.org; Tue, 05 Dec 2006 15:08:06 -0500 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Grd8K-0003ln-61 for help-gnu-emacs@gnu.org; Tue, 05 Dec 2006 11:27:04 -0500 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Grd8J-0003kS-92 for Help-gnu-emacs@gnu.org; Tue, 05 Dec 2006 11:27:03 -0500 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Grd8J-0003k9-07 for Help-gnu-emacs@gnu.org; Tue, 05 Dec 2006 11:27:03 -0500 Original-Received: from [72.21.53.35] (helo=talk.nabble.com) by monty-python.gnu.org with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA:32) (Exim 4.52) id 1Grd8I-0006A0-Ma for Help-gnu-emacs@gnu.org; Tue, 05 Dec 2006 11:27:03 -0500 Original-Received: from [72.21.53.38] (helo=jubjub.nabble.com) by talk.nabble.com with esmtp (Exim 4.50) id 1Grd8G-0005J9-Uw for Help-gnu-emacs@gnu.org; Tue, 05 Dec 2006 08:27:00 -0800 Original-To: Help-gnu-emacs@gnu.org X-Nabble-From: copy@tbaaron.com X-Mailman-Approved-At: Tue, 05 Dec 2006 15:06:35 -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:39267 Archived-At: I'm trying to configure emacs to send mail through my yahoo smtp account. I've got the yahoo pop connection working fine, but the smtp won't authorize the connection. I've googled and wiki-ed the crap out of it, and this is what I've managed thus far in my .emacs file. I'm using ubuntu linux, by the way. Any ideas? Thanks in advance for your help. Best, Tom Aaron (autoload 'vm "vm" "Start VM on your primary inbox." t) (autoload 'vm-other-frame "vm" "Like `vm' but starts in another frame." t) (autoload 'vm-visit-folder "vm" "Start VM on an arbitrary folder." t) (autoload 'vm-visit-virtual-folder "vm" "Visit a VM virtual folder." t) (autoload 'vm-mode "vm" "Run VM major mode on a buffer" t) (autoload 'vm-mail "vm" "Send a mail message using VM." t) (autoload 'vm-submit-bug-report "vm" "Send a bug report about VM." t) (setq user-full-name "Thomas Aaron" mail-from-style 'angles user-mail-address "copy@tbaaron.com" mail-default-reply-to "copy@tbaaron.com") (setq vm-mutable-windows t vm-mutable-frames nil) (setq vm-pop-folder-alist '( ("pop:pop.mail.yahoo.com:110:pass:MY_USERNAME:MY_PASSWORD" "work") )) ;; Use W3M to read HTML email (require 'w3m-load) (setq vm-mime-use-w3-for-text/html nil) (setq vm-url-browser 'w3m) (load "w3m") (setq w3m-input-coding-system 'utf-8 w3m-output-coding-system 'utf-8) (setq send-mail-function 'smtpmail-send-it) ; if you use `mail' (setq message-send-mail-function 'smtpmail-send-it) ; if you use message/Gnus (setq smtpmail-default-smtp-server "smtp.mail.yahoo.com") ; set before loading library (setq smtpmail-local-domain "smtp.mail.yahoo.com") (setq smtpmail-sendto-domain "smtp.mail.yahoo.com") (setq smtpmail-debug-info t) ; only to debug problems (setq smtpmail-auth-credentials ; or use ~/.authinfo '(("smtp.mail.yahoo.com" 25 "MY_USERNAME" "MY_PASSWORD"))) (load-library "smtpmail") -- View this message in context: http://www.nabble.com/Configuring-emacs-smtp-for-yahoo-tf2762702.html#a7702656 Sent from the Emacs - Help mailing list archive at Nabble.com.