Re: [racket-users] Anyone successfully filtering Italian spam?

2021-12-01 Thread Aidan Gauland
I am on Fastmail, which uses SpamAssassin (their methodology is detailed 
here 
), 
and after many many months of training it on this loon's spam messages, 
it is finally /mostly/ filtering correctly.  Very few legitimate 
messages are getting sent to the spam bin now. (This is across multiple 
OSS mailing-lists.)


I hope this information helps somewhat.

On 1/12/21 12:57 am, Stephen De Gabrielle wrote:
I’m using gmail for racket-users, but the normally reliable spam 
filtering fails - despite numerous attempts to train - it still 
classifies real mail as spam and the spam as real.

S.


On Tue, 30 Nov 2021 at 03:38, George Neuner > wrote:



On 11/29/2021 6:45 PM, Nathaniel Griswold wrote:
> It’s getting through my filters, neither rspamd or my local
client can catch on to it.
>
> Is there a good simple filter?
>
> Nate

Something has changed very recently because until this last week I
rarely saw it (even marked AS spam) ... maybe a few times this whole
year.  But in the last week I have gotten one or more copies in my
inbox
every day.

I use Thunderbird for email - which has a built-in learning junk
filter
- but I assumed my provider was filtering it because - sans a
specific
rule - Thunderbird would have just put in the Junk folder. I just
wasn't
seeing it.

???
George



--
You received this message because you are subscribed to the Google Groups "Racket 
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to racket-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/racket-users/5c749dfc-a519-818b-2a00-e1c7e36e8a9e%40fastmail.net.


Re: [racket-users] Anyone successfully filtering Italian spam?

2021-12-01 Thread George Neuner



On 12/1/2021 1:30 PM, Nathaniel W Griswold wrote:

> On Nov 30, 2021, at 8:22 AM, Laurent  wrote:
> 
> The last 10 spams have all these words in common:

