From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/45788 Path: main.gmane.org!not-for-mail From: Karl Kleinpaste Newsgroups: gmane.emacs.gnus.general Subject: Re: B DEL is being treated as expiry? Date: Tue, 23 Jul 2002 12:23:45 -0400 Sender: owner-ding@hpc.uh.edu Message-ID: References: NNTP-Posting-Host: localhost.gmane.org Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" X-Trace: main.gmane.org 1027441482 15466 127.0.0.1 (23 Jul 2002 16:24:42 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Tue, 23 Jul 2002 16:24:42 +0000 (UTC) Return-path: Original-Received: from malifon.math.uh.edu ([129.7.128.13]) by main.gmane.org with esmtp (Exim 3.33 #1 (Debian)) id 17X2Sn-00041L-00 for ; Tue, 23 Jul 2002 18:24:41 +0200 Original-Received: from sina.hpc.uh.edu ([129.7.128.10] ident=lists) by malifon.math.uh.edu with esmtp (Exim 3.20 #1) id 17X2SO-0003Wl-00; Tue, 23 Jul 2002 11:24:16 -0500 Original-Received: by sina.hpc.uh.edu (TLB v0.09a (1.20 tibbs 1996/10/09 22:03:07)); Tue, 23 Jul 2002 11:24:41 -0500 (CDT) Original-Received: from sclp3.sclp.com (qmailr@sclp3.sclp.com [209.196.61.66]) by sina.hpc.uh.edu (8.9.3/8.9.3) with SMTP id LAA21523 for ; Tue, 23 Jul 2002 11:24:30 -0500 (CDT) Original-Received: (qmail 3268 invoked by alias); 23 Jul 2002 16:24:00 -0000 Original-Received: (qmail 3258 invoked from network); 23 Jul 2002 16:23:55 -0000 Original-Received: from mesquite.slip.cs.cmu.edu (HELO cinnamon.vanillaknot.com) (128.2.207.11) by gnus.org with SMTP; 23 Jul 2002 16:23:55 -0000 Original-Received: (from karl@localhost) by cinnamon.vanillaknot.com (8.11.6/8.11.6) id g6NGNjv32109; Tue, 23 Jul 2002 12:23:45 -0400 Original-To: ding@gnus.org X-Face: "5(T0tZd{6}pd~YzBG8O/*EW,.]6]@`m^e;fv65W^Y&=d"M\1H}>T~4_.kcDD.O~y3k)a6 hR;Nmi>9|>Nm${2IpM0^RcUEa\jcq?KOP)C&~x51l~zCHTulL^_T|u0I^kB'z@]{`2YjQu Original-Lines: 7 User-Agent: Gnus/5.090007 (Oort Gnus v0.07) XEmacs/21.4 (Honest Recruiter, i686-pc-linux) Precedence: list X-Majordomo: 1.94.jlt7 Xref: main.gmane.org gmane.emacs.gnus.general:45788 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:45788 --=-=-= prj@po.cwru.edu (Paul Jarc) writes: > That's only because you don't set the nnmail-expiry-target variable. Fine; easily fixed: --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=sum.diff Content-Description: \"consistent\" handling of article deletion --- gnus-sum.el.~1~ Sun Jul 21 08:26:48 2002 +++ gnus-sum.el Tue Jul 23 12:20:21 2002 @@ -8837,9 +8837,7 @@ (error "Couldn't open server")) ;; Compute the list of articles to delete. (let ((articles (sort (copy-sequence (gnus-summary-work-articles n)) '<)) - (nnmail-expiry-target - (or (gnus-group-find-parameter gnus-newsgroup-name 'expiry-target) - nnmail-expiry-target)) + (nnmail-expiry-target 'delete) not-deleted) (if (and gnus-novice-user (not (gnus-yes-or-no-p --=-=-=--