| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
package Sisimai::Reason::SyntaxError; |
|
2
|
11
|
|
|
11
|
|
1609
|
use feature ':5.10'; |
|
|
11
|
|
|
|
|
23
|
|
|
|
11
|
|
|
|
|
1213
|
|
|
3
|
11
|
|
|
11
|
|
62
|
use strict; |
|
|
11
|
|
|
|
|
20
|
|
|
|
11
|
|
|
|
|
213
|
|
|
4
|
11
|
|
|
11
|
|
46
|
use warnings; |
|
|
11
|
|
|
|
|
19
|
|
|
|
11
|
|
|
|
|
1776
|
|
|
5
|
|
|
|
|
|
|
|
|
6
|
1
|
|
|
1
|
1
|
21
|
sub text { 'syntaxerror' } |
|
7
|
4
|
|
|
4
|
0
|
17
|
sub description { 'Email rejected due to syntax error at sent commands in SMTP session' } |
|
8
|
45
|
|
|
45
|
1
|
95
|
sub match { return undef } |
|
9
|
|
|
|
|
|
|
sub true { |
|
10
|
|
|
|
|
|
|
# Connection rejected due to syntax error or not |
|
11
|
|
|
|
|
|
|
# @param [Sisimai::Data] argvs Object to be detected the reason |
|
12
|
|
|
|
|
|
|
# @return [Integer] 1: Rejected due to syntax error |
|
13
|
|
|
|
|
|
|
# 0: is not syntax error |
|
14
|
|
|
|
|
|
|
# @since v4.1.25 |
|
15
|
|
|
|
|
|
|
# @see http://www.ietf.org/rfc/rfc2822.txt |
|
16
|
57
|
|
|
57
|
0
|
124
|
my $class = shift; |
|
17
|
57
|
|
100
|
|
|
184
|
my $argvs = shift // return undef; |
|
18
|
|
|
|
|
|
|
|
|
19
|
56
|
50
|
|
|
|
200
|
return 1 if $argvs->reason eq 'syntaxerror'; |
|
20
|
56
|
100
|
|
|
|
412
|
return 1 if $argvs->replycode =~ /\A[45]0[0-7]\z/; |
|
21
|
51
|
|
|
|
|
417
|
return 0; |
|
22
|
|
|
|
|
|
|
} |
|
23
|
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
1; |
|
25
|
|
|
|
|
|
|
__END__ |