Sisimai::Reason::VirusDetected(3pm) | User Contributed Perl Documentation | Sisimai::Reason::VirusDetected(3pm) |
Sisimai::Reason::VirusDetected - Bounce reason is "virusdetected" or not.
use Sisimai::Reason::VirusDetected; print Sisimai::Reason::VirusDetected->match('5.7.1 Email not accept'); # 1
Sisimai::Reason::VirusDetected checks the bounce reason is "virusdetected" or not. This class is called only Sisimai::Reason class.
This is an error that any virus or trojan horse detected in the message by a virus scanner program at a destination mail server. This reason has been divided from "securityerror" at Sisimai 4.22.0.
Your message was infected with a virus. You should download a virus scanner and check your computer for viruses. Sender: <sironeko@libsisimai.org> Recipient: <kijitora@example.jp>
"text()" returns string: "virusdetected".
print Sisimai::Reason::VirusDetected->text; # virusdetected
"match()" returns 1 if the argument matched with patterns defined in this class.
my $v = 'Your message was infected with a virus. ...'; print Sisimai::Reason::VirusDetected->match($v); # 1
"true()" returns 1 if the bounce reason is "virusdetected". The argument must be Sisimai::Data object and this method is called only from Sisimai::Reason class.
azumakuniyuki
Copyright (C) 2017-2019,2021 azumakuniyuki, All rights reserved.
This software is distributed under The BSD 2-Clause License.
2022-12-23 | perl v5.36.0 |