lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


On Mar 26, 2018, at 6:14 AM, Luiz Henrique de Figueiredo <lhf@tecgraf.puc-rio.br> wrote:

> Messages from yahoo.com are being consistently flagged as spam by my Gmail.
> I've just found the message below in my spam folder. Check yours.
> 
> On Fri, Mar 16, 2018 at 3:43 PM, Albert Dinero <albertmcchan@yahoo.com> wrote:
>> 
>> I might have optimize project() too much, a simple version would do nicely.
>> 
>> static lua_Unsigned project(lua_Unsigned ran, lua_Unsigned n, RanState *state)
>> {
>>    int bits = __builtin_clzll(n);
>>    while ((ran >>= bits) > n) ran = I2UInt( xorshift128plus(state->s) );
>>    return ran;
>> }
>> 

I have the same problem with spams.
I tried to "unsubscribe" the spam emails, and now it is WORSE

Spamers are smart by randomizing their email address, to pass
yahoo's default spam filter, so "send to spam" does not work.

They probably use xorshift128plus :-)