PHWinfo banniere

Titres
PORTAIL ANNUAIRE ARTICLES COMPARATEUR HÉBERGEURS DEVIS FORUMS RÉDUCTEUR D'URL
Précédent   PHWinfo > Forums Hébergement > Forum Logiciels d'hébergement > comp.mail.sendmail > Feature(`anfi/rsdnsbl') - selecting DNSBL checks based on reputation/country
S'inscrire FAQ Membres Recherche Messages du jour Marquer les forums comme lus
comp.mail.sendmail Configuring and using the BSD sendmail agent.

Feature(`anfi/rsdnsbl') - selecting DNSBL checks based on reputation/country

Réponse
 
LinkBack Outils de la discussion
Vieux 02/09/2007, 22h59   #1
Andrzej Adam Filip
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut FEATURE(`anfi/rsdnsbl') - selecting DNSBL checks based on reputation/country

[1: Followup-To set to news:comp.mail.sendmail ]
[2: The code presented should be considered to be ALPHA quality ]

I would like to present FEATURE(`anfi/rsdnsbl.m4') that is supposed to
fine tune set of DNSBL checks based on originating IP address
* reputation (using e.g. l2.apews.org )
* country (using e.g. zz.countries.nerd.dk )

The FEATURE itself does not block anything - it only decides if the
remaining/further DNSBL tests [FEATURE(enhdnsbl) tests] should be
skipped or conducted.

Sample1 - user in Poland:
#v+
dnl import IP addresses used to represent countries in
dnl zz.countries.nerd.dk in form C2_*
FEATURE(`anfi/countries')dnl

dnl first batch of enhdnsbl tests

dnl skip remaning test for PL, DE, UK and FR adresses
FEATURE(`anfi/rsdnsbl',`zz.countries.nerd.dk',`whitelist',`',
C2_PL, C2_DE, C2_UK, C2_FR)dnl

dnl second batch of enhdnsbl tests

dnl do remaning test only for CN and KR, do not test on TMP problems
FEATURE(`anfi/rsdnsbl',`zz.countries.nerd.dk',`blacklist',`t',
C2_CN, C2_KR)dnl

dnl third batch of enhdnsbl tests

#v-

Sample2 - user in Finland:
#v+
dnl import IP addresses used to represent countries in
dnl zz.countries.nerd.dk in form C2_*
FEATURE(`anfi/countries')dnl

dnl first batch of enhdnsbl tests

dnl skip remaning test for FI addresses
FEATURE(`anfi/rsdnsbl',`zz.countries.nerd.dk',`whitelist',`', C2_FI)dnl

dnl second batch of enhdnsbl tests

dnl do remaning test only for addresses listed in APEWS, do not test on TMP problems
FEATURE(`anfi/rsdnsbl',`l2.apews.org',`blacklist',`t')dnl

dnl third batch of enhdnsbl tests

#v

URL(s):
* cf/feature/anfi/rsdnsbl.m4 file:
http://open-sendmail.cvs.sourceforge...nfi/rsdnsbl.m4
* cf/feature/anfi/countries.m4 file:
http://open-sendmail.cvs.sourceforge...i/countries.m4

P.S. Feel free to comment.

--
[pl>en: Andrew] Andrzej Adam Filip : anfi@priv.onet.pl : anfi@xl.wp.pl
Hating the Yankees is as American as pizza pie,
unwed mothers and cheating on your income tax.
-- Mike Royko
  Réponse avec citation
Vieux 03/09/2007, 00h58   #2
Scott Grayban
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: FEATURE(`anfi/rsdnsbl') - selecting DNSBL checks based on reputation/country

Andrzej Adam Filip wrote:
> [1: Followup-To set to news:comp.mail.sendmail ]
> [2: The code presented should be considered to be ALPHA quality ]
>
> I would like to present FEATURE(`anfi/rsdnsbl.m4') that is supposed to
> fine tune set of DNSBL checks based on originating IP address
> * reputation (using e.g. l2.apews.org )
> * country (using e.g. zz.countries.nerd.dk )
>



I would never use apews.org -- they list large blocks and is very unreliable
as a dnsbl. They don't even offer a way to get delisted or even contact them.
They also provide no source of the spam. They just give ambiguous information.

Anyone that uses them for any reason will most likely end up being blocked
themselves.


> The FEATURE itself does not block anything - it only decides if the
> remaining/further DNSBL tests [FEATURE(enhdnsbl) tests] should be
> skipped or conducted.
>
> Sample1 - user in Poland:
> #v+
> dnl import IP addresses used to represent countries in
> dnl zz.countries.nerd.dk in form C2_*
> FEATURE(`anfi/countries')dnl
>
> dnl first batch of enhdnsbl tests
>
> dnl skip remaning test for PL, DE, UK and FR adresses
> FEATURE(`anfi/rsdnsbl',`zz.countries.nerd.dk',`whitelist',`',
> C2_PL, C2_DE, C2_UK, C2_FR)dnl
>
> dnl second batch of enhdnsbl tests
>
> dnl do remaning test only for CN and KR, do not test on TMP problems
> FEATURE(`anfi/rsdnsbl',`zz.countries.nerd.dk',`blacklist',`t',
> C2_CN, C2_KR)dnl
>
> dnl third batch of enhdnsbl tests
>
> #v-
>
> Sample2 - user in Finland:
> #v+
> dnl import IP addresses used to represent countries in
> dnl zz.countries.nerd.dk in form C2_*
> FEATURE(`anfi/countries')dnl
>
> dnl first batch of enhdnsbl tests
>
> dnl skip remaning test for FI addresses
> FEATURE(`anfi/rsdnsbl',`zz.countries.nerd.dk',`whitelist',`', C2_FI)dnl
>
> dnl second batch of enhdnsbl tests
>
> dnl do remaning test only for addresses listed in APEWS, do not test on TMP problems
> FEATURE(`anfi/rsdnsbl',`l2.apews.org',`blacklist',`t')dnl
>
> dnl third batch of enhdnsbl tests
>
> #v
>
> URL(s):
> * cf/feature/anfi/rsdnsbl.m4 file:
> http://open-sendmail.cvs.sourceforge...nfi/rsdnsbl.m4
> * cf/feature/anfi/countries.m4 file:
> http://open-sendmail.cvs.sourceforge...i/countries.m4
>
> P.S. Feel free to comment.
>

  Réponse avec citation
Vieux 03/09/2007, 10h26   #3
Andrzej Filip
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Feature(`anfi/rsdnsbl') - selecting DNSBL checks based on reputation/country

Scott Grayban <sgray...@NOSPAM-gmail.com> wrote:
> Andrzej Adam Filip wrote:
> > [1: Followup-To set to news:comp.mail.sendmail ]
> > [2: The code presented should be considered to be ALPHA quality ]

>
> > I would like to present FEATURE(`anfi/rsdnsbl.m4') that is supposed to
> > fine tune set of DNSBL checks based on originating IP address
> > * reputation (using e.g. l2.apews.org )
> > * country (using e.g. zz.countries.nerd.dk )

>
> I would never use apews.org -- they list large blocks and is very unreliable
> as a dnsbl. They don't even offer a way to get delisted or even contact them.
> They also provide no source of the spam. They just give ambiguous information.
>
> Anyone that uses them for any reason will most likely end up being blocked
> themselves.


Can you read and *understand*? [ I doubt ]

The presented FEATURE should allow for example:
* restricting rdns checks (enforcing closed PTR-A loop) only for nets
listed in APEWS
* use more aggressive DNSBL/DUL lists only for nets listed in APEWS

E.g.I see no good reason to block DUL connections also from every very
high standards ISP merely because low standards ISPes have made DUL
ranges such a nuisance.

P.S.
I do not recommend use of l2.APEWS.org for plain binary blocking
(accept/reject) on any server significantly bigger than a "family
server" *BUT* it does not make APEWS totally useless. l2.APEWS.org
list ~50% of assigned/allocated IP address space, so it can be used to
make life harder for the worse half of the Internet ;-)

  Réponse avec citation
Vieux 03/09/2007, 16h51   #4
Scott Grayban
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: FEATURE(`anfi/rsdnsbl') - selecting DNSBL checks based on reputation/country

Andrzej Filip wrote:
> I do not recommend use of l2.APEWS.org for plain binary blocking
> (accept/reject) on any server significantly bigger than a "family
> server" *BUT* it does not make APEWS totally useless. l2.APEWS.org
> list ~50% of assigned/allocated IP address space, so it can be used to
> make life harder for the worse half of the Internet ;-)
>


Which includes my ISP and *my business IP block* and I have never sent out
spam and that is fair how?

That is why APEWS is junk and useless -- it is run by total a$$tards.
  Réponse avec citation
Vieux 03/09/2007, 22h15   #5
Andrzej Filip
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: FEATURE(`anfi/rsdnsbl') - selecting DNSBL checks based on reputation/country

On Sep 3, 5:51 pm, Scott Grayban <sgray...@NOSPAM-gmail.com> wrote:
> Andrzej Filip wrote:
> > I do not recommend use of l2.APEWS.org for plain binary blocking
> > (accept/reject) on any server significantly bigger than a "family
> > server" *BUT* it does not make APEWS totally useless. l2.APEWS.org
> > list ~50% of assigned/allocated IP address space, so it can be used to
> > make life harder for the worse half of the Internet ;-)

>
> Which includes my ISP and *my business IP block* and I have never sent out
> spam and that is fair how?


IF you ISP can not keep its net clean THEN *YES*
You have not claimed that your ISP net is clean.

> That is why APEWS is junk and useless -- it is run by total a$$tards.


BTW two separate news servers I use do not get/accept postings from
you/your news server.
I has ben forced to reply by google-news.
It is interesting, is not it? :-)


  Réponse avec citation
Vieux 04/09/2007, 01h55   #6
Scott Grayban
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: FEATURE(`anfi/rsdnsbl') - selecting DNSBL checks based on reputation/country

Andrzej Filip wrote:
> BTW two separate news servers I use do not get/accept postings from
> you/your news server.
> I has ben forced to reply by google-news.
> It is interesting, is not it? :-)


Awww let me get my tiny violin out and play - Boo hoo
  Réponse avec citation
Vieux 04/09/2007, 02h47   #7
Res
Aucun Avatar
 
Messages: n/a
Hébergeur:
Par défaut Re: FEATURE(`anfi/rsdnsbl') - selecting DNSBL checks based onreputation/country

On Mon, 3 Sep 2007, Scott Grayban wrote:

>
> Andrzej Filip wrote:
>> BTW two separate news servers I use do not get/accept postings from
>> you/your news server.
>> I has ben forced to reply by google-news.
>> It is interesting, is not it? :-)

>
> Awww let me get my tiny violin out and play - Boo hoo



This type of lame ass comment explains why obviously, so perhaps the apews
listing for once, in your case, just might actually be justified.



--

Cheers
Res

  Réponse avec citation
Réponse


Outils de la discussion

Règles de messages
Vous ne pouvez pas créer de nouvelles discussions
Vous ne pouvez pas envoyer des réponses
Vous ne pouvez pas envoyer des pièces jointes
Vous ne pouvez pas modifier vos messages

Les balises BB sont activées : oui
Les smileys sont activés : oui
La balise [IMG] est activée : oui
Le code HTML peut être employé : non
Trackbacks are oui
Pingbacks are oui
Refbacks are oui


Fuseau horaire GMT +1. Il est actuellement 14h27.


Édité par : vBulletin® version 3.7.3
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 RC5 Tous droits réservés.
Version française #16 par l'association vBulletin francophone
PHWinfo est un site Éducation Sans Frontières ©2000-2008
Ad Management by RedTyger
©Tous droits réservés par les parties respectives
Page generated in 0,20759 seconds with 15 queries