| 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 the SMTP connection rejected due to exceeding a rate limit or sending too fast.
text() method returns the fiexed string "speeding".
print Sisimai::Reason::Speeding->text; # speeding
match() method 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() method 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,2024 azumakuniyuki, All rights reserved.
This software is distributed under The BSD 2-Clause License.
| 2025-04-12 | perl v5.40.1 |