Gnus development mailing list
 help / color / mirror / Atom feed
From: Mark Milhollan <mlm@attglobal.net>
Subject: Re: Spam spam spam spam spam
Date: 31 Mar 2002 02:07:35 GMT	[thread overview]
Message-ID: <mlm+m1k7rttt54@attglobal.net> (raw)
In-Reply-To: <m33cyhfwkt.fsf@quimbies.gnus.org>

Lars Magne Ingebrigtsen <larsi@gnus.org> writes:

>Anyway, I've now implemented DNS lookups natively.  (You need CVS
>Emacs.)  

I won't ask about EDNS0 or fall back to TCP (especially if the result via
UDP is truncated) or DNSSEC, since they are unlikely to be necessary for
DNSBL purposes (so far).

>People with Emacsen that doesn't have that will probably have
>to substitute with some external program, which will probably be
>somewhat slow...

The rblcheck program, if available, would be the nominal alternative ...

,----[ C-u M-! rblcheck -h RET ]
| rblcheck 1.5
| Copyright (C) 1997, 1998, 1999, 2000, 2001 Edward S. Marshall
| Usage: ./rblcheck [-qtlcvh?] [-s <service>] <address> [ <address> ... ]
| 
|     -q           Quiet mode; no output
|     -t           Print a TXT record, if any
|     -m           Stop checking after first address match in any list
|     -l           List default RBL services to check
|     -c           Clear the current list of RBL services
|     -s <service> Add a new service to the RBL services list
|     -h, -?       Display this help message
|     -v           Display version information
|     <address>    An IP address to look up; specify `-' to read multiple
|                  addresses from standard input.
`----

,----[ C-u M-! rblcheck -m -c -s relays.osirusoft.com 127.0.0.1 RET ]
| 127.0.0.1 not RBL filtered by relays.osirusoft.com
`----

,----[ C-u M-! rblcheck -m -c -s relays.osirusoft.com 127.0.0.2 RET ]
| 127.0.0.2 RBL filtered by relays.osirusoft.com
`----

Other alternative programs would be host, dig or nslookup, all of which
require address octet reversal ...

,----[ C-u M-! host -t any 1.0.0.127.relays.osirusoft.com RET ]
| 1.0.0.127.relays.osirusoft.com does not exist (Authoritative answer)
`----

,----[ C-u M-! host -t any 2.0.0.127.relays.osirusoft.com RET ]
| 2.0.0.127.relays.osirusoft.com	A	127.0.0.4
| 2.0.0.127.relays.osirusoft.com	A	127.0.0.2
| 2.0.0.127.relays.osirusoft.com	A	127.0.0.6
`----

,----[ C-u M-! dig 1.0.0.127.relays.osirusoft.com any +pfmin RET ]
| ;; res options: init recurs defnam dnsrch
| ;; got answer:
| ;; ->>HEADER<<- opcode: QUERY, status: NXDOMAIN, id: 57324
| ;; QUERY: 1, ANSWER: 0, AUTHORITY: 0, ADDITIONAL: 0
| ;; QUERY SECTION:
| ;;	1.0.0.127.relays.osirusoft.com, type = ANY, class = IN
`----

,----[ C-u M-! dig 2.0.0.127.relays.osirusoft.com any +pfmin RET ]
| ;; res options: init recurs defnam dnsrch
| ;; got answer:
| ;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 37513
| ;; QUERY: 1, ANSWER: 3, AUTHORITY: 0, ADDITIONAL: 0
| ;; QUERY SECTION:
| ;;	2.0.0.127.relays.osirusoft.com, type = ANY, class = IN
| 
| ;; ANSWER SECTION:
| 2.0.0.127.relays.osirusoft.com.  11h37m50s IN A  127.0.0.4
| 2.0.0.127.relays.osirusoft.com.  11h37m50s IN A  127.0.0.2
| 2.0.0.127.relays.osirusoft.com.  11h37m50s IN A  127.0.0.6
`----

,----[ C-u M-! nslookup -q=any 1.0.0.127.relays.osirusoft.com RET ]
| *** localhost can't find 1.0.0.127.relays.osirusoft.com: Unspecified error
| Server:  localhost
| Address:  127.0.0.1
`----

,----[ C-u M-! nslookup -q=any 2.0.0.127.relays.osirusoft.com RET ]
| Server:  localhost
| Address:  127.0.0.1
| 
| Non-authoritative answer:
| 2.0.0.127.relays.osirusoft.com	internet address = 127.0.0.4
| 2.0.0.127.relays.osirusoft.com	internet address = 127.0.0.2
| 2.0.0.127.relays.osirusoft.com	internet address = 127.0.0.6
`----


