From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/61973 Path: news.gmane.org!not-for-mail From: Katsumi Yamaoka Newsgroups: gmane.emacs.gnus.general Subject: Re: select-message-coding-system Date: Tue, 14 Feb 2006 08:11:49 +0900 Organization: Emacsen advocacy group Message-ID: References: <1139856765.13953.2.camel@localhost.localdomain> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 X-Trace: sea.gmane.org 1139872419 31460 80.91.229.2 (13 Feb 2006 23:13:39 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Mon, 13 Feb 2006 23:13:39 +0000 (UTC) Original-X-From: ding-owner+m10500@lists.math.uh.edu Tue Feb 14 00:13:29 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 1F8msS-0008Ns-7c for ding-account@gmane.org; Tue, 14 Feb 2006 00:13:04 +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 1F8msO-0000vM-00; Mon, 13 Feb 2006 17:13:00 -0600 Original-Received: from nas02.math.uh.edu ([129.7.128.40]) by malifon.math.uh.edu with esmtp (Exim 3.20 #1) id 1F8mrS-0000vG-00 for ding@lists.math.uh.edu; Mon, 13 Feb 2006 17:12:02 -0600 Original-Received: from quimby.gnus.org ([80.91.224.244]) by nas02.math.uh.edu with esmtp (Exim 4.52) id 1F8mrR-000294-Ax for ding@lists.math.uh.edu; Mon, 13 Feb 2006 17:12:02 -0600 Original-Received: from washington.hostforweb.net ([66.225.201.13]) by quimby.gnus.org with esmtp (Exim 3.35 #1 (Debian)) id 1F8mrQ-0002YE-00 for ; Tue, 14 Feb 2006 00:12:00 +0100 Original-Received: from [205.234.185.198] (port=33252 helo=mail.jpl.org) by washington.hostforweb.net with esmtpa (Exim 4.52) id 1F8muU-0002we-LW for ding@gnus.org; Mon, 13 Feb 2006 17:15:11 -0600 Original-To: ding@gnus.org X-Face: #kKnN,xUnmKia.'[pp`;Omh}odZK)?7wQSl"4o04=EixTF+V[""w~iNbM9ZL+.b*_CxUmFk B#Fu[*?MZZH@IkN:!"\w%I_zt>[$nm7nQosZ<3eu;B:$Q_:p!',P.c0-_Cy[dz4oIpw0ESA^D*1Lw= L&i*6&( User-Agent: Gnus/5.110004 (No Gnus v0.4) XEmacs/21.4.19 (linux) Cancel-Lock: sha1:S6So9YaBHLgb6hD+sAB9nn73L1k= X-Hashcash: 1:20:060213:ding@gnus.org::HCnkk2iIKfZljE1G:00000FbE X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - washington.hostforweb.net X-AntiAbuse: Original Domain - gnus.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - jpl.org X-Source: X-Source-Args: X-Source-Dir: X-Spam-Score: -1.8 (-) Precedence: bulk Original-Sender: ding-owner@lists.math.uh.edu Xref: news.gmane.org gmane.emacs.gnus.general:61973 Archived-At: >>>>> In <1139856765.13953.2.camel@localhost.localdomain> Norbert Koch wrote: > Vitals: > (emacs-version) > "SXEmacs: steve@sxemacs.org--2006/sxemacs--main--22.1.4--patch-28, built > Mon Ja\n 23 09:49:34 2006 on arafel" > (gnus-version) > "No Gnus v0.4" > I just got this error message: > Symbol's function definition is void: select-message-coding-system > Sending via mail... > Is there something I've got to set up? You seem to use contrib/smtpmail.el which uses that function. In Emacs, it is defined in mule-cmds.el but is very Emacs-specific and is probably hard to implement in XEmacs. The function seems to be useful only when text which is not encoded is passed to smtpmail-send-it. However, Gnus always encode text before sending, so I think you may simply void it. (defalias 'select-message-coding-system 'ignore) In addition to this, I need to use the following to use that version of smtpmail.el with XEmacs 21.4.19. (setq mail-aliases nil) (defalias 'multibyte-string-p 'ignore)