Sisimai::Reason::Speeding(3pm) | User Contributed Perl Documentation | Sisimai::Reason::Speeding(3pm) |
Sisimai::Reason::Speeding - Bounce reason is "speeding" or not.
use Sisimai::Reason::Speeding; my $v = '451 4.7.1 <mx.example.jp[192.0.2.2]>: Client host rejected: Please try again slower'; print Sisimai::Reason::Speeding->match($v); # 1
Sisimai::Reason::Speeding checks the bounce reason is "speeding" or not. This class is called only Sisimai::Reason class. This is the error that a connection rejected due to exceeding a rate limit or sending too fast.
text() returns string: "speeding".
print Sisimai::Reason::Speeding->text; # speeding
match() returns 1 if the argument matched with patterns defined in this class.
my $v = '451 4.7.1 <mx.example.jp[192.0.2.2]>: Client host rejected: Please try again slower'; print Sisimai::Reason::Speeding->match($v); # 1
true() returns 1 if the bounce reason is "speeding". The argument must be Sisimai::Fact object and this method is called only from Sisimai::Reason class.
azumakuniyuki
Copyright (C) 2022 azumakuniyuki, All rights reserved.
This software is distributed under The BSD 2-Clause License.
2024-03-03 | perl v5.38.2 |