CobraA1:In the first few months, fifty million fake emails were prevented from reaching consumers. Is it bulletproof? No. People who do not check digital signatures will still be vulnerable. It is, however, very effective.
I therefore ask that future versions of Pmail and Mercury support digital signatures.
FWIW, Mercury's Content Control can be used very effectively to combat phishing mails as long as one knows what domain(s) the sender's SMTP use(s). For PayPal, such rule would look like:
#
# PayPal
#
IF SENDER CONTAINS "@paypal" WEIGHT 100
OR SENDER CONTAINS "@intl.paypal"
ANDNOT HEADER "Received" MATCHES "*.paypal.com *"
IF SENDER CONTAINS "@paypal." WEIGHT -100
OR SENDER CONTAINS "@intl.paypal"
AND HEADER "Received" MATCHES "*.paypal.com *"
To explain, the first rule triggers if the sender claims to be @paypal, but a received-by header is not .paypal.com (which is the case even if the mail comes from PayPal because of the local received-by header). The second rule looks for a received-by header with the correct domain and gives minus points, thus negates the rule which triggered first. The phisher's mail will most likely not have the correct received-by header. As each CC rule hits only once it works well. This is a example of a recent phishing mail and the result which the above rule produced:
Return-path: <service@paypal.com>
From: "PayPal 2008" <service@paypal.com>
Subject: Unusual activity in your account!
X-UC-Weight: [# ] 100
X-CC-Diagnostic: Sender contains "@paypal" (100)
I'm using this principle since a long time, also to combat ebay/banking/amazon etc. phishing.
Best regards,
Nico