Files
2024-10-14 00:08:40 +02:00

107 lines
3.0 KiB
Perl

package Sisimai::Reason::Suspend;
use feature ':5.10';
use strict;
use warnings;
sub text { 'suspend' }
sub description { 'Email rejected due to a recipient account is being suspended' }
sub match {
# Try to match that the given text and regular expressions
# @param [String] argv1 String to be matched with regular expressions
# @return [Integer] 0: Did not match
# 1: Matched
# @since v4.0.0
my $class = shift;
my $argv1 = shift // return undef;
my $index = [
' is currently suspended',
' temporary locked',
'boite du destinataire archivee',
'email account that you tried to reach is disabled',
'invalid/inactive user',
'is a deactivated mailbox', # http://service.mail.qq.com/cgi-bin/help?subtype=1&&id=20022&&no=1000742
'mailbox currently suspended',
'mailbox unavailable or access denied',
'recipient rejected: temporarily inactive',
'recipient suspend the service',
'this account has been disabled or discontinued',
'user suspended', # http://mail.163.com/help/help_spam_16.htm
'vdelivermail: account is locked email bounced',
];
return 1 if grep { rindex($argv1, $_) > -1 } @$index;
return 0;
}
sub true {
# The envelope recipient's mailbox is suspended or not
# @param [Sisimai::Data] argvs Object to be detected the reason
# @return [Integer] 1: is mailbox suspended
# 0: is not suspended
# @since v4.0.0
# @see http://www.ietf.org/rfc/rfc2822.txt
my $class = shift;
my $argvs = shift // return undef;
return undef unless $argvs->deliverystatus;
return 1 if $argvs->reason eq 'suspend';
return 1 if __PACKAGE__->match(lc $argvs->diagnosticcode);
return 0
}
1;
__END__
=encoding utf-8
=head1 NAME
Sisimai::Reason::Suspend - Bounce reason is C<suspend> or not.
=head1 SYNOPSIS
use Sisimai::Reason::Suspend;
print Sisimai::Reason::Suspend->match('recipient suspend the service'); # 1
=head1 DESCRIPTION
Sisimai::Reason::Suspend checks the bounce reason is C<suspend> or not. This
class is called only Sisimai::Reason class.
This is the error that a recipient account is being suspended due to unpaid or
other reasons.
=head1 CLASS METHODS
=head2 C<B<text()>>
C<text()> returns string: C<suspend>.
print Sisimai::Reason::Suspend->text; # suspend
=head2 C<B<match(I<string>)>>
C<match()> returns 1 if the argument matched with patterns defined in this class.
print Sisimai::Reason::Suspend->match('recipient suspend the service'); # 1
=head2 C<B<true(I<Sisimai::Data>)>>
C<true()> returns 1 if the bounce reason is C<suspend>. The argument must be
Sisimai::Data object and this method is called only from Sisimai::Reason class.
=head1 AUTHOR
azumakuniyuki
=head1 COPYRIGHT
Copyright (C) 2014-2018 azumakuniyuki, All rights reserved.
=head1 LICENSE
This software is distributed under The BSD 2-Clause License.
=cut