<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://microformats.org/wiki/index.php?action=history&amp;feed=atom&amp;title=block-list-formats-fr</id>
	<title>block-list-formats-fr - Revision history</title>
	<link rel="self" type="application/atom+xml" href="https://microformats.org/wiki/index.php?action=history&amp;feed=atom&amp;title=block-list-formats-fr"/>
	<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=block-list-formats-fr&amp;action=history"/>
	<updated>2026-05-09T08:31:07Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.38.4</generator>
	<entry>
		<id>https://microformats.org/wiki/index.php?title=block-list-formats-fr&amp;diff=33696&amp;oldid=prev</id>
		<title>ChristopheDucamp: [fr: translated]</title>
		<link rel="alternate" type="text/html" href="https://microformats.org/wiki/index.php?title=block-list-formats-fr&amp;diff=33696&amp;oldid=prev"/>
		<updated>2007-10-28T07:03:01Z</updated>

		<summary type="html">&lt;p&gt;[fr: translated]&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;&amp;lt;h1&amp;gt;formats liste de blocage&amp;lt;/h1&amp;gt;&lt;br /&gt;
{{TOC-right}}&lt;br /&gt;
Précédents essais sur les formats de [[block list-fr|listes de blocage]] formats.  Fait partie de l'effort pour permettre une plus grande [[social network portability-fr|portabilité du réseau social]].&lt;br /&gt;
&lt;br /&gt;
== formats ==&lt;br /&gt;
=== rn kill file === &lt;br /&gt;
Usenet/netnews [http://en.wikipedia.org/wiki/Kill_file kill files]. Pour les détails du kill file implémenté par le programme de lecture de nouvelles &amp;quot;rn&amp;quot;, voir les [http://www.faqs.org/faqs/killfile-faq/ killfile faq].&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&amp;lt;pre&amp;gt;&amp;lt;nowiki&amp;gt;&lt;br /&gt;
Rn and trn&lt;br /&gt;
==========&lt;br /&gt;
5. What is the general syntax of a KILL file entry?&lt;br /&gt;
  The general style for building a kill line is:&lt;br /&gt;
&lt;br /&gt;
		/pattern/modifiers:command&lt;br /&gt;
&lt;br /&gt;
  The &amp;lt;pattern&amp;gt; is the pattern to use to pick articles.  This is a regular&lt;br /&gt;
expression, like those used in grep.  You can use any case in the pattern; &lt;br /&gt;
t won't matter, unless you use a modifier to make rn case-sensitive.&lt;br /&gt;
  The &amp;lt;modifiers&amp;gt; tell rn where to look for the pattern - the subject&lt;br /&gt;
(default), one of the other header lines, or the entire article, as examples&lt;br /&gt;
of the usual modifiers used.&lt;br /&gt;
  The command tells what to do with the article once it's been selected.&lt;br /&gt;
This is usually either to kill it or to mark it unread.&lt;br /&gt;
&lt;br /&gt;
  If no modifier appears before the colon, only the subject line of the&lt;br /&gt;
article is searched.  More than one command can be performed by using&lt;br /&gt;
the style:&lt;br /&gt;
&lt;br /&gt;
		/pattern/modifier:command:command &lt;br /&gt;
&lt;br /&gt;
Thus, for instance, you can use j and = together to see the exact subject&lt;br /&gt;
lines being killed.  (See below for the explanation of j and =.)&lt;br /&gt;
&lt;br /&gt;
6. What are the available modifiers and commands?&lt;br /&gt;
&lt;br /&gt;
  The modifiers and commands are all explained in the rn man page, but here&lt;br /&gt;
are some of them:&lt;br /&gt;
	Modifiers:&lt;br /&gt;
	   a: all, look through the entire article for the pattern&lt;br /&gt;
	   h: look through the header of the article for the pattern&lt;br /&gt;
	   f: look at only the 'From:' header (trn 3.0)&lt;br /&gt;
	   c: Make the pattern case sensitive&lt;br /&gt;
	   H: added in trn 3.1, this expands the f: above to any header&lt;br /&gt;
	Commands:&lt;br /&gt;
	   m   mark as unread&lt;br /&gt;
	   j   mark as read&lt;br /&gt;
	   =   show subject line&lt;br /&gt;
&lt;br /&gt;
...&lt;br /&gt;
7. How do I kill a specific subject?&lt;br /&gt;
&lt;br /&gt;
  The easiest way to kill a subject line is to kill it from within the&lt;br /&gt;
newsgroup.  When the subject line comes up that you want to kill, instead&lt;br /&gt;
of using 'n' to skip that article or 'k' to kill the subject for that &lt;br /&gt;
session, type 'K'.  The subject line will then be entered into your KILL&lt;br /&gt;
file for that group.  If you want to put that line into your global KILL&lt;br /&gt;
file, you'll have to do that yourself.&lt;br /&gt;
&lt;br /&gt;
  To kill a general subject, ie any 'test' messages, put in the pattern:&lt;br /&gt;
&lt;br /&gt;
			/test/:j&lt;br /&gt;
&lt;br /&gt;
This will kill anything with the word 'test' in the subject line.&lt;br /&gt;
&lt;br /&gt;
8. How do I kill postings from a specific person?&lt;br /&gt;
&lt;br /&gt;
  To kill articles from a single poster, you need to know the userid and&lt;br /&gt;
nodename of the poster; for this example we'll use noone@anywhere.all.&lt;br /&gt;
&lt;br /&gt;
		/^From:.*noone@anywhere\.all/h:j&lt;br /&gt;
&lt;br /&gt;
This searches the entire header for any line starting with 'From:', anything&lt;br /&gt;
at all, and then 'noone@anywhere.all' in it.  This is faster than if the&lt;br /&gt;
beginning-of-line character (^) had been left out:&lt;br /&gt;
&lt;br /&gt;
		/From:.*noone@anywhere\.all/h:j&lt;br /&gt;
&lt;br /&gt;
If this were used, something like 'Subject: Re: Articles from:&lt;br /&gt;
noone@anywhere.all' would also get killed.&lt;br /&gt;
&lt;br /&gt;
9. How do I kill articles from a specific site?&lt;br /&gt;
&lt;br /&gt;
  For articles from a particular site, just remove the 'noone' from the&lt;br /&gt;
previous lines, and articles from the machine 'anywhere.all' will be killed.&lt;br /&gt;
So, the line would be:&lt;br /&gt;
&lt;br /&gt;
		/^From:.*@anywhere\.all/h:j&lt;br /&gt;
&lt;br /&gt;
10. How do I kill followups?&lt;br /&gt;
&lt;br /&gt;
  To kill anything that is a followup to any article, use this pattern:&lt;br /&gt;
&lt;br /&gt;
		/Re:/:j&lt;br /&gt;
&lt;br /&gt;
This kills anything with 'Re:' in it.  (This includes articles of the form&lt;br /&gt;
'Subject: X (Was Re: Y)'.)&lt;br /&gt;
&lt;br /&gt;
  If you just want to kill the direct followups, without the changes in&lt;br /&gt;
subject, you have to make it clear where the Re: is in the line:&lt;br /&gt;
&lt;br /&gt;
		/^Subject: Re:/:j&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/nowiki&amp;gt;&amp;lt;/pre&amp;gt;&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== voir aussi ==&lt;br /&gt;
* [[block-list-fr|liste de blocage]]&lt;br /&gt;
* [[block-list-examples-fr|liste de blocage-exemples]]&lt;br /&gt;
* [[block-list-brainstorming-fr|liste de blocage-brainstorming]]&lt;br /&gt;
* [[social-network-portability-fr|portabilité du réseau social]]&lt;/div&gt;</summary>
		<author><name>ChristopheDucamp</name></author>
	</entry>
</feed>