sisimai 4.25.2-java → 4.25.3-java

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of sisimai might be problematic. Click here for more details.

checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f2769f696ceb459c5dba339296c6ed63a48d4729
4
- data.tar.gz: a7a4f22f98240bc7cc6141401c773a5882310998
3
+ metadata.gz: 566f76a60184562c81236ca1ed69414c6ff8f2a5
4
+ data.tar.gz: c41f35e8fe6cef2e270ffda60e9a0be0b8815ec2
5
5
  SHA512:
6
- metadata.gz: 386cefabec1d85cd728fde98942952f87a52b4a931330efd8db38da034d85ad67a62a7d8d2997aac6fd5be1d8464f0a0cd9c38ca645aaf872b6b8fbd0aa4c47a
7
- data.tar.gz: be9945bd609c5b7dbe25e11b28dcf3a06c6309530b7ec3c4161153ceaa03be35932fc55d87bcb5c0ccec8f653956f926b38634a79bd7d11f20c4f608536b8e37
6
+ metadata.gz: ef471a4b893dbb3b2123f6792f79c8c6748e63f6efce62149e82a662599de213220b0fc63c0addb5467cb7d5522bcf49b63efaa0b84377f59e29ec34f3334160
7
+ data.tar.gz: f052990f00ada0e7880de7f4c1a3830b3440c6ca2f903a04f402dd4a68809620f06837a70afa4edfa41c1f31a7a4f7b87b36c266b04a658b2c9130d73cff4a18
@@ -35,7 +35,7 @@ Email::Notes ............ 0/0013 0.0000 Lotus Notes
35
35
  Email::Office365 ........ 26/0029 0.8966 Microsoft Office 365: http://office.microsoft.com/
36
36
  Email::OpenSMTPD ........ 6/0024 0.2500 OpenSMTPD
37
37
  Email::Outlook .......... 21/0023 0.9130 Microsoft Outlook.com: https://www.outlook.com/
38
- Email::Postfix .......... 251/0268 0.9366 Postfix
38
+ Email::Postfix .......... 260/0277 0.9386 Postfix
39
39
  Email::ReceivingSES ..... 0/0007 0.0000 Amazon SES(Receiving): http://aws.amazon.com/ses/
40
40
  Email::SendGrid ......... 7/0012 0.5833 SendGrid: http://sendgrid.com/
41
41
  Email::Sendmail ......... 354/0278 1.0000 V8Sendmail: /usr/sbin/sendmail
@@ -55,8 +55,8 @@ Email::qmail ............ 58/0087 0.6667 qmail
55
55
  JSON::AmazonSES ......... 40/0049 0.8163 Amazon SES(JSON): http://aws.amazon.com/ses/
56
56
  JSON::SendGrid .......... 7/0012 0.5833 SendGrid(JSON): http://sendgrid.com/
57
57
  ARF ..................... 8/0038 0.2105 Abuse Feedback Reporting Format
58
- RFC3464 ................. 151/0290 0.5207 Fallback Module for MTAs
58
+ RFC3464 ................. 151/0322 0.4689 Fallback Module for MTAs
59
59
  RFC3834 ................. 0/0014 0.0000 Detector for auto replied message
60
60
  --------------------------------------------------------------------------------
61
- bounceHammer 2.7.13p3 1561/2589 0.6029
62
- Sisimai 4.25.2 2589/2589 1.0000
61
+ bounceHammer 2.7.13p3 1570/2630 0.5970
62
+ Sisimai 4.25.3 2630/2630 1.0000
@@ -3,6 +3,26 @@ RELEASE NOTES for Ruby version of Sisimai
3
3
  - releases: "https://github.com/sisimai/rb-Sisimai/releases"
4
4
  - download: "https://rubygems.org/gems/sisimai"
5
5
 