/mark



  parent reply	other threads:[~2002-03-31  2:07 UTC|newest]

Thread overview: 71+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2002-03-30 15:33 Lars Magne Ingebrigtsen
2002-03-30 15:59 ` Lars Magne Ingebrigtsen
2002-04-01 14:44   ` NAGY Andras
2002-04-05 20:01     ` Ted Zlatanov
2002-04-05 21:41       ` Kai Großjohann
2002-04-05 22:27         ` Derrell.Lipman
2002-04-09 17:44           ` Toby Speight
2002-04-05 21:42       ` Jon Ericson
2002-04-05 22:59         ` Ted Zlatanov
2002-04-02 16:31   ` Ted Zlatanov
2002-04-02 19:52     ` Lars Magne Ingebrigtsen
2002-04-02 22:06       ` Ted Zlatanov
2002-04-05 19:33         ` Ted Zlatanov
2002-03-30 16:09 ` Robin S. Socha
2002-03-30 16:32   ` Lars Magne Ingebrigtsen
2002-03-30 16:56     ` Lloyd Zusman
2002-03-30 17:05       ` Lars Magne Ingebrigtsen
2002-03-30 18:27         ` Lloyd Zusman
2002-04-01 14:46       ` NAGY Andras
2002-04-01 15:11         ` Lloyd Zusman
2002-03-30 17:30     ` Robin S. Socha
2002-03-30 17:34       ` Lars Magne Ingebrigtsen
2002-03-30 18:27         ` Robin S. Socha
2002-03-31 22:00     ` Stainless Steel Rat
2002-03-30 16:33   ` Lars Magne Ingebrigtsen
2002-03-30 16:43   ` Henrik Enberg
2002-03-30 16:53     ` Robin S. Socha
2002-03-30 17:35       ` Henrik Enberg
2002-03-30 17:58         ` Robin S. Socha
2002-03-30 18:29           ` Lars Magne Ingebrigtsen
2002-03-30 18:52             ` Harry Putnam
2002-03-30 19:37         ` Jason R. Mastaler
2002-03-30 23:46           ` Lars Magne Ingebrigtsen
2002-03-31  0:38             ` Jason R. Mastaler
2002-04-01 14:07               ` Lloyd Zusman
2002-04-04  3:28                 ` news
2002-03-31  2:07             ` Mark Milhollan [this message]
2003-01-01 21:06               ` Lars Magne Ingebrigtsen
2003-01-02 19:02               ` Simon Josefsson
2002-03-30 16:34 ` Henrik Enberg
2002-03-30 16:45   ` Lars Magne Ingebrigtsen
2002-03-30 16:52     ` Lars Magne Ingebrigtsen
2002-03-30 17:45     ` Kai Großjohann
2002-03-30 18:29       ` Lars Magne Ingebrigtsen
2002-03-30 19:28       ` Lars Magne Ingebrigtsen
2002-03-31  1:39         ` Paul Jarc
2002-03-31  1:45           ` Lars Magne Ingebrigtsen
2002-03-31  1:48             ` Paul Jarc
2002-03-31  1:57               ` Lars Magne Ingebrigtsen
2002-03-31 15:23                 ` Lars Magne Ingebrigtsen
2002-03-31 16:20                   ` Romain FRANCOISE
2002-03-31 18:19                   ` Russ Allbery
2002-04-02  7:09                     ` Michel Schinz
2002-04-03  5:10                       ` Russ Allbery
2002-04-03 13:50                         ` Frank Schmitt
2002-03-31  1:31 ` Daniel Pittman
2003-01-01 21:05   ` Lars Magne Ingebrigtsen
2002-03-31 15:34 ` Fabien Penso
2002-03-31 15:50   ` Lars Magne Ingebrigtsen
2002-03-31 16:06     ` Fabien Penso
2002-03-31 18:11     ` Russ Allbery
2002-03-31 18:31       ` Lars Magne Ingebrigtsen
2002-04-01 17:22       ` Paul Jarc
2002-04-01 19:25         ` Lars Magne Ingebrigtsen
2002-04-01 19:34           ` Paul Jarc
2002-04-01 18:22 ` Chris Shenton
2002-04-13 22:49 ` John H Palmieri
2002-04-13 23:00   ` Nevin Kapur
2002-04-14  0:04   ` Stainless Steel Rat
2002-04-14  0:57   ` Bill White
2002-04-21  3:38   ` Harry Putnam

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=mlm+m1k7rttt54@attglobal.net \
    --to=mlm@attglobal.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).