sisimai 5.0.2-java → 5.1.0-java

Sign up to get free protection for your applications and to get access to all the features.
Files changed (168) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/codecovio.yml +35 -0
  3. data/.github/workflows/rake-test.yml +27 -24
  4. data/ChangeLog.md +62 -0
  5. data/Gemfile +2 -0
  6. data/README-JA.md +21 -18
  7. data/README.md +23 -20
  8. data/lib/sisimai/arf.rb +27 -8
  9. data/lib/sisimai/fact/json.rb +2 -2
  10. data/lib/sisimai/fact/yaml.rb +2 -2
  11. data/lib/sisimai/fact.rb +4 -19
  12. data/lib/sisimai/lhost/activehunter.rb +4 -3
  13. data/lib/sisimai/lhost/amavis.rb +4 -4
  14. data/lib/sisimai/lhost/amazonses.rb +6 -6
  15. data/lib/sisimai/lhost/amazonworkmail.rb +4 -4
  16. data/lib/sisimai/lhost/aol.rb +4 -4
  17. data/lib/sisimai/lhost/apachejames.rb +4 -4
  18. data/lib/sisimai/lhost/barracuda.rb +4 -4
  19. data/lib/sisimai/lhost/bigfoot.rb +4 -4
  20. data/lib/sisimai/lhost/biglobe.rb +4 -4
  21. data/lib/sisimai/lhost/courier.rb +4 -4
  22. data/lib/sisimai/lhost/domino.rb +4 -4
  23. data/lib/sisimai/lhost/dragonfly.rb +114 -0
  24. data/lib/sisimai/lhost/einsundeins.rb +4 -4
  25. data/lib/sisimai/lhost/exchange2003.rb +4 -3
  26. data/lib/sisimai/lhost/exchange2007.rb +4 -3
  27. data/lib/sisimai/lhost/exim.rb +4 -4
  28. data/lib/sisimai/lhost/ezweb.rb +4 -4
  29. data/lib/sisimai/lhost/facebook.rb +4 -4
  30. data/lib/sisimai/lhost/fml.rb +4 -4
  31. data/lib/sisimai/lhost/gmail.rb +4 -4
  32. data/lib/sisimai/lhost/gmx.rb +4 -4
  33. data/lib/sisimai/lhost/googlegroups.rb +4 -4
  34. data/lib/sisimai/lhost/gsuite.rb +4 -4
  35. data/lib/sisimai/lhost/imailserver.rb +4 -3
  36. data/lib/sisimai/lhost/interscanmss.rb +5 -4
  37. data/lib/sisimai/lhost/kddi.rb +4 -4
  38. data/lib/sisimai/lhost/mailfoundry.rb +4 -4
  39. data/lib/sisimai/lhost/mailmarshalsmtp.rb +6 -5
  40. data/lib/sisimai/lhost/mailru.rb +4 -4
  41. data/lib/sisimai/lhost/mcafee.rb +4 -4
  42. data/lib/sisimai/lhost/messagelabs.rb +4 -3
  43. data/lib/sisimai/lhost/messagingserver.rb +5 -4
  44. data/lib/sisimai/lhost/mfilter.rb +4 -4
  45. data/lib/sisimai/lhost/mxlogic.rb +3 -3
  46. data/lib/sisimai/lhost/notes.rb +4 -4
  47. data/lib/sisimai/lhost/office365.rb +4 -4
  48. data/lib/sisimai/lhost/opensmtpd.rb +9 -7
  49. data/lib/sisimai/lhost/outlook.rb +4 -4
  50. data/lib/sisimai/lhost/postfix.rb +4 -4
  51. data/lib/sisimai/lhost/powermta.rb +4 -4
  52. data/lib/sisimai/lhost/qmail.rb +10 -10
  53. data/lib/sisimai/lhost/receivingses.rb +4 -4
  54. data/lib/sisimai/lhost/sendgrid.rb +4 -4
  55. data/lib/sisimai/lhost/sendmail.rb +4 -4
  56. data/lib/sisimai/lhost/surfcontrol.rb +4 -4
  57. data/lib/sisimai/lhost/v5sendmail.rb +5 -4
  58. data/lib/sisimai/lhost/verizon.rb +4 -4
  59. data/lib/sisimai/lhost/x1.rb +3 -3
  60. data/lib/sisimai/lhost/x2.rb +3 -3
  61. data/lib/sisimai/lhost/x3.rb +3 -3
  62. data/lib/sisimai/lhost/x4.rb +3 -3
  63. data/lib/sisimai/lhost/x5.rb +3 -3
  64. data/lib/sisimai/lhost/x6.rb +3 -3
  65. data/lib/sisimai/lhost/yahoo.rb +4 -4
  66. data/lib/sisimai/lhost/yandex.rb +4 -4
  67. data/lib/sisimai/lhost/zoho.rb +4 -4
  68. data/lib/sisimai/lhost.rb +5 -5
  69. data/lib/sisimai/mail/maildir.rb +1 -1
  70. data/lib/sisimai/mail/stdin.rb +1 -1
  71. data/lib/sisimai/mda.rb +3 -3
  72. data/lib/sisimai/message.rb +9 -9
  73. data/lib/sisimai/order.rb +1 -0
  74. data/lib/sisimai/reason/badreputation.rb +1 -1
  75. data/lib/sisimai/reason/blocked.rb +1 -0
  76. data/lib/sisimai/reason/expired.rb +7 -0
  77. data/lib/sisimai/reason/filtered.rb +1 -0
  78. data/lib/sisimai/reason/mailboxfull.rb +3 -0
  79. data/lib/sisimai/reason/norelaying.rb +2 -0
  80. data/lib/sisimai/reason/rejected.rb +2 -1
  81. data/lib/sisimai/reason/suspend.rb +4 -0
  82. data/lib/sisimai/reason/userunknown.rb +4 -1
  83. data/lib/sisimai/reason.rb +8 -8
  84. data/lib/sisimai/rfc3464.rb +3 -3
  85. data/lib/sisimai/rfc3834.rb +2 -2
  86. data/lib/sisimai/rhost/apple.rb +92 -0
  87. data/lib/sisimai/rhost/cox.rb +81 -32
  88. data/lib/sisimai/rhost/franceptt.rb +84 -81
  89. data/lib/sisimai/rhost/godaddy.rb +205 -43
  90. data/lib/sisimai/rhost/google.rb +85 -72
  91. data/lib/sisimai/rhost/iua.rb +2 -2
  92. data/lib/sisimai/rhost/kddi.rb +6 -5
  93. data/lib/sisimai/rhost/microsoft.rb +12 -5
  94. data/lib/sisimai/rhost/mimecast.rb +15 -4
  95. data/lib/sisimai/rhost/nttdocomo.rb +4 -4
  96. data/lib/sisimai/rhost/spectrum.rb +100 -40
  97. data/lib/sisimai/rhost/tencent.rb +46 -25
  98. data/lib/sisimai/rhost/yahooinc.rb +110 -0
  99. data/lib/sisimai/rhost.rb +28 -35
  100. data/lib/sisimai/smtp/reply.rb +4 -3
  101. data/lib/sisimai/smtp/transcript.rb +3 -3
  102. data/lib/sisimai/version.rb +1 -1
  103. data/lib/sisimai.rb +0 -6
  104. data/set-of-emails/maildir/bsd/arf-26.eml +27 -0
  105. data/set-of-emails/maildir/bsd/lhost-dragonfly-01.eml +36 -0
  106. data/set-of-emails/maildir/bsd/lhost-dragonfly-02.eml +32 -0
  107. data/set-of-emails/maildir/bsd/lhost-dragonfly-03.eml +32 -0
  108. data/set-of-emails/maildir/bsd/lhost-dragonfly-04.eml +31 -0
  109. data/set-of-emails/maildir/bsd/lhost-dragonfly-05.eml +32 -0
  110. data/set-of-emails/maildir/bsd/lhost-dragonfly-06.eml +32 -0
  111. data/set-of-emails/maildir/bsd/lhost-dragonfly-07.eml +32 -0
  112. data/set-of-emails/maildir/bsd/lhost-dragonfly-08.eml +32 -0
  113. data/set-of-emails/maildir/bsd/lhost-dragonfly-09.eml +32 -0
  114. data/set-of-emails/maildir/bsd/lhost-dragonfly-10.eml +32 -0
  115. data/set-of-emails/maildir/bsd/lhost-dragonfly-11.eml +32 -0
  116. data/set-of-emails/maildir/bsd/lhost-dragonfly-12.eml +32 -0
  117. data/set-of-emails/maildir/bsd/lhost-dragonfly-13.eml +32 -0
  118. data/set-of-emails/maildir/bsd/lhost-dragonfly-14.eml +32 -0
  119. data/set-of-emails/maildir/bsd/lhost-dragonfly-15.eml +32 -0
  120. data/set-of-emails/maildir/bsd/lhost-dragonfly-16.eml +32 -0
  121. data/set-of-emails/maildir/bsd/lhost-dragonfly-17.eml +32 -0
  122. data/set-of-emails/maildir/bsd/lhost-dragonfly-18.eml +32 -0
  123. data/set-of-emails/maildir/bsd/lhost-dragonfly-19.eml +32 -0
  124. data/set-of-emails/maildir/bsd/lhost-dragonfly-20.eml +32 -0
  125. data/set-of-emails/maildir/bsd/lhost-dragonfly-21.eml +33 -0
  126. data/set-of-emails/maildir/bsd/lhost-dragonfly-22.eml +32 -0
  127. data/set-of-emails/maildir/bsd/lhost-dragonfly-23.eml +32 -0
  128. data/set-of-emails/maildir/bsd/lhost-dragonfly-24.eml +32 -0
  129. data/set-of-emails/maildir/bsd/lhost-dragonfly-25.eml +33 -0
  130. data/set-of-emails/maildir/bsd/lhost-dragonfly-26.eml +33 -0
  131. data/set-of-emails/maildir/bsd/lhost-dragonfly-27.eml +47 -0
  132. data/set-of-emails/maildir/bsd/lhost-dragonfly-28.eml +47 -0
  133. data/set-of-emails/maildir/bsd/lhost-dragonfly-29.eml +32 -0
  134. data/set-of-emails/maildir/bsd/lhost-dragonfly-30.eml +32 -0
  135. data/set-of-emails/maildir/bsd/lhost-opensmtpd-10.eml +58 -0
  136. data/set-of-emails/maildir/bsd/lhost-opensmtpd-11.eml +58 -0
  137. data/set-of-emails/maildir/bsd/lhost-opensmtpd-12.eml +62 -0
  138. data/set-of-emails/maildir/bsd/lhost-opensmtpd-13.eml +62 -0
  139. data/set-of-emails/maildir/bsd/lhost-opensmtpd-14.eml +58 -0
  140. data/set-of-emails/maildir/bsd/lhost-opensmtpd-15.eml +63 -0
  141. data/set-of-emails/maildir/bsd/lhost-opensmtpd-16.eml +62 -0
  142. data/set-of-emails/maildir/bsd/lhost-opensmtpd-17.eml +63 -0
  143. data/set-of-emails/maildir/bsd/lhost-qmail-11.eml +29 -0
  144. data/set-of-emails/maildir/bsd/lhost-qmail-12.eml +29 -0
  145. data/set-of-emails/maildir/bsd/lhost-qmail-13.eml +29 -0
  146. data/set-of-emails/maildir/bsd/lhost-qmail-14.eml +34 -0
  147. data/set-of-emails/maildir/bsd/lhost-qmail-15.eml +30 -0
  148. data/set-of-emails/maildir/bsd/lhost-qmail-16.eml +31 -0
  149. data/set-of-emails/maildir/bsd/lhost-qmail-17.eml +38 -0
  150. data/set-of-emails/maildir/bsd/lhost-qmail-18.eml +31 -0
  151. data/set-of-emails/maildir/bsd/lhost-qmail-19.eml +31 -0
  152. data/set-of-emails/maildir/bsd/lhost-qmail-20.eml +46 -0
  153. data/set-of-emails/maildir/bsd/lhost-qmail-21.eml +41 -0
  154. data/set-of-emails/maildir/bsd/lhost-qmail-22.eml +42 -0
  155. data/set-of-emails/maildir/bsd/lhost-qmail-23.eml +43 -0
  156. data/set-of-emails/maildir/bsd/lhost-qmail-24.eml +43 -0
  157. data/set-of-emails/maildir/bsd/lhost-qmail-25.eml +54 -0
  158. data/set-of-emails/maildir/bsd/rhost-apple-01.eml +79 -0
  159. data/set-of-emails/maildir/bsd/rhost-apple-02.eml +81 -0
  160. data/set-of-emails/maildir/bsd/rhost-apple-03.eml +75 -0
  161. data/set-of-emails/maildir/bsd/rhost-apple-04.eml +74 -0
  162. data/set-of-emails/maildir/bsd/rhost-microsoft-04.eml +86 -0
  163. data/set-of-emails/maildir/bsd/rhost-microsoft-05.eml +83 -0
  164. data/set-of-emails/maildir/bsd/rhost-yahooinc-01.eml +80 -0
  165. data/set-of-emails/maildir/bsd/rhost-yahooinc-02.eml +83 -0
  166. data/set-of-emails/maildir/bsd/rhost-yahooinc-03.eml +125 -0
  167. metadata +69 -3
  168. data/.travis.yml +0 -23