6
+ v4.25.3
7
+ --------------------------------------------------------------------------------
8
+ - release: ""Sat, 7 Sep 2019 15:00:22 +0900 (JST)
9
+ - version: "4.25.3"
10
+ - changes:
11
+ - Fix code for getting a recipient address from the original message part at
12
+ `Sisimai::ARF`
13
+ - Fix code for getting a recipient mail address and a subject string from the
14
+ original messaage part at `Sisimai::Bite::Email::MailMarshalSMTP`
15
+ - Fix code to delete unused multipart headers at `Sisimai::MIME.breaksup`
16
+ - Fix code for getting a recipient email address and an expanded address from
17
+ `Final-Recipient:` and `Original-Recipient:` field at `Sisimai::RFC3464`
18
+ - Update code for matching error message "The user you are trying to contact
19
+ is receiving mail at a rate that prevents additional messages from being
20
+ delivered." at `Sisimai::Rhost::GoogleApps`
21
+ - Update error message pattern for "blocked" reason from GMX: "ESMTP Service
22
+ not available No SMTP service Bad DNS PTR resource record."
23
+ - Update error message pattern for "suspend" reason responded from i.ua MTA:
24
+ "550 Mailbox is frozen."
25
+
6
26
  v4.25.2
7
27
  --------------------------------------------------------------------------------
8
28
  - release: "Thu, 1 Aug 2019 20:00:00 +0900 (JST)"
@@ -245,7 +245,7 @@ Differences between Ruby version and Perl version
245
245
  | インストール方法 | gem install | cpanm, cpm |
246
246
  | 依存モジュール数(コアモジュールを除く) | 1モジュール | 2モジュール |
247
247
  | LOC:ソースコードの行数 | 11700行 | 8300行 |
248
- | テスト件数(spec/,t/,xt/ディレクトリ) | 227000件 | 248000件 |
248
+ | テスト件数(spec/,t/,xt/ディレクトリ) | 227700件 | 250000件 |
249
249
  | ライセンス | 二条項BSD | 二条項BSD |
250
250
  | 開発会社によるサポート契約 | 提供中 | 提供中 |
251
251
 
data/README.md CHANGED
@@ -249,7 +249,7 @@ and bounceHammer are available at
249
249
  | How to install | gem install | cpanm, cpm |
250
250
  | Dependencies (Except core modules) | 1 module | 2 modules |
251
251
  | LOC:Source lines of code | 11700 lines | 8300 lines |
252
- | The number of tests(spec/,t/,xt/) directory | 227000 tests | 248000 tests |
252
+ | The number of tests(spec/,t/,xt/) directory | 227600 tests | 250000 tests |
253
253
  | License | BSD 2-Clause | BSD 2-Clause |
254
254
  | Support Contract provided by Developer | Available | Available |
255
255
 
@@ -257,9 +257,15 @@ module Sisimai
257
257
  end
258
258
 
259
259
  unless recipients > 0
260
- # Insert pseudo recipient address when there is no valid recipient
261
- # address in the message.
262
- dscontents[-1]['recipient'] = Sisimai::Address.undisclosed('r')
260
+ # The original recipient address was not found
261
+ if cv = rfc822part.match(/^To: (.+[@].+)$/)
262
+ # pick the address from To: header in message/rfc822 part.
263
+ dscontents[-1]['recipient'] = Sisimai::Address.s3s4(cv[1])
264
+ else
265
+ # Insert pseudo recipient address when there is no valid recipient
266
+ # address in the message.
267
+ dscontents[-1]['recipient'] = Sisimai::Address.undisclosed('r')
268
+ end
263
269
  recipients = 1
264
270
  end
265
271
 
@@ -137,6 +137,11 @@ module Sisimai::Bite::Email
137
137
  elsif cv = e.match(/\AReporting-MTA:[ \t]+[<](.+)[>]\z/)
138
138
  # Reporting-MTA: <relay.xxxxxxxxxxxx.com>
139
139
  v['rhost'] = cv[1]
140
+
141
+ elsif cv = e.match(/\A\s+(From|Subject):\s*(.+)\z/)
142
+ # From: originalsender@example.com
143
+ # Subject: ...
144
+ rfc822list << sprintf("%s: %s", cv[1], cv[2])
140
145
  end
141
146
  end
142
147
  end
@@ -342,7 +342,7 @@ module Sisimai
342
342
  if mimeformat =~ AlsoAppend
