From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.user/16757 Path: news.gmane.org!not-for-mail From: Steven Arntson Newsgroups: gmane.emacs.gnus.user Subject: sending mail Date: Tue, 11 Mar 2014 19:58:43 -0700 Message-ID: <87vbvkm8bg.fsf@stevenarntson.com> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1394593509 11534 80.91.229.3 (12 Mar 2014 03:05:09 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Wed, 12 Mar 2014 03:05:09 +0000 (UTC) To: info-gnus-english@gnu.org Original-X-From: info-gnus-english-bounces+gegu-info-gnus-english=m.gmane.org@gnu.org Wed Mar 12 04:05:18 2014 Return-path: Envelope-to: gegu-info-gnus-english@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1WNZTp-0005ju-VQ for gegu-info-gnus-english@m.gmane.org; Wed, 12 Mar 2014 04:05:18 +0100 Original-Received: from localhost ([::1]:58337 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WNZTp-0008H6-GL for gegu-info-gnus-english@m.gmane.org; Tue, 11 Mar 2014 23:05:17 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:38775) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WNZTi-00088i-F7 for info-gnus-english@gnu.org; Tue, 11 Mar 2014 23:05:15 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WNZTd-0005wj-Ce for info-gnus-english@gnu.org; Tue, 11 Mar 2014 23:05:10 -0400 Original-Received: from plane.gmane.org ([80.91.229.3]:49864) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WNZTd-0005uz-5h for info-gnus-english@gnu.org; Tue, 11 Mar 2014 23:05:05 -0400 Original-Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1WNZTc-0005bL-0u for info-gnus-english@gnu.org; Wed, 12 Mar 2014 04:05:04 +0100 Original-Received: from 97-126-85-108.tukw.qwest.net ([97.126.85.108]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 12 Mar 2014 04:05:04 +0100 Original-Received: from steven by 97-126-85-108.tukw.qwest.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 12 Mar 2014 04:05:04 +0100 X-Injected-Via-Gmane: http://gmane.org/ Original-Lines: 27 Original-X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: 97-126-85-108.tukw.qwest.net User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3 (gnu/linux) Cancel-Lock: sha1:Mmf6PLt32oy0CV0DzNx9h85c39Y= X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 80.91.229.3 X-BeenThere: info-gnus-english@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Announcements and discussions for GNUS, the GNU Emacs Usenet newsreader \(in English\)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: info-gnus-english-bounces+gegu-info-gnus-english=m.gmane.org@gnu.org Original-Sender: info-gnus-english-bounces+gegu-info-gnus-english=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.gnus.user:16757 Archived-At: I'm a beginning user of gnus, trying to use it to send emails, with the command "m." I compose, and then send with C-c C-c, and it looks like it's working, but then the system hangs and times out. I don't know what I'm doing, and am not too familiar with elisp beyond cutting and pasting code from the emacswiki. I'd very much appreciate any help! Here's my .gnus.el, anonymized: ;; My Gnus init (setq gnus-select-method '(nntp "news.gwene.org")) (add-to-list 'gnus-secondary-select-methods '(nnml "")) (add-to-list 'gnus-secondary-select-methods '(nnmbox "" (nnmbox-mbox-file "~/MAIL") (nnmbox-active-file "~/Mail.active"))) (setq mail-sources '((pop :server "my.usual-server.com" :user "me@mydomain.com"))) (setq send-mail-function 'smtpmail-send-it) (setq message-send-mail-function 'smtpmail-send-it) (setq smtpmail-default-smtp-server "my.usual-server.com") ; needs to be specified before the (require) (require 'smtpmail) (setq smtpmail-local-domain "mydomain.com") (setq smtpmail-sendto-domain "mydomain.com") (setq user-full-name "My Name") (setq user-mail-address (concat "me@" smtpmail-local-domain)) (setq smtpmail-debug-info t) ; only to debug problems