The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Sisimai::Reason::VirusDetected - Bounce reason is virusdetected or not.

SYNOPSIS

    use Sisimai::Reason::VirusDetected;
    print Sisimai::Reason::VirusDetected->match('5.7.1 Email not accept');   # 1

DESCRIPTION

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>

CLASS METHODS

text()

text() returns string: virusdetected.

    print Sisimai::Reason::VirusDetected->text;  # virusdetected

match(string)

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(Sisimai::Data)

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.

AUTHOR

azumakuniyuki

COPYRIGHT

Copyright (C) 2017 azumakuniyuki, All rights reserved.

LICENSE

This software is distributed under The BSD 2-Clause License.