From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/17757 Path: main.gmane.org!not-for-mail From: Mike McEwan Newsgroups: gmane.emacs.gnus.general Subject: [patch] gnus-draft.el Date: 11 Oct 1998 22:28:20 +0100 Sender: owner-ding@hpc.uh.edu Message-ID: NNTP-Posting-Host: coloc-standby.netfonds.no X-Trace: main.gmane.org 1035156400 2565 80.91.224.250 (20 Oct 2002 23:26:40 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sun, 20 Oct 2002 23:26:40 +0000 (UTC) Return-Path: Original-Received: from gizmo.hpc.uh.edu (gizmo.hpc.uh.edu [129.7.102.31]) by sclp3.sclp.com (8.8.5/8.8.5) with ESMTP id RAA26675 for ; Sun, 11 Oct 1998 17:31:13 -0400 (EDT) Original-Received: from sina.hpc.uh.edu (sina.hpc.uh.edu [129.7.3.5]) by gizmo.hpc.uh.edu (8.7.6/8.7.3) with ESMTP id QAF25590; Sun, 11 Oct 1998 16:02:09 -0500 Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Sun, 11 Oct 1998 16:31:08 -0500 (CDT) Original-Received: from sclp3.sclp.com (root@sclp3.sclp.com [209.195.19.139]) by sina.hpc.uh.edu (8.7.3/8.7.3) with ESMTP id QAA18844 for ; Sun, 11 Oct 1998 16:30:59 -0500 (CDT) Original-Received: from post.mail.demon.net (post-11.mail.demon.net [194.217.242.40]) by sclp3.sclp.com (8.8.5/8.8.5) with ESMTP id RAA26660 for ; Sun, 11 Oct 1998 17:30:47 -0400 (EDT) Original-Received: from [158.152.62.156] (helo=lotusland.demon.co.uk) by post.mail.demon.net with smtp (Exim 2.03 #1) id 0zST4c-0001x3-00 for ding@gnus.org; Sun, 11 Oct 1998 21:30:43 +0000 Original-Received: from mike by lotusland.demon.co.uk with local (Exim 2.05 #1) id 0zST4b-0001VT-00 for ding@gnus.org; Sun, 11 Oct 1998 22:30:41 +0100 Original-To: ding@gnus.org User-Agent: Gnus/5.070034 (Pterodactyl Gnus v0.34) XEmacs/21.0 (Finnish Landrace) Original-Lines: 30 Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:17757 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:17757 I found I couldn't send `mail' from the draft group when plugged. Sure enough the ChangeLog told the story. The following does it for me: --- ChangeLog 1998/10/11 17:34:53 1.1.1.1 +++ ChangeLog 1998/10/11 21:26:55 @@ -1,3 +1,8 @@ +1998-10-11 Mike McEwan + + * gnus-draft.el (gnus-draft-send): Don't check the server when + type is `mail'. + Sun Oct 11 02:28:40 1998 Lars Magne Ingebrigtsen * gnus.el: Pterodactyl Gnus v0.34 is released. --- gnus-draft.el 1998/10/11 17:34:53 1.1.1.1 +++ gnus-draft.el 1998/10/11 21:02:33 @@ -135,7 +135,8 @@ (message-remove-header gnus-agent-meta-information-header))) ;; Then we send it. If we have no meta-information, we just send ;; it and let Message figure out how. - (when (and (or (gnus-server-opened method) + (when (and (or (eq type 'mail) ;Don't check server if `mail'. + (gnus-server-opened method) (gnus-open-server method)) (if type (let ((message-this-is-news (eq type 'news)) -- Mike.