Hello,
"com" is listed at sc and multi....
Big error.... Many people are complaining here.... 8-(
On Wednesday, July 28, 2004, 4:53:57 AM, David Coulson wrote:
Jose Marcio Martins da Cruz wrote:
"com" is listed at sc and multi....
Big error.... Many people are complaining here.... 8-(
AFAIK, SpamCopURI does not check TLDs - Certainly isn't causing any problems for me.
IIRC Jose is using his own parsing and querying code and not the SpamAssassin programs.
Jeff C.
Jeff Chan wrote:
On Wednesday, July 28, 2004, 4:21:44 AM, Jose Cruz wrote:
...
Thanks for the heads up. I've whitelisted all gtlds.
Will look into how this happened later.
Can you have a list of all gtlds under your hands ? I'll do the same.
So far, I'm checking again my code to be able to to DNS queries. It's OK, but I need some check before tell people to use it.
I hope I'll announce it till the end of the week.
Best,
Jose-Marcio
On Wednesday, July 28, 2004, 5:52:48 AM, Jose Cruz wrote:
Jeff Chan wrote:
On Wednesday, July 28, 2004, 4:21:44 AM, Jose Cruz wrote:
...
Thanks for the heads up. I've whitelisted all gtlds.
Will look into how this happened later.
Can you have a list of all gtlds under your hands ? I'll do the same.
Yes, here is the sed expression
http://spamcheck.freeapp.net/chop-two-level-domains.sed
and the gtlds from it:
http://spamcheck.freeapp.net/whitelists/gtlds.sort
So far, I'm checking again my code to be able to to DNS queries. It's OK, but I need some check before tell people to use it.
I hope I'll announce it till the end of the week.
Best,
Jose-Marcio
Jeff C.
Jeff Chan wrote:
On Wednesday, July 28, 2004, 5:52:48 AM, Jose Cruz wrote:
Jeff Chan wrote:
and the gtlds from it:
It lacks "gov"
on Wed, Jul 28, 2004 at 03:26:33PM +0200, Jose Marcio Martins da Cruz wrote:
Jeff Chan wrote:
On Wednesday, July 28, 2004, 5:52:48 AM, Jose Cruz wrote:
Jeff Chan wrote:
and the gtlds from it:
It lacks "gov"
Here's my list, which includes ccTLDs:
ac ad ae af ag ai am ar arpa at au aw be bf bg bh biz bj bm bn bo br bt by ca cc ch ck cl cn co com cr cy cz de dk dm do ec edu ee eg es fi fj fo fr gi gl gov gr gt hk hn hr hu id ie il in info is it jp ke kr kw ky kz lb li lk lt lu lv ma md mil mk mm mt mu mx my mz na net ng ni nl no np nu nz org pa pe ph pk pl pt py ro ru rw sa se sg si sk su sv th tn to tr tt tv tw ua uk us uy ve vi ws yu za zw
The official list of gTLDs is at: http://www.iana.org/gtld/gtld.htm
For the ccTLDs: http://www.iana.org/cctld/cctld-whois.htm
Regards.
On Wednesday, July 28, 2004, 12:57:03 PM, Mariano Absatz wrote:
The official list of gTLDs is at: http://www.iana.org/gtld/gtld.htm
For the ccTLDs: http://www.iana.org/cctld/cctld-whois.htm
Thanks for the references. IIRC those are what I used in making the SURBL lists of gtlds (less .gov) and cctlds.
Jeff C.
On Wednesday, July 28, 2004, 6:26:33 AM, Jose Cruz wrote:
Jeff Chan wrote:
On Wednesday, July 28, 2004, 5:52:48 AM, Jose Cruz wrote:
Jeff Chan wrote:
and the gtlds from it:
It lacks "gov"
Thanks; I added it.
The reason that list of gtlds didn't have gov is that the expression was meant to extract gtlds where only the second level can be registered. gov allows registration beyond the second level, such as to organizations within states like the California Senate:
sen.ca.gov
and divisions within the federal government.
Jeff C.
On Wednesday, July 28, 2004, 5:32:16 AM, Jeff Chan wrote:
On Wednesday, July 28, 2004, 4:21:44 AM, Jose Cruz wrote:
"com" is listed at sc and multi....
Big error.... Many people are complaining here.... 8-(
Thanks for the heads up. I've whitelisted all gtlds.
Will look into how this happened later.
OK I fixed the underlying cause of this.
I had an expression that was removing www[0-9]*. in order to remove www, www2, etc. and it matched www30.com, taking it down to just com. I changed that to match only "www" and will let the "chop two level domains" expression which matches gtlds catch www2, etc. instead (which is tested and working correctly).
Jeff C.
Jeff Chan wrote:
On Wednesday, July 28, 2004, 5:32:16 AM, Jeff Chan wrote:
OK I fixed the underlying cause of this.
I had an expression that was removing www[0-9]*. in order to remove www, www2, etc. and it matched www30.com, taking it down to just com. I changed that to match only "www" and will let the "chop two level domains" expression which matches gtlds catch www2, etc. instead (which is tested and working correctly).
Thanks very much for your work Jeff.