From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/18491 Path: main.gmane.org!not-for-mail From: Colin Rafferty Newsgroups: gmane.emacs.gnus.general Subject: [bug] gnus-ignored-from-addresses set incorrectly Date: 10 Nov 1998 13:44:22 -0500 Sender: owner-ding@hpc.uh.edu Message-ID: NNTP-Posting-Host: coloc-standby.netfonds.no X-Trace: main.gmane.org 1035157005 6415 80.91.224.250 (20 Oct 2002 23:36:45 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sun, 20 Oct 2002 23:36:45 +0000 (UTC) Keywords: user-mail-address,gnus-ignored-from-addresses,gnus-sum Return-Path: Original-Received: from karazm.math.uh.edu (karazm.math.uh.edu [129.7.128.1]) by sclp3.sclp.com (8.8.5/8.8.5) with ESMTP id NAA05111 for ; Tue, 10 Nov 1998 13:45:50 -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.1/8.9.1) with ESMTP id MAB10227; Tue, 10 Nov 1998 12:45:24 -0600 (CST) Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Tue, 10 Nov 1998 12:45:03 -0600 (CST) 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 MAA18825 for ; Tue, 10 Nov 1998 12:44:50 -0600 (CST) Original-Received: from piinbh1.ms.com (firewall-user@piinbh1.ms.com [199.89.64.71]) by sclp3.sclp.com (8.8.5/8.8.5) with ESMTP id NAA05078 for ; Tue, 10 Nov 1998 13:44:43 -0500 (EST) Original-Received: (from uucp@localhost) by piinbh1.ms.com (8.8.6/fw v1.22) id NAA28835 for ; Tue, 10 Nov 1998 13:44:31 -0500 (EST) Original-Received: from unknown(144.14.8.140) by piinbh1.ms.com via smap (4.1) id xma028754; Tue, 10 Nov 98 13:44:23 -0500 Original-Received: from sag3.morgan.com (sag3.morgan.com [144.14.8.198]) by sas1.morgan.com (8.8.5/hub v1.87) with ESMTP id NAA18037 for ; Tue, 10 Nov 1998 13:44:23 -0500 (EST) Original-Received: (from craffert@localhost) by sag3.morgan.com (8.8.5/client v1.15) id SAA14043; Tue, 10 Nov 1998 18:44:22 GMT Original-To: GNUS Mailing List X-Face: ByE+UMAp1klWR3?\RNGx(A-~Ri!YT%C6M!sxoJL+.;9`Q/|+dj7[KR>gGMyV.2qZeot0NI`4\MA^_Qg`F9=+Ox&zaE?Y9dV%F~Xzf';Zyk2Aobs.uu^Ey0_C6^~q';G#$HkA!ZAHXPpG-"*|Dd*Z4U$4y{{aI0c%75}i~Of(jxYtI[uIpYF<*Zoe|\*/ufb X-Y-Zippy: HERE!! Put THIS on!! I'm in CHARGE!! Original-Lines: 25 User-Agent: Gnus/5.070042 (Pterodactyl Gnus v0.42) XEmacs/21.0 (Pyrenean-pre6) Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:18491 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:18491 I just upgraded from 0.40 to 0.42, and the manner in which gnus-ignored-from-addresses breaks on me. It assumes that user-mail-address is non-nil. This is incorrect. 1998-11-10 Colin Rafferty * gnus-sum.el (gnus-ignored-from-addresses): Only quote user-mail-address if non-nil. --- gnus-sum.el~ Sat Nov 7 19:04:33 1998 +++ gnus-sum.el Mon Nov 9 15:21:54 1998 @@ -778,7 +778,7 @@ :group 'gnus-summary :type '(repeat symbol)) -(defcustom gnus-ignored-from-addresses (regexp-quote user-mail-address) +(defcustom gnus-ignored-from-addresses (and user-mail-address (regexp-quote user-mail-address)) "*Regexp of From headers that may be suppressed in favor of To headers." :group 'gnus-summary :type 'regexp) ;; Colin