343
343
  # Append field when the value of Content-Type: begins with
344
344
  # message/ or equals text/rfc822-headers.
345
- upperchunk.sub!(/Content-Transfer-Encoding:.+\z/, '').rstrip!
345
+ upperchunk.sub!(/Content-Transfer-Encoding:\s*[^\s]+./, '').strip!
346
346
  hasflatten << upperchunk
347
347
 
348
348
  elsif mimeformat == 'text/html'
@@ -20,9 +20,9 @@ module Sisimai
20
20
  Filtered Rejected HostUnknown SpamDetected TooManyConn Blocked
21
21
  ],
22
22
  %w[
23
- MailboxFull SpamDetected PolicyViolation VirusDetected SecurityError
24
- SystemError NetworkError Suspend Expired ContentError SystemFull
25
- NotAccept MailerError
23
+ MailboxFull SpamDetected PolicyViolation VirusDetected NoRelaying
24
+ SecurityError SystemError NetworkError Suspend Expired ContentError
25
+ SystemFull NotAccept MailerError
26
26
  ],
27
27
  %w[
28
28
  MailboxFull MesgTooBig ExceedLimit Suspend UserUnknown Filtered Rejected
@@ -13,7 +13,7 @@ module Sisimai
13
13
  access[ ]denied[.][ ]ip[ ]name[ ]lookup[ ]failed
14
14
  |access[ ]from[ ]ip[ ]address[ ].+[ ]blocked
15
15
  |all[ ]mail[ ]servers[ ]must[ ]have[ ]a[ ]ptr[ ]record[ ]with[ ]a[ ]valid[ ]reverse[ ]dns[ ]entry
16
- |bad[ ]sender[ ]ip[ ]address
16
+ |bad[ ](:?dns[ ]ptr[ ]resource[ ]record|sender[ ]ip[ ]address)
17
17
  |banned[ ]sending[ ]ip # Office365
18
18
  |blacklisted[ ]by
19
19
  |(?:blocked|refused)[ ]-[ ]see[ ]https?://
@@ -40,6 +40,7 @@ module Sisimai
40
40
  'from: domain is invalid. please provide a valid from:',
41
41
  'fully qualified email address required', # McAfee
42
42
  'invalid domain, see <url:',
43
+ 'is not a registered gateway user',
43
44
  'mail from not owned by user',
44
45
  'message rejected: email address is not verified',
45
46
  'mx records for ',
@@ -16,6 +16,7 @@ module Sisimai
16
16
  'invalid/inactive user',
17
17
  'is a deactivated mailbox', # http://service.mail.qq.com/cgi-bin/help?subtype=1&&id=20022&&no=1000742
18
18
  'mailbox currently suspended',
19
+ 'mailbox is frozen',
19
20
  'mailbox unavailable or access denied',
20
21
  'recipient rejected: temporarily inactive',
21
22
  'recipient suspend the service',
@@ -112,6 +112,7 @@ module Sisimai
112
112
  havepassed = ['']
113
113
  scannedset = Sisimai::MDA.scan(mhead, mbody)
114
114
  rfc822list = [] # (Array) Each line in message/rfc822 part string
115
+ maybealias = nil # (String) Original-Recipient Field
115
116
  blanklines = 0 # (Integer) The number of blank lines
116
117
  readcursor = 0 # (Integer) Points the current cursor position
117
118
  recipients = 0 # (Integer) The number of 'Final-Recipient' header
@@ -159,8 +160,7 @@ module Sisimai
159
160
  next if e.empty?
160
161
 
161
162
  v = dscontents[-1]
162
- if cv = e.match(/\A(?:Final|Original)-[Rr]ecipient:[ ]*(?:RFC|rfc)822;[ ]*([^ ]+)\z/) ||
163
- e.match(/\A(?:Final|Original)-[Rr]ecipient:[ ]*([^ ]+)\z/)
163
+ if cv = e.match(/\A(Final|Original)-[Rr]ecipient:[ ]*.+;[ ]*([^ ]+)\z/)
164
164
  # 2.3.2 Final-Recipient field
165
165
  # The Final-Recipient field indicates the recipient for which this set
166
166
  # of per-recipient fields applies. This field MUST be present in each
@@ -179,17 +179,27 @@ module Sisimai
179
179
  # "Original-Recipient" ":" address-type ";" generic-address
180
180
  #
181
181
  # generic-address = *text
182
- x = v['recipienet'] || ''
183
- y = Sisimai::Address.s3s4(cv[1])
182
+ if cv[1] == 'Original'
183
+ # Original-Recipient: ...
184
+ maybealias = cv[2]
185
+ else
186
+ # Final-Recipient: ...
187
+ x = v['recipienet'] || ''
188
+ y = Sisimai::Address.s3s4(cv[2])
189
+ y = maybealias unless Sisimai::RFC5322.is_emailaddress(y)
190
+
191
+ if !x.empty? && x != y
192
+ # There are multiple recipient addresses in the message body.
193
+ dscontents << Sisimai::Bite.DELIVERYSTATUS
194
+ v = dscontents[-1]
195
+ end
196
+ v['recipient'] = y
197
+ recipients += 1
198
+ itisbounce ||= true
184
199
 
185
- if !x.empty? && x != y
186
- # There are multiple recipient addresses in the message body.
187
- dscontents << Sisimai::Bite.DELIVERYSTATUS
188
- v = dscontents[-1]
200
+ v['alias'] ||= maybealias
201
+ maybealias = nil
189
202
  end
190
- v['recipient'] = y
191
- recipients += 1
192
- itisbounce ||= true
193
203
 
194
204
  elsif cv = e.match(/\AX-Actual-Recipient:[ ]*(?:RFC|rfc)822;[ ]*([^ ]+)\z/)
195
205
  # X-Actual-Recipient: RFC822; |IFS=' ' && exec procmail -f- || exit 75 ...
@@ -11,8 +11,8 @@ module Sisimai
11
11
  'X.1.1' => [{ reason: 'userunknown', string: ['The email account that you tried to reach does not exist.'] }],
12
12
  'X.1.2' => [{ reason: 'hostunknown', string: ["We weren't able to find the recipient domain."] }],
13
13
  'X.2.1' => [
14
- { reason: 'suspend', string: ['The email account that you tried to reach is disabled.'] },
15
- { reason: 'undefined', string: ['The user you are trying to contact is receiving mail '] },
14
+ { reason: 'suspend', string: ['The email account that you tried to reach is disabled.'] },
15
+ { reason: 'exceedlimit', string: ['The user you are trying to contact is receiving mail '] },
16
16
  ],
17
17
  'X.2.2' => [{ reason: 'mailboxfull', string: ['The email account that you tried to reach is over quota.'] }],
18
18
  'X.2.3' => [{ reason: 'exceedlimit', string: ["Your message exceeded Google's message size limits."] }],
@@ -1,4 +1,4 @@
1
1
  # Define the version number of Sisimai
2
2
  module Sisimai
3
- VERSION = '4.25.2'.freeze
3
+ VERSION = '4.25.3'.freeze
4
4
  end
@@ -0,0 +1,78 @@
1
+ Return-Path: <>
2
+ X-Original-To: neko@example.co.jp
3
+ Delivered-To: neko@example.co.jp
4
+ Received: by mail.example.co.jp (Postfix)
5
+ id SSYJwT0RW0zj5xyK; Thu, 29 Apr 2019 23:34:45 +0900 (JST)
6
+ Date: Thu, 29 Apr 2019 23:34:45 +0900 (JST)
7
+ From: MAILER-DAEMON@example.co.jp (Mail Delivery System)
8
+ Subject: Undelivered Mail Returned to Sender
9
+ To: neko@example.co.jp
10
+ Auto-Submitted: auto-replied
11
+ MIME-Version: 1.0
12
+ Content-Type: multipart/report; report-type=delivery-status;
13
+ boundary="d1BGpTtmzSzx8lFT.1965870569/mail.example.co.jp"
14
+ Message-Id: <20190429233445.SSYJwT0RW0zj5xyK@mail.example.co.jp>
15
+
16
+ This is a MIME-encapsulated message.
17
+
18
+ --d1BGpTtmzSzx8lFT.1965870569/mail.example.co.jp
19
+ Content-Description: Notification
20
+ Content-Type: text/plain; charset=us-ascii
21
+
22
+ This is the mail system at host mail.example.co.jp.
23
+
24
+ I'm sorry to have to inform you that your message could not
25
+ be delivered to one or more recipients. It's attached below.
26
+
27
+ For further assistance, please send mail to postmaster.
28
+
29
+ If you do so, please include this problem report. You can
30
+ delete your own text from the attached returned message.
31
+
32
+ The mail system
33
+
34
+ <kijitora@ggl.example.org>: host alt1.gmail-smtp-in.l.google.com[74.125.127.27]
35
+ said: 550-5.2.1 The user you are trying to contact is receiving mail at a
36
+ rate that 550-5.2.1 prevents additional messages from being delivered. For
37
+ more 550-5.2.1 information, please visit 550 5.2.1
38
+ https://support.google.com/mail/?p=ReceivingRatePerm p131si8414989oif.118 -
39
+ gsmtp (in reply to RCPT TO command)
40
+
41
+ --d1BGpTtmzSzx8lFT.1965870569/mail.example.co.jp
42
+ Content-Description: Delivery report
43
+ Content-Type: message/delivery-status
44
+
45
+ Reporting-MTA: dns; mail.example.co.jp
46
+ X-Postfix-Queue-ID: d1BGpTtmzSzx8lFT
47
+ X-Postfix-Sender: rfc822; neko@example.co.jp
48
+ Arrival-Date: Thu, 29 Apr 2019 23:34:45 +0900 (JST)
49
+
50
+ Final-Recipient: rfc822; kijitora@ggl.example.org
51
+ Action: failed
52
+ Status: 5.2.1
53
+ Remote-MTA: dns; alt1.gmail-smtp-in.l.google.com
54
+ Diagnostic-Code: smtp; 550-5.2.1 The user you are trying to contact is
55
+ receiving mail at a rate that 550-5.2.1 prevents additional messages from
56
+ being delivered. For more 550-5.2.1 information, please visit 550 5.2.1
57
+ https://support.google.com/mail/?p=ReceivingRatePerm p131si8414989oif.118 -
58
+ gsmtp
59
+
60
+ --d1BGpTtmzSzx8lFT.1965870569/mail.example.co.jp
61
+ Content-Description: Undelivered Message
62
+ Content-Type: message/rfc822
63
+
64
+ Return-Path: <neko@example.co.jp>
65
+ Received: by mail.example.co.jp (Postfix, from userid 2202)
66
+ id d1BGpTtmzSzx8lFT; Thu, 29 Apr 2019 23:34:45 +0900 (JST)
67
+ To: kijitora@ggl.example.org
68
+ Subject: Nyaan
69
+ From: <neko@example.jp>
70
+ MIME-Version: 1.0
71
+ Content-Type: text/plain; charset=ISO-2022-JP
72
+ Content-Transfer-Encoding: 7bit
73
+ Message-Id: <20190429233445.d1BGpTtmzSzx8lFT@mail.example.co.jp>
74
+ Date: Thu, 29 Apr 2019 23:34:45 +0900 (JST)
75
+
76
+ Nyaan
77
+
78
+ --d1BGpTtmzSzx8lFT.1965870569/mail.example.co.jp--
@@ -0,0 +1,75 @@
1
+ Return-Path: <>
2
+ X-Original-To: nyaan@example.co.jp
3
+ Delivered-To: nyaan@example.co.jp
4
+ Received: by mail.example.co.jp (Postfix)
5
+ id 5B8101331DA0; Thu, 29 Apr 2019 23:34:45 +0900 (JST)
6
+ Date: Thu, 29 Apr 2019 23:34:45 +0900 (JST)
7
+ From: MAILER-DAEMON@example.co.jp (Mail Delivery System)
8
+ Subject: Undelivered Mail Returned to Sender
9
+ To: nyaan@example.co.jp
10
+ Auto-Submitted: auto-replied
11
+ MIME-Version: 1.0
12
+ Content-Type: multipart/report; report-type=delivery-status;
13
+ boundary="2871D228E7A9.1998833439/mail.example.co.jp"
14
+ Message-Id: <20190429233445.5B8101331DA0@mail.example.co.jp>
15
+
16
+ This is a MIME-encapsulated message.
17
+
18
+ --2871D228E7A9.1998833439/mail.example.co.jp
19
+ Content-Description: Notification
20
+ Content-Type: text/plain; charset=us-ascii
21
+
22
+ This is the mail system at host mail.example.co.jp.
23
+
24
+ I'm sorry to have to inform you that your message could not
25
+ be delivered to one or more recipients. It's attached below.
26
+
27
+ For further assistance, please send mail to postmaster.
28
+
29
+ If you do so, please include this problem report. You can
30
+ delete your own text from the attached returned message.
31
+
32
+ The mail system
33
+
34
+ <neko@mail.example.jp>: host mx01.mail.com[74.208.5.22] refused to talk to me:
35
+ 554-mail.com (mxgmxus002) Nemesis ESMTP Service not available 554-No SMTP
36
+ service 554-Bad DNS PTR resource record. 554 For explanation visit
37
+ http://postmaster.gmx.com/en/error-messages?ip=192.0.2.22&c=rdns
38
+
39
+ --2871D228E7A9.1998833439/mail.example.co.jp
40
+ Content-Description: Delivery report
41
+ Content-Type: message/delivery-status
42
+
43
+ Reporting-MTA: dns; mail.example.co.jp
44
+ X-Postfix-Queue-ID: 2871D228E7A9
45
+ X-Postfix-Sender: rfc822; nyaan@example.co.jp
46
+ Arrival-Date: Thu, 29 Apr 2019 23:34:45 +0900 (JST)
47
+
48
+ Final-Recipient: rfc822; neko@mail.example.jp
49
+ Action: failed
50
+ Status: 4.0.0
51
+ Remote-MTA: dns; mx01.mail.com
52
+ Diagnostic-Code: smtp; 554-mail.com (mxgmxus002) Nemesis ESMTP Service not
53
+ available 554-No SMTP service 554-Bad DNS PTR resource record. 554 For
54
+ explanation visit
55
+ http://postmaster.gmx.com/en/error-messages?ip=192.0.2.22&c=rdns
56
+
57
+ --2871D228E7A9.1998833439/mail.example.co.jp
58
+ Content-Description: Undelivered Message
59
+ Content-Type: message/rfc822
60
+
61
+ Return-Path: <nyaan@example.co.jp>
62
+ Received: by mail.example.co.jp (Postfix, from userid 2020)
63
+ id 2871D228E7A9; Thu, 29 Apr 2019 23:34:45 +0900 (JST)
64
+ To: neko@mail.example.jp
65
+ Subject: Nyaan
66
+ From: <kijitora@example.com>
67
+ MIME-Version: 1.0
68
+ Content-Type: text/plain; charset=ISO-2022-JP
69
+ Content-Transfer-Encoding: 7bit
70
+ Message-Id: <20190429233445.2871D228E7A9@mail.example.co.jp>
71
+ Date: Thu, 29 Apr 2019 23:34:45 +0900 (JST)
72
+
73
+ Nyaan
74
+
75
+ --2871D228E7A9.1998833439/mail.example.co.jp--
@@ -0,0 +1,70 @@
1
+ Return-Path: <>
2
+ X-Original-To: nekochan@example.co.jp
3
+ Delivered-To: nekochan@example.co.jp
4
+ Received: by mail.example.co.jp (Postfix)
5
+ id 18513041C2DA; Thu, 29 Apr 2019 23:34:45 +0900 (JST)
6
+ Date: Thu, 29 Apr 2019 23:34:45 +0900 (JST)
7
+ From: MAILER-DAEMON@example.co.jp (Mail Delivery System)
8
+ Subject: Undelivered Mail Returned to Sender
9
+ To: nekochan@example.co.jp
10
+ Auto-Submitted: auto-replied
11
+ MIME-Version: 1.0
12
+ Content-Type: multipart/report; report-type=delivery-status;
13
+ boundary="0E1D4CDC0054.1562628010/mail.example.co.jp"
14
+ Message-Id: <20190429233445.18513041C2DA@mail.example.co.jp>
15
+
16
+ This is a MIME-encapsulated message.
17
+
18
+ --0E1D4CDC0054.1562628010/mail.example.co.jp
19
+ Content-Description: Notification
20
+ Content-Type: text/plain; charset=us-ascii
21
+
22
+ This is the mail system at host mail.example.co.jp.
23
+
24
+ I'm sorry to have to inform you that your message could not
25
+ be delivered to one or more recipients. It's attached below.
26
+
27
+ For further assistance, please send mail to postmaster.
28
+
29
+ If you do so, please include this problem report. You can
30
+ delete your own text from the attached returned message.
31
+
32
+ The mail system
33
+
34
+ <neko@email.example.ua>: host mx3.email.ua[185.187.81.214] said: 550 Mailbox is
35
+ frozen. See http://mail.i.ua/err/3/ (in reply to RCPT TO command)
36
+
37
+ --0E1D4CDC0054.1562628010/mail.example.co.jp
38
+ Content-Description: Delivery report
39
+ Content-Type: message/delivery-status
40
+
41
+ Reporting-MTA: dns; mail.example.co.jp
42
+ X-Postfix-Queue-ID: 0E1D4CDC0054
43
+ X-Postfix-Sender: rfc822; nekochan@example.co.jp
44
+ Arrival-Date: Thu, 29 Apr 2019 23:34:45 +0900 (JST)
45
+
46
+ Final-Recipient: rfc822; neko@email.example.ua
47
+ Action: failed
48
+ Status: 5.0.0
49
+ Remote-MTA: dns; mx3.email.ua
50
+ Diagnostic-Code: smtp; 550 Mailbox is frozen. See http://mail.i.ua/err/3/
51
+
52
+ --0E1D4CDC0054.1562628010/mail.example.co.jp
53
+ Content-Description: Undelivered Message
54
+ Content-Type: message/rfc822
55
+
56
+ Return-Path: <nekochan@example.co.jp>
57
+ Received: by mail.example.co.jp (Postfix, from userid 2022)
58
+ id 0E1D4CDC0054; Thu, 29 Apr 2019 23:34:45 +0900 (JST)
59
+ To: neko@email.example.ua
60
+ Subject: Nyaan
61
+ From: <kijitora@example.com>
62
+ MIME-Version: 1.0
63
+ Content-Type: text/plain; charset=ISO-2022-JP
64
+ Content-Transfer-Encoding: 7bit
65
+ Message-Id: <20190429233445.0E1D4CDC0054@mail.example.co.jp>
66
+ Date: Thu, 29 Apr 2019 23:34:45 +0900 (JST)
67
+
68
+ Nyaan
69
+
70
+ --0E1D4CDC0054.1562628010/mail.example.co.jp--
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sisimai
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.25.2
4
+ version: 4.25.3
5
5
  platform: java
6
6
  authors:
7
7
  - azumakuniyuki
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2019-08-01 00:00:00.000000000 Z
11
+ date: 2019-09-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  requirement: !ruby/object:Gem::Requirement
@@ -528,6 +528,9 @@ files:
528
528
  - set-of-emails/maildir/bsd/email-postfix-56.eml
529
529
  - set-of-emails/maildir/bsd/email-postfix-57.eml
530
530
  - set-of-emails/maildir/bsd/email-postfix-58.eml
531
+ - set-of-emails/maildir/bsd/email-postfix-59.eml
532
+ - set-of-emails/maildir/bsd/email-postfix-60.eml
533
+ - set-of-emails/maildir/bsd/email-postfix-61.eml
531
534
  - set-of-emails/maildir/bsd/email-qmail-01.eml
532
535
  - set-of-emails/maildir/bsd/email-qmail-02.eml
533
536
  - set-of-emails/maildir/bsd/email-qmail-03.eml