From mboxrd@z Thu Jan 1 00:00:00 1970 X-Msuck: nntp://news.gmane.io/gmane.emacs.gnus.general/36440 Path: main.gmane.org!not-for-mail From: Jesper Harder Newsgroups: gmane.emacs.gnus.general Subject: Re: Sender header? Date: 25 May 2001 23:56:53 +0200 Message-ID: References: <01May23.141128edt.115245@gateway.intersys.com> <01May24.115917edt.115250@gateway.intersys.com> <01May24.143521edt.115214@gateway.intersys.com> <01May24.153439edt.115213@gateway.intersys.com> <01May24.163305edt.115259@gateway.intersys.com> <01May24.172056edt.115272@gateway.intersys.com> NNTP-Posting-Host: coloc-standby.netfonds.no Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: main.gmane.org 1035172023 8585 80.91.224.250 (21 Oct 2002 03:47:03 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Mon, 21 Oct 2002 03:47:03 +0000 (UTC) Return-Path: Original-Received: (qmail 20458 invoked by alias); 25 May 2001 21:59:25 -0000 Original-Received: (qmail 20453 invoked from network); 25 May 2001 21:59:24 -0000 Original-Received: from fe070.worldonline.dk (212.54.64.208) by gnus.org with SMTP; 25 May 2001 21:59:24 -0000 Original-Received: (qmail 31963 invoked by uid 0); 25 May 2001 21:58:56 -0000 Original-Received: from unknown (HELO localhost) (212.54.68.96) by fe070.worldonline.dk with SMTP; 25 May 2001 21:58:56 -0000 Original-Received: from localhost (127.0.0.1) by localhost (127.0.0.1) with esmtp ; Fri, 25 May 2001 23:56:54 +0200 Original-To: ding@gnus.org User-Agent: Gnus/5.090004 (Oort Gnus v0.04) Emacs/20.7 Original-Lines: 31 Xref: main.gmane.org gmane.emacs.gnus.general:36440 X-Report-Spam: http://spam.gmane.org/gmane.emacs.gnus.general:36440 abraham@dina.kvl.dk (Per Abrahamsen) writes: > Russ Allbery writes: > > > (setq message-syntax-checks '((sender . disabled))) > > > > has worked great for years. Hopefully it hasn't been broken in later > > versions of Gnus. It should be the default. > > I agree, Me to. > except that it breaks cancels when using 'gnus-posting-styles'. > Nonetheless, I'd actually prefer disabling sender, and let someone who > cares about 'gnus-posting-styles' fix that. An easy way to fix it would be to use cancel locks instead of the heuristics used in message-cancel-news to determine if you're allowed to cancel. All you need is to replace the checking code in message-cancel-news with: (if (canlock-verify) (error "This article is not yours")) and add this to .gnus (add-hook 'message-header-hook 'canlock-insert-header) (setq canlock-password "hemmeligt") (require 'canlock)