comparison docs/noffle.conf.5 @ 249:0340b9c17edc noffle

[svn] *** empty log message ***
author mirkol
date Tue, 14 May 2002 15:25:45 +0100
parents a16ee4b00b66
children c02c4eb95f95
comparison
equal deleted inserted replaced
248:cd022deb8390 249:0340b9c17edc
1 .TH noffle.conf 5 1 .TH noffle.conf 5
2 .\" $Id: noffle.conf.5 365 2002-02-08 17:06:47Z bears $ 2 .\" $Id: noffle.conf.5 381 2002-05-14 14:25:45Z mirkol $
3 3
4 .SH NAME 4 .SH NAME
5 noffle.conf \- Configuration file for NOFFLE news server 5 noffle.conf \- Configuration file for NOFFLE news server
6 6
7 .SH DESCRIPTION 7 .SH DESCRIPTION
404 < or = or > 404 < or = or >
405 .IR <number> . 405 .IR <number> .
406 Matches if the number of articles referenced by the article is less 406 Matches if the number of articles referenced by the article is less
407 than, equal to, or greater than the given number. 407 than, equal to, or greater than the given number.
408 .PP 408 .PP
409 .B reference
410 =
411 .IR "<regular expression>" .
412 Matches if one of the message IDs in the reference line matches the
413 given regular expression. See the section on regular expressions below.
414 .PP
409 .B xposts 415 .B xposts
410 < or = or > 416 < or = or >
411 .IR <number> . 417 .IR <number> .
412 Matches if the number of groups the article is posted to is less 418 Matches if the number of groups the article is posted to is less
413 than, equal to, or greater than the given number. 419 than, equal to, or greater than the given number.
414 .PP 420 .PP
421 .B date
422 < or = or >
423 .IR "<date expression>" .
424 Matches if the article is older, from the same day or newer than the
425 given date expression. See the section on date expressions below.
426 .PP
427 .B older
428 =
429 .IR "<date expression>" .
430 Equals
431 .B date <
432 .
433 .PP
434 .B newer
435 =
436 .IR "<date expression>" .
437 Equals
438 .B date >
439 .
440 .PP
415 .B post-status 441 .B post-status
416 = 442 =
417 .IR "mod|yes|no" . 443 .IR "mod|yes|no" .
418 Matches if the current newsgroup is moderated, not moderated or closed. 444 Matches if the current newsgroup is moderated, not moderated or closed.
419 Unlike the 445 Unlike the
445 uses extended POSIX-style regular expressions in its filters. Regular 471 uses extended POSIX-style regular expressions in its filters. Regular
446 expressions are a powerful means of describing patterns that match 472 expressions are a powerful means of describing patterns that match
447 text. A full description is to be found in 473 text. A full description is to be found in
448 .BR regex (7). 474 .BR regex (7).
449 475
476 .SH DATE EXPRESSIONS
477
478 .B NOFFLE
479 uses very simple date expressions. You can use fixed dates in rfc-2822 style
480 or variable dates:
481 .PP
482 .I date="14 May 2002 18:32:50 +0200"
483 matches any article sent up to 24 hours before or after the above fixed date.
484 Please don't forget the timezone specification.
485 .PP
486 .I date>"now+1.5"
487 matches any article newer than 36 hours from the current date.
488 .PP
489 .I date="lastupdate-14"
490 matches any article older than 14 days since the date of the last
491 .B noffle --fetch
492 or
493 .B noffle --query groups
494 from the current newsserver.
495 .PP
496 .I date="invalid"
497 matches any article with an invalid date header.
498 .PP
450 .SH SEE ALSO 499 .SH SEE ALSO
451 500
452 .BR noffle (1) 501 .BR noffle (1)
453 .BR regex (7) 502 .BR regex (7)
454 503