> https://pastebin.com/BB0arV63
> and many more (which I won't copy here for obvious reasons). 
> 
> So you could create a dedicated spam filter that looks for *any* of (not: all of) these words.


I am gonna do this, actually, because i can see a few more words that are in pretty much 
all of the ones that actually get through my barriers. Judging by the google translation, 
it seems to consistently be a (very narrowly) "coherent" smear on the same 
people for the same things every time, and you have included some of the proper nouns, 
too, so this seems to be the way to go. I think it will get everything.

Thanks,

Nate



I've been dealing with this for well over 10 years reading various news 
groups.  You need to match on descriptive nouns: criminal, terrorist, 
etc.  Over time the names of the people and the descriptions of them 
will change.


If you look carefully at the Italian, you'll see the same descriptors 
come in multiple forms which change in use due to declension (parts of 
speech).  You need to match word stems rather than words:  e.g., crimi 
or crimin so you catch all the different forms of criminal .  Because 
the descriptors are nouns, you have to match them case insensitive, 
because they may or may not be capitalized depending on use.  The recent 
spam has been all caps, but that hasn't always been so.


Filtering can be done fairly easily with regex (with my NN reader has) 
once you figure out what to look for, but most email filter systems 
offer only a simple "contains" filter where you have to supply every 
possible capitalization (at least 3: none, all, and first).


Good Luck!
George

--
You received this message because you are subscribed to the Google Groups "Racket 
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to racket-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/racket-users/3dccf050-e34b-94c9-a967-d9057175a4e2%40comcast.net.


Re: [racket-users] Anyone successfully filtering Italian spam?

2021-12-01 Thread Nathaniel W Griswold
>> 
>>> On Nov 30, 2021, at 8:22 AM, Laurent  wrote:
>>> 
>>> The last 10 spams have all these words in common:
>>> https://pastebin.com/BB0arV63
>>> and many more (which I won't copy here for obvious reasons). 
>>> 
>>> So you could create a dedicated spam filter that looks for *any* of (not: 
>>> all of) these words.
>> 
>> I am gonna do this, actually, because i can see a few more words that are in 
>> pretty much all of the ones that actually get through my barriers. Judging 
>> by the google translation, it seems to consistently be a (very narrowly) 
>> "coherent" smear on the same people for the same things every time, and you 
>> have included some of the proper nouns, too, so this seems to be the way to 
>> go. I think it will get everything.
>> 
>> Thanks,
>> 
>> Nate
>> 


I am putting my simple sieve script here in case anyone is interested. I think 
it will get the stragglers, and the things in it, i think i have seen as 
constant for all the stragglers since i've first been getting it.

Sieve is funny because you have to look at like 5 RFCs to figure anything out 
from primary sources, and all of the third party non-rfc guides you can find 
from the search engines seem very limited so you kinda have to use the RFCs.

https://pastebin.com/wxXxBEEc

Nate

-- 
You received this message because you are subscribed to the Google Groups 
"Racket Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to racket-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/racket-users/D6C75DE1-F28D-458A-A165-7431C0EC5876%40nan.sh.


Re: [racket-users] Anyone successfully filtering Italian spam?

2021-12-01 Thread Nathaniel W Griswold



> On Dec 1, 2021, at 12:30 PM, Nathaniel W Griswold  wrote:
> 
> 
> 
>> On Nov 30, 2021, at 8:22 AM, Laurent  wrote:
>> 
>> The last 10 spams have all these words in common:
>> https://pastebin.com/BB0arV63
>> and many more (which I won't copy here for obvious reasons). 
>> 
>> So you could create a dedicated spam filter that looks for *any* of (not: 
>> all of) these words.
> 
> I am gonna do this, actually, because i can see a few more words that are in 
> pretty much all of the ones that actually get through my barriers. Judging by 
> the google translation, it seems to consistently be a (very narrowly) 
> "coherent" smear on the same people for the same things every time, and you 
> have included some of the proper nouns, too, so this seems to be the way to 
> go. I think it will get everything.
> 
> Thanks,
> 
> Nate
> 

It's interesting, i think. It seems to me that the spammer is prefixing all of 
the proper nouns with hash symbol or something else. Maybe that is the reason 
the spam filters are having trouble, because they are not tokenizing the actual 
words, or treat hash tags specially, or something.

I think this person should teach a class on how to spam.

Nate

-- 
You received this message because you are subscribed to the Google Groups 
"Racket Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to racket-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/racket-users/3E1D65F0-E2E4-410E-B607-6659F12A1092%40nan.sh.


Re: [racket-users] Anyone successfully filtering Italian spam?

2021-12-01 Thread Nathaniel W Griswold



> On Nov 30, 2021, at 8:22 AM, Laurent  wrote:
> 
> The last 10 spams have all these words in common:
> https://pastebin.com/BB0arV63
> and many more (which I won't copy here for obvious reasons). 
> 
> So you could create a dedicated spam filter that looks for *any* of (not: all 
> of) these words.

I am gonna do this, actually, because i can see a few more words that are in 
pretty much all of the ones that actually get through my barriers. Judging by 
the google translation, it seems to consistently be a (very narrowly) 
"coherent" smear on the same people for the same things every time, and you 
have included some of the proper nouns, too, so this seems to be the way to go. 
I think it will get everything.

Thanks,

Nate

-- 
You received this message because you are subscribed to the Google Groups 
"Racket Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to racket-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/racket-users/D99A6FC7-A28E-43FB-AA42-E80187497CD8%40nan.sh.


Re: [racket-users] Anyone successfully filtering Italian spam?

2021-11-30 Thread Nathaniel W Griswold
Ok. Well i don't often get Italian emails so maybe i will make a special 
"Italian" Inbox =)

Nate

> On Nov 30, 2021, at 8:41 AM, George Neuner  wrote:
> 
> 
> On 11/30/2021 9:22 AM, Laurent wrote:
>> The last 10 spams have all these words in common:
>> https://pastebin.com/BB0arV63
>> and many more (which I won't copy here for obvious reasons).
>> 
>> So you could create a dedicated spam filter that looks for *any* of (not: 
>> all of) these words.
> 
> Unfortunately, this idiot has been spamming a number of (mostly programming 
> language) groups for more than 10 years now.  Every other month or so the 
> subject (and hence the relevant keywords) changes, along with the poster's 
> name and email address, etc.
> 
> I used to read the racket groups through NN via Gmane ... sometimes still do, 
> but mostly use email now.  A few years ago Gmane changed hands and got flaky 
> for a while, so I activated email delivery on the racket group server to be 
> sure I was seeing all the posts. Gmane still carries racket, but many of the 
> other groups it used to carry are gone.
> 
> My NN reader has several filters dedicated to this italian spam, but (until 
> recently) I didn't need to filter it from my email.
> 
> George
> 
> -- 
> You received this message because you are subscribed to the Google Groups 
> "Racket Users" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to racket-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/racket-users/6811d26a-b810-9ecf-f485-85774dfd7471%40comcast.net.

-- 
You received this message because you are subscribed to the Google Groups 
"Racket Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to racket-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/racket-users/EEBCB0A6-634A-4373-85D4-054BB3A6C570%40nan.sh.


Re: [racket-users] Anyone successfully filtering Italian spam?

2021-11-30 Thread George Neuner



On 11/30/2021 9:22 AM, Laurent wrote:

The last 10 spams have all these words in common:
https://pastebin.com/BB0arV63
and many more (which I won't copy here for obvious reasons).

So you could create a dedicated spam filter that looks for *any* of 
(not: all of) these words.


Unfortunately, this idiot has been spamming a number of (mostly 
programming language) groups for more than 10 years now.  Every other 
month or so the subject (and hence the relevant keywords) changes, along 
with the poster's name and email address, etc.


I used to read the racket groups through NN via Gmane ... sometimes 
still do, but mostly use email now.  A few years ago Gmane changed hands 
and got flaky for a while, so I activated email delivery on the racket 
group server to be sure I was seeing all the posts. Gmane still carries 
racket, but many of the other groups it used to carry are gone.


My NN reader has several filters dedicated to this italian spam, but 
(until recently) I didn't need to filter it from my email.


George

--
You received this message because you are subscribed to the Google Groups "Racket 
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to racket-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/racket-users/6811d26a-b810-9ecf-f485-85774dfd7471%40comcast.net.


Re: [racket-users] Anyone successfully filtering Italian spam?

2021-11-30 Thread Laurent
The last 10 spams have all these words in common:
https://pastebin.com/BB0arV63
and many more (which I won't copy here for obvious reasons).

So you could create a dedicated spam filter that looks for *any* of (not:
all of) these words.




On Tue, Nov 30, 2021 at 2:10 PM George Neuner  wrote:

>
> On 11/30/2021 6:57 AM, Stephen De Gabrielle wrote:
> > I’m using gmail for racket-users, but the normally reliable spam
> > filtering fails - despite numerous attempts to train - it still
> > classifies real mail as spam and the spam as real.
> > S.
>
> I'm convinced that Google does that on purpose ... I believe they are
> paid to keep users looking in their spam folders.
>
> YMMV,
> George
>
> --
> You received this message because you are subscribed to the Google Groups
> "Racket Users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to racket-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/racket-users/5d9ca216-35d5-6a73-b3d4-10a49d229d09%40comcast.net
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Racket Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to racket-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/racket-users/CABNTSaGLMeEtsL7yv%3DiWZecCYcPgZ%2Bx_M6AUhUE33-cCToAqTg%40mail.gmail.com.


Re: [racket-users] Anyone successfully filtering Italian spam?

2021-11-30 Thread George Neuner



On 11/30/2021 6:57 AM, Stephen De Gabrielle wrote:
I’m using gmail for racket-users, but the normally reliable spam 
filtering fails - despite numerous attempts to train - it still 
classifies real mail as spam and the spam as real.

S.


I'm convinced that Google does that on purpose ... I believe they are 
paid to keep users looking in their spam folders.


YMMV,
George

--
You received this message because you are subscribed to the Google Groups "Racket 
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to racket-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/racket-users/5d9ca216-35d5-6a73-b3d4-10a49d229d09%40comcast.net.


Re: [racket-users] Anyone successfully filtering Italian spam?

2021-11-30 Thread Stephen De Gabrielle
I’m using gmail for racket-users, but the normally reliable spam filtering
fails - despite numerous attempts to train - it still classifies real mail
as spam and the spam as real.
S.


On Tue, 30 Nov 2021 at 03:38, George Neuner  wrote:

>
> On 11/29/2021 6:45 PM, Nathaniel Griswold wrote:
> > It’s getting through my filters, neither rspamd or my local client can
> catch on to it.
> >
> > Is there a good simple filter?
> >
> > Nate
>
> Something has changed very recently because until this last week I
> rarely saw it (even marked AS spam) ... maybe a few times this whole
> year.  But in the last week I have gotten one or more copies in my inbox
> every day.
>
> I use Thunderbird for email - which has a built-in learning junk filter
> - but I assumed my provider was filtering it because - sans a specific
> rule - Thunderbird would have just put in the Junk folder. I just wasn't
> seeing it.
>
> ???
> George
>
>
> --
> You received this message because you are subscribed to the Google Groups
> "Racket Users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to racket-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/racket-users/a9f4c8f7-12b3-ea4c-726a-ec16c1e65eb1%40comcast.net
> .
>
-- 


-- 
You received this message because you are subscribed to the Google Groups 
"Racket Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to racket-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/racket-users/CAGHj7-Lb9iFkas%3DfYSayHMW4xduEtDo0-vap%2B9fA9v1xOp7%3D6A%40mail.gmail.com.


Re: [racket-users] Anyone successfully filtering Italian spam?

2021-11-29 Thread George Neuner



On 11/29/2021 6:45 PM, Nathaniel Griswold wrote:

It’s getting through my filters, neither rspamd or my local client can catch on 
to it.

Is there a good simple filter?

Nate


Something has changed very recently because until this last week I 
rarely saw it (even marked AS spam) ... maybe a few times this whole 
year.  But in the last week I have gotten one or more copies in my inbox 
every day.


I use Thunderbird for email - which has a built-in learning junk filter 
- but I assumed my provider was filtering it because - sans a specific 
rule - Thunderbird would have just put in the Junk folder. I just wasn't 
seeing it.


???
George


--
You received this message because you are subscribed to the Google Groups "Racket 
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to racket-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/racket-users/a9f4c8f7-12b3-ea4c-726a-ec16c1e65eb1%40comcast.net.


Re: [racket-users] Anyone successfully filtering Italian spam?

2021-11-29 Thread 'William J. Bowman' via Racket Users
My spamassassin catches most of it, but also sometimes catches real list emails 
because it has stopped trusting racket-users. Some combination of bayes and 
txrep plugins are doing the heavy lifting, I think.

--
William J. Bowman

On Mon, Nov 29, 2021 at 05:45:37PM -0600, Nathaniel Griswold wrote:
> It’s getting through my filters, neither rspamd or my local client can catch 
> on to it.
> 
> Is there a good simple filter?
> 
> Nate
> 
> -- 
> You received this message because you are subscribed to the Google Groups 
> "Racket Users" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to racket-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit 
> https://groups.google.com/d/msgid/racket-users/81262C45-D4BE-45DB-B126-5BD11274299A%40nan.sh.

-- 
You received this message because you are subscribed to the Google Groups 
"Racket Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to racket-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/racket-users/YaVwusmUite/nAw0%40williamjbowman.com.


[racket-users] Anyone successfully filtering Italian spam?

2021-11-29 Thread Nathaniel Griswold
It’s getting through my filters, neither rspamd or my local client can catch on 
to it.

Is there a good simple filter?

Nate

-- 
You received this message because you are subscribed to the Google Groups 
"Racket Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to racket-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/racket-users/81262C45-D4BE-45DB-B126-5BD11274299A%40nan.sh.