From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/16652 Path: main.gmane.org!not-for-mail From: Michael Welsh Duggan Newsgroups: gmane.emacs.gnus.general Subject: Re: Problems with PGnus 0.13 Date: Thu, 03 Sep 1998 14:23:42 GMT Organization: Carnegie Mellon University : KANTOO Project Sender: owner-ding@hpc.uh.edu Message-ID: References: NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Trace: main.gmane.org 1035155490 29129 80.91.224.250 (20 Oct 2002 23:11:30 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sun, 20 Oct 2002 23:11:30 +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 KAA27843 for ; Thu, 3 Sep 1998 10:29:23 -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 IAF05733; Thu, 3 Sep 1998 08:56:45 -0500 Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Thu, 03 Sep 1998 09:24:11 -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 JAA24417 for ; Thu, 3 Sep 1998 09:23:59 -0500 (CDT) Original-Received: from sunsite.auc.dk (sunsite.auc.dk [130.225.51.30]) by sclp3.sclp.com (8.8.5/8.8.5) with SMTP id KAA27813 for ; Thu, 3 Sep 1998 10:23:51 -0400 (EDT) Original-Received: (qmail 24016 invoked by uid 509); 3 Sep 1998 14:23:47 -0000 Original-To: ding@gnus.org Original-Path: not-for-mail Original-Newsgroups: emacs.ding Original-Lines: 32 X-Newsreader: Pterodactyl Gnus v0.13/Emacs 20.3 Original-NNTP-Posting-Host: 128.2.110.42 Original-X-Trace: sunsite.auc.dk 904832622 128.2.110.42 (Thu, 03 Sep 1998 16:23:42 MET DST) Original-NNTP-Posting-Date: Thu, 03 Sep 1998 16:23:42 MET DST Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:16652 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:16652 David Mentre writes: > I'm using Pterodactyl Gnus 0.13/GNU Emacs 20.3. I've noticed to things: > > 1. I'm using the following hook in my .gnus to add some headers to > standard headers to ignore: > > (add-hook 'gnus-started-hook > '(lambda() > (setq gnus-ignored-headers (append gnus-ignored-headers > '("^X-Content-Length:" > "^X-Mailer:" > "^X-Newsreader:" > "^X-Modappbot-Version:" > "^Mail-Copies-To:" > ))))) > > I get this error message: > Symbol's value as variable is void: gnus-ignored-headers Here's what I have. I looks like I tried to do something similar, and found out I had to move it to the `gnus-article-mode-hook'. (defun md5i-gnus-load-function () (mapcar (lambda (x) (add-to-list 'gnus-ignored-headers x)) '("^X-From-Line" "^Precedence" "^Errors-To" "^Reply-Path" "^Old-" "^X-Pgp"))) (add-hook 'gnus-article-mode-hook 'md5i-gnus-load-function) -- Michael Duggan (md5i@cs.cmu.edu) .