On Thursday 05 March 2009 23:44:39 Benny Pedersen wrote: > header SELF_FROM From =~ /\...@my.address/i > header SELF_TO To =~ /\...@my.address/i > meta SELF (SELF_FROM && SELF_TO) > describe SELF Trap mail with forged sender the same as recipient > score SELF 3.0
Finally I understand above rule. First it check if the sender is my.address then it check if the recipient is my.address and finally, if both are true, then it give the score 3.0 Thank you. It is working well, but not global (just check for my.address, and not for everyone). Please help me again to teach me, how to make it a little bit different: First, it read the sender, and put it into a variable Then, it check, if the recipient is the same as that variable if true, then give score 3.0 Thank you again :)