Hi all,
I am receiving a lot of spam where the email subject is the first-name
on the sender; e.g.:
Subject = Alexandra
From = Alexandra Diaz
I would like to create a rule to detect such a SPAM, but I don't know
how to include the result of a check into another; is there a way to do it ?
I tryed something like:
#---
header __PERS_NAME_S Subject =~ /^(\w+)$/
header __PERS_NAME_F From =~ /^$1/
meta PERS_NAME (__PERS_NAME_S && __PERS_NAME_F)
score PERS_NAME 5.0
#---
But it doesn't work. Any suggestion ?
Many thanks in advance,
MaRu