@@ -0,0 +1,83 @@
1
+ Return-Path: <>
2
+ Delivered-To: deadbeef@mailmagazine.example.com
3
+ Received: from u1.em.example.jp
4
+ by mbox3.em.example.jp with LMTP id pRi6D904298QQXvAukD22R
5
+ for <deadbeef@mailmagazine.example.com>; Tue, 17 Nov 2020 23:34:45 +0900
6
+ Received: by u1.em.example.jp (Postfix)
7
+ id 9UKnCx1J50z3ZQ2; Tue, 17 Nov 2020 23:34:45 +0900 (JST)
8
+ Date: Tue, 17 Nov 2020 23:34:45 +0900 (JST)
9
+ From: MAILER-DAEMON@u1.em.example.jp (Mail Delivery System)
10
+ Subject: Undelivered Mail Returned to Sender
11
+ To: deadbeef@mailmagazine.example.com
12
+ Auto-Submitted: auto-replied
13
+ MIME-Version: 1.0
14
+ Content-Type: multipart/report; report-type=delivery-status;
15
+ boundary="9UK8Prr4eZzSPQR.1605555025/u1.em.example.jp"
16
+ Message-Id: <9UKnCx1J50z3ZQ2@u1.em.example.jp>
17
+
18
+ This is a MIME-encapsulated message.
19
+
20
+ --9UK8Prr4eZzSPQR.1605555025/u1.em.example.jp
21
+ Content-Description: Notification
22
+ Content-Type: text/plain; charset=us-ascii
23
+
24
+ This is the mail system at host u1.em.example.jp.
25
+
26
+ I'm sorry to have to inform you that your message could not
27
+ be delivered to one or more recipients. It's attached below.
28
+
29
+ For further assistance, please send mail to postmaster.
30
+
31
+ If you do so, please include this problem report. You can
32
+ delete your own text from the attached returned message.
33
+
34
+ The mail system
35
+
36
+ <kijitora@y.example.ca>: host mta6.am0.yahoodns.net[67.195.204.72] said: 421
37
+ 4.7.0 [TSS04] Messages from 192.0.2.192 temporarily deferred due to
38
+ unexpected volume or user complaints - 4.16.55.1; see
39
+ https://postmaster.verizonmedia.com/error-codes (in reply to MAIL FROM
40
+ command)
41
+
42
+ --9UK8Prr4eZzSPQR.1605555025/u1.em.example.jp
43
+ Content-Description: Delivery report
44
+ Content-Type: message/delivery-status
45
+
46
+ Reporting-MTA: dns; u1.em.example.jp
47
+ X-Postfix-Queue-ID: 9UK8Prr4eZzSPQR
48
+ X-Postfix-Sender: rfc822; deadbeef@mailmagazine.example.com
49
+ Arrival-Date: Mon, 16 Nov 2020 23:34:45 +0900 (JST)
50
+
51
+ Final-Recipient: rfc822; kijitora@y.example.ca
52
+ Original-Recipient: rfc822;kijitora@y.example.ca
53
+ Action: failed
54
+ Status: 4.7.0
55
+ Remote-MTA: dns; mta6.am0.yahoodns.net
56
+ Diagnostic-Code: smtp; 421 4.7.0 [TSS04] Messages from 192.0.2.192
57
+ temporarily deferred due to unexpected volume or user complaints -
58
+ 4.16.55.1; see https://postmaster.verizonmedia.com/error-codes
59
+
60
+ --9UK8Prr4eZzSPQR.1605555025/u1.em.example.jp
61
+ Content-Description: Undelivered Message
62
+ Content-Type: message/rfc822
63
+
64
+ Return-Path: <deadbeef@mailmagazine.example.com>
65
+ Received: from u1.em.example.jp (localhost [127.0.0.1])
66
+ by u1.em.example.jp (Postfix) with ESMTP id 9UK8Prr4eZzSPQR
67
+ for <kijitora@y.example.ca>; Mon, 16 Nov 2020 23:34:45 +0900 (JST)
68
+ Received: from localhost (localhost [127.0.0.1])
69
+ by u1.em.example.jp (Postfix) with ESMTP id 9UK8P757b8z3ZQM
70
+ for <kijitora@y.example.ca>; Mon, 16 Nov 2020 23:34:45 +0900 (JST)
71
+ MIME-Version: 1.0
72
+ Content-Type: text/plain; charset=ISO-2022-JP
73
+ Content-Transfer-Encoding: quoted-printable
74
+ From: <neko@mailmagazine.example.com>
75
+ To: "Kijitora" <kijitora@y.example.ca>
76
+ Subject: Nyaan
77
+ Message-Id: <9UK8P757b8z3ZQM@u1.em.example.jp>
78
+ Date: Mon, 16 Nov 2020 23:34:45 +0900 (JST)
79
+ X-Virus-Scanned: ClamAV using ClamSMTP
80
+
81
+ Nyaan
82
+
83
+ --9UK8Prr4eZzSPQR.1605555025/u1.em.example.jp--
@@ -0,0 +1,125 @@
1
+ Return-Path: <>
2
+ Received: from mx2.example.jp (mx2.example.jp [192.0.2.222])
3
+ by aneyakoji.example.co.jp (V8/cf) with ESMTP id u8CJoVRB027731
4
+ for <postmaster@example.co.jp>; Tue, 13 Sep 2016 04:50:33 +0900
5
+ X-SenderID: Sendmail Sender-ID Filter v1.0.0 aneyakoji.example.co.jp u8CJoVRB027731
6
+ Authentication-Results: aneyakoji.example.co.jp; sender-id=none header.from=MAILER-DAEMON@mx2.example.jp
7
+ Received: from localhost (localhost)
8
+ by mx2.example.jp (V8/cf) id u8CJoQN4016081;
9
+ Tue, 13 Sep 2016 04:50:33 +0900
10
+ Date: Tue, 13 Sep 2016 04:50:33 +0900
11
+ From: Mail Delivery Subsystem <MAILER-DAEMON@mx2.example.jp>
12
+ Message-Id: <201609121950.u8CJoQN4016081@mx2.example.jp>
13
+ To: postmaster@mx2.example.jp
14
+ MIME-Version: 1.0
15
+ Content-Type: multipart/report; report-type=delivery-status;
16
+ boundary="u8CJoQN4016081.1473709833/mx2.example.jp"
17
+ Subject: Postmaster notify: see transcript for details
18
+ Auto-Submitted: auto-generated (postmaster-notification)
19
+
20
+ This is a MIME-encapsulated message
21
+
22
+ --u8CJoQN4016081.1473709833/mx2.example.jp
23
+
24
+ The original message was received at Tue, 13 Sep 2016 04:50:26 +0900
25
+ from localhost
26
+ with id u8CJoQN3016081
27
+
28
+ ----- The following addresses had permanent fatal errors -----
29
+ <this-local-part-does-not-exist@yahoo.com>
30
+ (reason: 554 delivery error: dd This user doesn't have a yahoo.com account (this-local-part-does-not-exist@yahoo.com) [0] - mta1061.mail.ne1.yahoo.com)
31
+
32
+ ----- Transcript of session follows -----
33
+ ... while talking to mta6.am0.yahoodns.net.:
34
+ >>> DATA
35
+ <<< 554 delivery error: dd This user doesn't have a yahoo.com account (this-local-part-does-not-exist@yahoo.com) [0] - mta1061.mail.ne1.yahoo.com
36
+ 554 5.0.0 Service unavailable
37
+
38
+ --u8CJoQN4016081.1473709833/mx2.example.jp
39
+ Content-Type: message/delivery-status
40
+
41
+ Reporting-MTA: dns; mx2.example.jp
42
+ Received-From-MTA: DNS; FF00FFFF.static.example.org
43
+ Arrival-Date: Tue, 13 Sep 2016 04:50:26 +0900
44
+
45
+ Final-Recipient: RFC822; this-local-part-does-not-exist@yahoo.com
46
+ Action: failed
47
+ Status: 5.0.0
48
+ Remote-MTA: DNS; mta6.am0.yahoodns.net
49
+ Diagnostic-Code: SMTP; 554 delivery error: dd This user doesn't have a yahoo.com account (this-local-part-does-not-exist@yahoo.com) [0] - mta1061.mail.ne1.yahoo.com
50
+ Last-Attempt-Date: Tue, 13 Sep 2016 04:50:30 +0900
51
+
52
+ --u8CJoQN4016081.1473709833/mx2.example.jp
53
+ Content-Type: message/rfc822
54
+
55
+ Return-Path: <MAILER-DAEMON>
56
+ Received: from localhost (localhost)
57
+ by mx2.example.jp (V8/cf) id u8CJoQN3016081;
58
+ Tue, 13 Sep 2016 04:50:26 +0900
59
+ Date: Tue, 13 Sep 2016 04:50:26 +0900
60
+ From: Mail Delivery Subsystem <MAILER-DAEMON>
61
+ Message-Id: <201609121950.u8CJoQN3016081@mx2.example.jp>
62
+ To: <this-local-part-does-not-exist@yahoo.com>
63
+ To: postmaster
64
+ MIME-Version: 1.0
65
+ Content-Type: multipart/report; report-type=delivery-status;
66
+ boundary="u8CJoQN3016081.1473709826/mx2.example.jp"
67
+ Subject: Returned mail: see transcript for details
68
+ Auto-Submitted: auto-generated (failure)
69
+
70
+ This is a MIME-encapsulated message
71
+
72
+ --u8CJoQN3016081.1473709826/mx2.example.jp
73
+
74
+ ...
75
+
76
+ --u8CJoQN3016081.1473709826/mx2.example.jp
77
+ Content-Type: message/delivery-status
78
+
79
+ Reporting-MTA: dns; mx2.example.jp
80
+ Received-From-MTA: DNS; FF00FFFF.static.example.org
81
+ Arrival-Date: Tue, 13 Sep 2016 04:50:25 +0900
82
+
83
+ Original-Recipient: rfc822;kijitora@neko.example.com
84
+ Final-Recipient: RFC822; kijitora@neko.example.com
85
+ Action: failed
86
+ Status: 5.3.5
87
+ Diagnostic-Code: SMTP; 553 5.3.5 system config error
88
+ Last-Attempt-Date: Tue, 13 Sep 2016 04:50:26 +0900
89
+
90
+ --u8CJoQN3016081.1473709826/mx2.example.jp
91
+ Content-Type: message/rfc822
92
+
93
+ Return-Path: <this-local-part-does-not-exist@yahoo.com>
94
+ Received: from mx.smtp.example.net (FF00FFFF.static.example.org [198.51.100.22])
95
+ by mx2.example.jp (V8/cf) with ESMTP id u8CJoPN3016079
96
+ for <kijitora@neko.example.com>; Tue, 13 Sep 2016 04:50:25 +0900
97
+ Message-Id: <201609121950.u8CJoPN3016079@mx2.example.jp>
98
+ Received: from User (unknown [203.0.113.2])
99
+ (Authenticated sender: server)
100
+ by mx.smtp.example.net (Postfix) with ESMTPA id 23EC336A7E;
101
+ Mon, 12 Sep 2016 13:35:38 +0200 (CEST)
102
+ Reply-To: <sironeko@example.ad.jp>
103
+ From: "NON-EXISTENT" <this-local-part-does-not-exist@yahoo.com>
104
+ Subject: Nyaan
105
+ Date: Mon, 12 Sep 2016 13:35:46 +0200
106
+ MIME-Version: 1.0
107
+ Content-Type: text/html;
108
+ charset="Windows-1251"
109
+ Content-Transfer-Encoding: 7bit
110
+ X-Priority: 3
111
+ X-MSMail-Priority: Normal
112
+ X-Mailer: Microsoft Outlook Express 6.00.2600.0000
113
+ X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000
114
+ To: undisclosed-recipients:;
115
+
116
+ <HTML><HEAD><TITLE></TITLE>
117
+ </HEAD>
118
+ <BODY bgcolor=#FFFFFF leftmargin=5 topmargin=5 rightmargin=5 bottommargin=5>
119
+ </BODY></HTML>
120
+
121
+ --u8CJoQN3016081.1473709826/mx2.example.jp--
122
+
123
+
124
+ --u8CJoQN4016081.1473709833/mx2.example.jp--
125
+
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: 5.0.2
4
+ version: 5.1.0
5
5
  platform: java
6
6
  authors:
7
7
  - azumakuniyuki
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-03-13 00:00:00.000000000 Z
11
+ date: 2024-07-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  requirement: !ruby/object:Gem::Requirement
@@ -80,10 +80,10 @@ executables: []
80
80
  extensions: []
81
81
  extra_rdoc_files: []
82
82
  files:
83
+ - ".github/workflows/codecovio.yml"
83
84
  - ".github/workflows/rake-test.yml"
84
85
  - ".gitignore"
85
86
  - ".rubocop.yml"
86
- - ".travis.yml"
87
87
  - ANALYTICAL-PRECISION
88
88
  - Benchmarks.mk
89
89
  - CONTRIBUTING
@@ -118,6 +118,7 @@ files:
118
118
  - lib/sisimai/lhost/biglobe.rb
119
119
  - lib/sisimai/lhost/courier.rb
120
120
  - lib/sisimai/lhost/domino.rb
121
+ - lib/sisimai/lhost/dragonfly.rb
121
122
  - lib/sisimai/lhost/einsundeins.rb
122
123
  - lib/sisimai/lhost/exchange2003.rb
123
124
  - lib/sisimai/lhost/exchange2007.rb
@@ -212,6 +213,7 @@ files:
212
213
  - lib/sisimai/rfc5322.rb
213
214
  - lib/sisimai/rfc5965.rb
214
215
  - lib/sisimai/rhost.rb
216
+ - lib/sisimai/rhost/apple.rb
215
217
  - lib/sisimai/rhost/cox.rb
216
218
  - lib/sisimai/rhost/franceptt.rb
217
219
  - lib/sisimai/rhost/godaddy.rb
@@ -223,6 +225,7 @@ files:
223
225
  - lib/sisimai/rhost/nttdocomo.rb
224
226
  - lib/sisimai/rhost/spectrum.rb
225
227
  - lib/sisimai/rhost/tencent.rb
228
+ - lib/sisimai/rhost/yahooinc.rb
226
229
  - lib/sisimai/smtp.rb
227
230
  - lib/sisimai/smtp/command.rb
228
231
  - lib/sisimai/smtp/error.rb
@@ -251,6 +254,7 @@ files:
251
254
  - set-of-emails/maildir/bsd/arf-23.eml
252
255
  - set-of-emails/maildir/bsd/arf-24.eml
253
256
  - set-of-emails/maildir/bsd/arf-25.eml
257
+ - set-of-emails/maildir/bsd/arf-26.eml
254
258
  - set-of-emails/maildir/bsd/lhost-activehunter-01.eml
255
259
  - set-of-emails/maildir/bsd/lhost-activehunter-02.eml
256
260
  - set-of-emails/maildir/bsd/lhost-amavis-01.eml
@@ -301,6 +305,36 @@ files:
301
305
  - set-of-emails/maildir/bsd/lhost-domino-01.eml
302
306
  - set-of-emails/maildir/bsd/lhost-domino-02.eml
303
307
  - set-of-emails/maildir/bsd/lhost-domino-03.eml
308
+ - set-of-emails/maildir/bsd/lhost-dragonfly-01.eml
309
+ - set-of-emails/maildir/bsd/lhost-dragonfly-02.eml
310
+ - set-of-emails/maildir/bsd/lhost-dragonfly-03.eml
311
+ - set-of-emails/maildir/bsd/lhost-dragonfly-04.eml
312
+ - set-of-emails/maildir/bsd/lhost-dragonfly-05.eml
313
+ - set-of-emails/maildir/bsd/lhost-dragonfly-06.eml
314
+ - set-of-emails/maildir/bsd/lhost-dragonfly-07.eml
315
+ - set-of-emails/maildir/bsd/lhost-dragonfly-08.eml
316
+ - set-of-emails/maildir/bsd/lhost-dragonfly-09.eml
317
+ - set-of-emails/maildir/bsd/lhost-dragonfly-10.eml
318
+ - set-of-emails/maildir/bsd/lhost-dragonfly-11.eml
319
+ - set-of-emails/maildir/bsd/lhost-dragonfly-12.eml
320
+ - set-of-emails/maildir/bsd/lhost-dragonfly-13.eml
321
+ - set-of-emails/maildir/bsd/lhost-dragonfly-14.eml
322
+ - set-of-emails/maildir/bsd/lhost-dragonfly-15.eml
323
+ - set-of-emails/maildir/bsd/lhost-dragonfly-16.eml
324
+ - set-of-emails/maildir/bsd/lhost-dragonfly-17.eml
325
+ - set-of-emails/maildir/bsd/lhost-dragonfly-18.eml
326
+ - set-of-emails/maildir/bsd/lhost-dragonfly-19.eml
327
+ - set-of-emails/maildir/bsd/lhost-dragonfly-20.eml
328
+ - set-of-emails/maildir/bsd/lhost-dragonfly-21.eml
329
+ - set-of-emails/maildir/bsd/lhost-dragonfly-22.eml
330
+ - set-of-emails/maildir/bsd/lhost-dragonfly-23.eml
331
+ - set-of-emails/maildir/bsd/lhost-dragonfly-24.eml
332
+ - set-of-emails/maildir/bsd/lhost-dragonfly-25.eml
333
+ - set-of-emails/maildir/bsd/lhost-dragonfly-26.eml
334
+ - set-of-emails/maildir/bsd/lhost-dragonfly-27.eml
335
+ - set-of-emails/maildir/bsd/lhost-dragonfly-28.eml
336
+ - set-of-emails/maildir/bsd/lhost-dragonfly-29.eml
337
+ - set-of-emails/maildir/bsd/lhost-dragonfly-30.eml
304
338
  - set-of-emails/maildir/bsd/lhost-einsundeins-02.eml
305
339
  - set-of-emails/maildir/bsd/lhost-einsundeins-03.eml
306
340
  - set-of-emails/maildir/bsd/lhost-exchange2003-01.eml
@@ -490,6 +524,14 @@ files:
490
524
  - set-of-emails/maildir/bsd/lhost-opensmtpd-04.eml
491
525
  - set-of-emails/maildir/bsd/lhost-opensmtpd-05.eml
492
526
  - set-of-emails/maildir/bsd/lhost-opensmtpd-06.eml
527
+ - set-of-emails/maildir/bsd/lhost-opensmtpd-10.eml
528
+ - set-of-emails/maildir/bsd/lhost-opensmtpd-11.eml
529
+ - set-of-emails/maildir/bsd/lhost-opensmtpd-12.eml
530
+ - set-of-emails/maildir/bsd/lhost-opensmtpd-13.eml
531
+ - set-of-emails/maildir/bsd/lhost-opensmtpd-14.eml
532
+ - set-of-emails/maildir/bsd/lhost-opensmtpd-15.eml
533
+ - set-of-emails/maildir/bsd/lhost-opensmtpd-16.eml
534
+ - set-of-emails/maildir/bsd/lhost-opensmtpd-17.eml
493
535
  - set-of-emails/maildir/bsd/lhost-outlook-01.eml
494
536
  - set-of-emails/maildir/bsd/lhost-outlook-02.eml
495
537
  - set-of-emails/maildir/bsd/lhost-outlook-03.eml
@@ -578,6 +620,21 @@ files:
578
620
  - set-of-emails/maildir/bsd/lhost-qmail-08.eml
579
621
  - set-of-emails/maildir/bsd/lhost-qmail-09.eml
580
622
  - set-of-emails/maildir/bsd/lhost-qmail-10.eml
623
+ - set-of-emails/maildir/bsd/lhost-qmail-11.eml
624
+ - set-of-emails/maildir/bsd/lhost-qmail-12.eml
625
+ - set-of-emails/maildir/bsd/lhost-qmail-13.eml
626
+ - set-of-emails/maildir/bsd/lhost-qmail-14.eml
627
+ - set-of-emails/maildir/bsd/lhost-qmail-15.eml
628
+ - set-of-emails/maildir/bsd/lhost-qmail-16.eml
629
+ - set-of-emails/maildir/bsd/lhost-qmail-17.eml
630
+ - set-of-emails/maildir/bsd/lhost-qmail-18.eml
631
+ - set-of-emails/maildir/bsd/lhost-qmail-19.eml
632
+ - set-of-emails/maildir/bsd/lhost-qmail-20.eml
633
+ - set-of-emails/maildir/bsd/lhost-qmail-21.eml
634
+ - set-of-emails/maildir/bsd/lhost-qmail-22.eml
635
+ - set-of-emails/maildir/bsd/lhost-qmail-23.eml
636
+ - set-of-emails/maildir/bsd/lhost-qmail-24.eml
637
+ - set-of-emails/maildir/bsd/lhost-qmail-25.eml
581
638
  - set-of-emails/maildir/bsd/lhost-receivingses-01.eml
582
639
  - set-of-emails/maildir/bsd/lhost-receivingses-02.eml
583
640
  - set-of-emails/maildir/bsd/lhost-receivingses-03.eml
@@ -724,6 +781,10 @@ files:
724
781
  - set-of-emails/maildir/bsd/rfc3834-03.eml
725
782
  - set-of-emails/maildir/bsd/rfc3834-04.eml
726
783
  - set-of-emails/maildir/bsd/rfc3834-05.eml
784
+ - set-of-emails/maildir/bsd/rhost-apple-01.eml
785
+ - set-of-emails/maildir/bsd/rhost-apple-02.eml
786
+ - set-of-emails/maildir/bsd/rhost-apple-03.eml
787
+ - set-of-emails/maildir/bsd/rhost-apple-04.eml
727
788
  - set-of-emails/maildir/bsd/rhost-cox-01.eml
728
789
  - set-of-emails/maildir/bsd/rhost-franceptt-01.eml
729
790
  - set-of-emails/maildir/bsd/rhost-franceptt-02.eml
@@ -752,6 +813,8 @@ files:
752
813
  - set-of-emails/maildir/bsd/rhost-microsoft-01.eml
753
814
  - set-of-emails/maildir/bsd/rhost-microsoft-02.eml
754
815
  - set-of-emails/maildir/bsd/rhost-microsoft-03.eml
816
+ - set-of-emails/maildir/bsd/rhost-microsoft-04.eml
817
+ - set-of-emails/maildir/bsd/rhost-microsoft-05.eml
755
818
  - set-of-emails/maildir/bsd/rhost-mimecast-01.eml
756
819
  - set-of-emails/maildir/bsd/rhost-mimecast-02.eml
757
820
  - set-of-emails/maildir/bsd/rhost-nttdocomo-01.eml
@@ -761,6 +824,9 @@ files:
761
824
  - set-of-emails/maildir/bsd/rhost-tencent-01.eml
762
825
  - set-of-emails/maildir/bsd/rhost-tencent-02.eml
763
826
  - set-of-emails/maildir/bsd/rhost-tencent-03.eml
827
+ - set-of-emails/maildir/bsd/rhost-yahooinc-01.eml
828
+ - set-of-emails/maildir/bsd/rhost-yahooinc-02.eml
829
+ - set-of-emails/maildir/bsd/rhost-yahooinc-03.eml
764
830
  - set-of-emails/maildir/dos/arf-01.eml
765
831
  - set-of-emails/maildir/dos/lhost-activehunter-01.eml
766
832
  - set-of-emails/maildir/dos/lhost-amavis-01.eml
data/.travis.yml DELETED
@@ -1,23 +0,0 @@
1
- language: ruby
2
- rvm:
3
- # See http://rubies.travis-ci.org for Precompiled Ruby Versions
4
- # - 2.1.1
5
- # - 2.2.10
6
- # - 2.3.0
7
- - 2.4.9
8
- # - 2.5.0
9
- - 2.6.6
10
- - 2.7.0
11
- # - jruby-9.0.5.0
12
- # - jruby-9.1.9.0
13
- before_install:
14
- script:
15
- - make user-test
16
- sudo: false
17
- notifications:
18
- recipients:
19
- - azumakuniyuki+travis-ci.org@gmail.com
20
- email:
21
- on_success: change
22
- on_failure: always
23
-