From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/61808 Path: news.gmane.org!not-for-mail From: reader@newsguy.com Newsgroups: gmane.emacs.gnus.general Subject: smtp send using odd port Date: Tue, 31 Jan 2006 08:00:23 -0600 Organization: Still searching... Message-ID: <87fyn4xzt4.fsf@newsguy.com> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1138716251 15684 80.91.229.2 (31 Jan 2006 14:04:11 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Tue, 31 Jan 2006 14:04:11 +0000 (UTC) Original-X-From: ding-owner+m10338@lists.math.uh.edu Tue Jan 31 15:04:09 2006 Return-path: Envelope-to: ding-account@gmane.org Original-Received: from malifon.math.uh.edu ([129.7.128.13]) by ciao.gmane.org with esmtp (Exim 4.43) id 1F3w6e-0003Hk-RX for ding-account@gmane.org; Tue, 31 Jan 2006 15:03:41 +0100 Original-Received: from localhost ([127.0.0.1] helo=lists.math.uh.edu ident=lists) by malifon.math.uh.edu with smtp (Exim 3.20 #1) id 1F3w6a-0004Cb-00; Tue, 31 Jan 2006 08:03:36 -0600 Original-Received: from nas01.math.uh.edu ([129.7.128.39]) by malifon.math.uh.edu with esmtp (Exim 3.20 #1) id 1F3w3r-0004CV-00 for ding@lists.math.uh.edu; Tue, 31 Jan 2006 08:00:47 -0600 Original-Received: from quimby.gnus.org ([80.91.224.244]) by nas01.math.uh.edu with esmtp (Exim 4.52) id 1F3w3m-0003S6-Ps for ding@lists.math.uh.edu; Tue, 31 Jan 2006 08:00:47 -0600 Original-Received: from main.gmane.org ([80.91.229.2] helo=ciao.gmane.org) by quimby.gnus.org with esmtp (Exim 3.35 #1 (Debian)) id 1F3w3k-0004HB-00 for ; Tue, 31 Jan 2006 15:00:40 +0100 Original-Received: from list by ciao.gmane.org with local (Exim 4.43) id 1F3w3a-0002PI-RV for ding@gnus.org; Tue, 31 Jan 2006 15:00:30 +0100 Original-Received: from adsl-68-74-77-24.dsl.emhril.ameritech.net ([68.74.77.24]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 31 Jan 2006 15:00:30 +0100 Original-Received: from reader by adsl-68-74-77-24.dsl.emhril.ameritech.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Tue, 31 Jan 2006 15:00:30 +0100 X-Injected-Via-Gmane: http://gmane.org/ Original-To: ding@gnus.org Original-Lines: 19 Original-X-Complaints-To: usenet@sea.gmane.org X-Gmane-NNTP-Posting-Host: adsl-68-74-77-24.dsl.emhril.ameritech.net User-Agent: Gnus/5.110004 (No Gnus v0.4) Emacs/22.0.50 (gnu/linux) Cancel-Lock: sha1:z+EnF4QyMkjT9kqujEjAkIUxVU8= X-Spam-Score: -2.1 (--) Precedence: bulk Original-Sender: ding-owner@lists.math.uh.edu Xref: news.gmane.org gmane.emacs.gnus.general:61808 Archived-At: How can I stipulate an uncommon port for smtp sending. My server uses 8025 instead of the normal 25? And how can I get lots of debug info, especially the full smtp conversation? Gnus code: ;;;;;; Keep this (mail-user-agent) here ;;;;;;;;;;;; (setq mail-user-agent 'gnus-user-agent) ;;; ********* Begin smtp send ************ (setq send-mail-function 'smtpmail-send-it) ; not for Gnus (setq message-send-mail-function 'smtpmail-send-it) ; for Gnus (setq smtpmail-default-smtp-server "smtp.newsguy.com") (setq user-mail-address "reader@newsguy.com") (setq user-full-name "Harry Putnam") (setq smtpmail-local-domain "newsguy.com") (setq smtpmail-sendto-domain "newsguy.com") (setq smtpmail-debug-info t) ; only to debug problems ;; ;;; ********* End smtp send ****************