Synch to No Gnus 200509142250.
authoryamaoka <yamaoka>
Wed, 14 Sep 2005 22:59:01 +0000 (22:59 +0000)
committeryamaoka <yamaoka>
Wed, 14 Sep 2005 22:59:01 +0000 (22:59 +0000)
texi/ChangeLog
texi/gnus-ja.texi
texi/gnus.texi

index e825e15..323407d 100644 (file)
@@ -1,3 +1,8 @@
+2005-09-14  Jari Aalto  <jari.aalto@cante.net>
+
+       * gnus.texi (Advanced Scoring Examples): New exmples to teach how
+       to drop off non-answered articles.
+
 2005-09-11  Romain Francoise  <romain@orebokech.com>
 
        * message.texi (Message Headers): Explain what
index e70d103..6dbeb7a 100644 (file)
@@ -20225,6 +20225,19 @@ Redmondo \e$B$,>C$($?7$2<$K$D$$$F=q$$$?$H$-$K%U%)%m!<%"%C%W$7$?$9$Y$F$N?M$O\e(B
  1000)
 @end example
 
+@c TRANSLATEME
+Suppose you're readin ga high volume group and you're only interested
+in replies. The plan is to score down all articles that don't have
+subject that begin with "Re:", "Fw:" or "Fwd:" and then score up all
+parents of articles that have subjects that begin with reply marks.
+
+@example
+((! ("subject" "re:\\|fwd?:" r))
+  -200)
+((1- ("subject" "re:\\|fwd?:" r))
+  200)
+@end example
+
 \e$B2DG=@-$OL58BBg$G$9!#\e(B
 
 @node Advanced Scoring Tips
index cf49eee..8a9b57c 100644 (file)
@@ -20904,8 +20904,19 @@ very interesting:
  1000)
 @end example
 
-The possibilities are endless.
+Suppose you're readin ga high volume group and you're only interested
+in replies. The plan is to score down all articles that don't have
+subject that begin with "Re:", "Fw:" or "Fwd:" and then score up all
+parents of articles that have subjects that begin with reply marks.
 
+@example
+((! ("subject" "re:\\|fwd?:" r))
+  -200)
+((1- ("subject" "re:\\|fwd?:" r))
+  200)
+@end example
+
+The possibilities are endless.
 
 @node Advanced Scoring Tips
 @subsection Advanced Scoring Tips