From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/24849 Path: main.gmane.org!not-for-mail From: pahe@daimi.au.dk (Peter von der =?iso-8859-1?q?Ah=E9?=) Newsgroups: gmane.emacs.gnus.general Subject: Re: followup to 'I can't post and article' Date: 27 Aug 1999 20:05:10 +0200 Sender: owner-ding@hpc.uh.edu Message-ID: References: NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Trace: main.gmane.org 1035162346 11001 80.91.224.250 (21 Oct 2002 01:05:46 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 21 Oct 2002 01:05:46 +0000 (UTC) Cc: Lars Magne Ingebrigtsen Return-Path: Original-Received: from bart.math.uh.edu (bart.math.uh.edu [129.7.128.48]) by sclp3.sclp.com (8.8.5/8.8.5) with ESMTP id OAA08172 for ; Fri, 27 Aug 1999 14:06:36 -0400 (EDT) Original-Received: from sina.hpc.uh.edu (lists@Sina.HPC.UH.EDU [129.7.3.5]) by bart.math.uh.edu (8.9.1/8.9.1) with ESMTP id NAB22989; Fri, 27 Aug 1999 13:05:49 -0500 (CDT) Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Fri, 27 Aug 1999 13:06:20 -0500 (CDT) Original-Received: from sclp3.sclp.com (root@sclp3.sclp.com [204.252.123.139]) by sina.hpc.uh.edu (8.9.3/8.9.3) with ESMTP id NAA11184 for ; Fri, 27 Aug 1999 13:06:04 -0500 (CDT) Original-Received: from ufleku.daimi.au.dk (ufleku.daimi.au.dk [130.225.19.182]) by sclp3.sclp.com (8.8.5/8.8.5) with ESMTP id OAA08125; Fri, 27 Aug 1999 14:05:13 -0400 (EDT) Original-Received: (from pahe@localhost) by ufleku.daimi.au.dk (8.9.3/8.8.4) id UAA17438; Fri, 27 Aug 1999 20:05:10 +0200 Original-To: ding@gnus.org X-Attribution: Ahe Original-Lines: 13 User-Agent: Gnus/5.070096 (Pterodactyl Gnus v0.96) Emacs/20.4 Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:24849 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:24849 --=-=-= >>>>> "DAM" == Daniel A Monjar writes: DAM> All is working now. Less than helpful error message though. I was having the same problem earlier today, I have attached a patch, which will save the helpful error message in the minibuffer. Cheers, Peter --=-=-= Content-Type: text/x-patch; charset=iso-8859-1 Content-Disposition: inline; filename=pgnus-0.96.patch Content-Transfer-Encoding: 8bit Content-Description: More helpful error message diff -rc pgnus-0.96.orig/lisp/ChangeLog pgnus-0.96/lisp/ChangeLog *** pgnus-0.96.orig/lisp/ChangeLog Fri Aug 27 15:17:01 1999 --- pgnus-0.96/lisp/ChangeLog Fri Aug 27 19:59:35 1999 *************** *** 1,3 **** --- 1,8 ---- + 1999-08-27 Peter von der Ahé + + * message.el (message-send): More helpful error message if sending + fails + Fri Aug 27 13:17:48 1999 Lars Magne Ingebrigtsen * gnus.el: Pterodactyl Gnus v0.96 is released. diff -rc pgnus-0.96.orig/lisp/message.el pgnus-0.96/lisp/message.el *** pgnus-0.96.orig/lisp/message.el Fri Aug 27 15:17:11 1999 --- pgnus-0.96/lisp/message.el Fri Aug 27 19:56:22 1999 *************** *** 2010,2016 **** (car elem)))) (setq success (funcall (caddr elem) arg))))) (setq sent t))) ! (unless sent (error "No methods specified to send by")) (when (and success sent) (message-do-fcc) --- 2010,2016 ---- (car elem)))) (setq success (funcall (caddr elem) arg))))) (setq sent t))) ! (unless (or sent (not success)) (error "No methods specified to send by")) (when (and success sent) (message-do-fcc) --=-=-= --=-=-=--