From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/34518 Path: main.gmane.org!not-for-mail From: Gregory.Chernov@broadcom.com Newsgroups: gmane.emacs.gnus.general Subject: gnus questions Date: 01 Feb 2001 18:21:39 +0200 Sender: owner-ding@hpc.uh.edu Message-ID: NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1035170430 30834 80.91.224.250 (21 Oct 2002 03:20:30 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 21 Oct 2002 03:20:30 +0000 (UTC) Return-Path: Original-Received: from karazm.math.uh.edu (karazm.math.uh.edu [129.7.128.1]) by mailhost.sclp.com (Postfix) with ESMTP id 78A5AD049D for ; Thu, 1 Feb 2001 11:23:47 -0500 (EST) Original-Received: from sina.hpc.uh.edu (lists@Sina.HPC.UH.EDU [129.7.3.5]) by karazm.math.uh.edu (8.9.3/8.9.3) with ESMTP id KAC06846; Thu, 1 Feb 2001 10:23:37 -0600 (CST) Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Thu, 01 Feb 2001 10:22:48 -0600 (CST) Original-Received: from mailhost.sclp.com (postfix@66-209.196.61.interliant.com [209.196.61.66] (may be forged)) by sina.hpc.uh.edu (8.9.3/8.9.3) with ESMTP id KAA28932 for ; Thu, 1 Feb 2001 10:22:37 -0600 (CST) Original-Received: from dmz.visiontech-dml.com (dmz.visiontech-dml.com [199.203.103.41]) by mailhost.sclp.com (Postfix) with ESMTP id 2132DD049D for ; Thu, 1 Feb 2001 11:23:04 -0500 (EST) Original-Received: from VT-6.visiontech-dml.com (vtnet.visiontech-dml.com [199.203.103.50]) by dmz.visiontech-dml.com (8.10.1/8.10.1) with ESMTP id f11GIgU15003 for ; Thu, 1 Feb 2001 18:18:43 +0200 (IST) Original-Received: (from greg@localhost) by VT-6.visiontech-dml.com (8.8.8+Sun/8.8.8) id SAA08850; Thu, 1 Feb 2001 18:21:39 +0200 (IST) X-Authentication-Warning: VT-6.visiontech.com: greg set sender to greg@visiontech-dml.com using -f Original-To: ding@gnus.org X-Face: $BQhkYA@P?4'\HC,3\g=qvp!^Q#Ivn.L_NF="Ls3/uaDsc0wFDL1JI)b{?xaGA(zhe`y-X^ }(/PF}^}m{.|4zv+u|%|{{^!6N-|^f2:SG#Tn0?I5@6xASR2oT User-Agent: Gnus/5.090001 (Oort Gnus v0.01) XEmacs/21.1 (Biscayne) Precedence: list X-Majordomo: 1.94.jlt7 Original-Lines: 44 Xref: main.gmane.org gmane.emacs.gnus.general:34518 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:34518 Hi, I'm using gnus snapshot 20010119 on Xemacs (non-mule). Saw couple of problems with this version. 1. slashdot. I used following code to browse url in slashdot articles with netscape: (eval-after-load "w3" '(progn (fset 'w3-fetch-orig (symbol-function 'w3-fetch)) (defun w3-fetch (&optional url target) (interactive (list (w3-read-url-with-default))) (if (eq major-mode 'gnus-article-mode) (browse-url-netscape url t) (w3-fetch-orig url target) ) ) )) It's not working now. W3 is used to fetch url's. 2. dejanews. If I repeat dejanews search with the same pattern, no articles is found. I figured that commenting out line: (unless (nnweb-get-hashtb url) in nnweb-dejanews-create-mapping function fixes the problem. Is it gnus bug? 3. I'm using non-mule xemacs and with new version of gnus I just don't understand how to send messages with non-ascii headers. I can't send message with unencoded headers, can't control headers encoding. Only option is iso-8859-1 encoded headers. For now I just copied rfc2047.el from 5.8.4 gnus. Is it intended behavior or I'm miss something? Thanks.