From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.user/3128 Path: news.gmane.org!not-for-mail From: nurullah_akkaya@yahoo.com (Nurullah Akkaya) Newsgroups: gmane.emacs.gnus.user Subject: gnus and smtp autohentication Date: 27 Oct 2003 23:01:15 -0800 Organization: http://groups.google.com Message-ID: NNTP-Posting-Host: main.gmane.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit X-Trace: sea.gmane.org 1138669329 17716 80.91.229.2 (31 Jan 2006 01:02:09 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Tue, 31 Jan 2006 01:02:09 +0000 (UTC) Original-X-From: nobody Tue Jan 17 17:31:44 2006 Original-Path: quimby.gnus.org!newsfeed1.e.nsc.no!nsc.no!nextra.com!news.tele.dk!news.tele.dk!small.news.tele.dk!newsfeed.icl.net!newsfeed.fjserv.net!news.maxwell.syr.edu!postnews1.google.com!not-for-mail Original-Newsgroups: gnu.emacs.gnus Original-NNTP-Posting-Host: 68.62.174.146 Original-X-Trace: posting.google.com 1067324475 18962 127.0.0.1 (28 Oct 2003 07:01:15 GMT) Original-X-Complaints-To: groups-abuse@google.com Original-NNTP-Posting-Date: Tue, 28 Oct 2003 07:01:15 +0000 (UTC) Original-Xref: bridgekeeper.physik.uni-ulm.de gnus-emacs-gnus:3269 Original-Lines: 12 X-Gnus-Article-Number: 3269 Tue Jan 17 17:31:44 2006 Xref: news.gmane.org gmane.emacs.gnus.user:3128 Archived-At: i use yahoo pop mail and yahoo's SMTP server requires authentication i am using the code below to send mail but when i try to send mail emacs freezes and i can not send mail. how do you send mail trough a SMTP server that requires authentication... (setq send-mail-function 'smtpmail-send-it) (setq message-send-mail-function 'smtpmail-send-it) (setq smtpmail-default-smtp-server "smtp.mail.yahoo.com") (setq smtpmail-auth-credentials '(("smtp.mail.yahoo.com" 25 "username" "password"))) why this does not work?