emailengine-app 2.61.1 → 2.61.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (136) hide show
  1. package/CHANGELOG.md +9 -0
  2. package/data/google-crawlers.json +1 -1
  3. package/lib/account/account-state.js +248 -0
  4. package/lib/account.js +17 -178
  5. package/lib/api-routes/account-routes.js +1006 -0
  6. package/lib/api-routes/message-routes.js +1377 -0
  7. package/lib/consts.js +12 -2
  8. package/lib/email-client/base-client.js +282 -771
  9. package/lib/email-client/gmail/gmail-api.js +243 -0
  10. package/lib/email-client/gmail-client.js +145 -53
  11. package/lib/email-client/imap/mailbox.js +24 -698
  12. package/lib/email-client/imap/sync-operations.js +812 -0
  13. package/lib/email-client/imap-client.js +1 -1
  14. package/lib/email-client/message-builder.js +566 -0
  15. package/lib/email-client/notification-handler.js +314 -0
  16. package/lib/email-client/outlook/graph-api.js +326 -0
  17. package/lib/email-client/outlook-client.js +159 -113
  18. package/lib/email-client/smtp-pool-manager.js +196 -0
  19. package/lib/imapproxy/imap-server.js +3 -12
  20. package/lib/oauth/gmail.js +4 -4
  21. package/lib/oauth/mail-ru.js +30 -5
  22. package/lib/oauth/outlook.js +57 -3
  23. package/lib/oauth/pubsub/google.js +30 -11
  24. package/lib/oauth/scope-checker.js +202 -0
  25. package/lib/oauth2-apps.js +8 -4
  26. package/lib/redis-operations.js +484 -0
  27. package/lib/routes-ui.js +283 -2582
  28. package/lib/tools.js +4 -196
  29. package/lib/ui-routes/account-routes.js +1931 -0
  30. package/lib/ui-routes/admin-config-routes.js +1233 -0
  31. package/lib/ui-routes/admin-entities-routes.js +2367 -0
  32. package/lib/ui-routes/oauth-routes.js +992 -0
  33. package/lib/utils/network.js +237 -0
  34. package/package.json +9 -9
  35. package/sbom.json +1 -1
  36. package/static/js/app.js +5 -5
  37. package/static/licenses.html +78 -18
  38. package/translations/de.mo +0 -0
  39. package/translations/de.po +85 -82
  40. package/translations/en.mo +0 -0
  41. package/translations/en.po +63 -71
  42. package/translations/et.mo +0 -0
  43. package/translations/et.po +84 -82
  44. package/translations/fr.mo +0 -0
  45. package/translations/fr.po +85 -82
  46. package/translations/ja.mo +0 -0
  47. package/translations/ja.po +84 -82
  48. package/translations/messages.pot +74 -87
  49. package/translations/nl.mo +0 -0
  50. package/translations/nl.po +86 -82
  51. package/translations/pl.mo +0 -0
  52. package/translations/pl.po +84 -82
  53. package/views/account/security.hbs +4 -4
  54. package/views/accounts/account.hbs +13 -13
  55. package/views/accounts/register/imap-server.hbs +12 -12
  56. package/views/config/document-store/pre-processing/index.hbs +4 -2
  57. package/views/config/oauth/app.hbs +6 -7
  58. package/views/config/oauth/index.hbs +2 -2
  59. package/views/config/service.hbs +3 -4
  60. package/views/dashboard.hbs +5 -7
  61. package/views/error.hbs +22 -7
  62. package/views/gateways/gateway.hbs +2 -2
  63. package/views/partials/add_account_modal.hbs +7 -10
  64. package/views/partials/document_store_header.hbs +1 -1
  65. package/views/partials/editor_scope_info.hbs +0 -1
  66. package/views/partials/oauth_config_header.hbs +1 -1
  67. package/views/partials/side_menu.hbs +3 -3
  68. package/views/partials/webhook_form.hbs +2 -2
  69. package/views/templates/index.hbs +1 -1
  70. package/views/templates/template.hbs +8 -8
  71. package/views/tokens/index.hbs +6 -6
  72. package/views/tokens/new.hbs +1 -1
  73. package/views/webhooks/index.hbs +4 -4
  74. package/views/webhooks/webhook.hbs +7 -7
  75. package/workers/api.js +148 -2436
  76. package/workers/smtp.js +2 -1
  77. package/lib/imapproxy/imap-core/test/client.js +0 -46
  78. package/lib/imapproxy/imap-core/test/fixtures/append.eml +0 -1196
  79. package/lib/imapproxy/imap-core/test/fixtures/chunks.js +0 -44
  80. package/lib/imapproxy/imap-core/test/fixtures/fix1.eml +0 -6
  81. package/lib/imapproxy/imap-core/test/fixtures/fix2.eml +0 -599
  82. package/lib/imapproxy/imap-core/test/fixtures/fix3.eml +0 -32
  83. package/lib/imapproxy/imap-core/test/fixtures/fix4.eml +0 -6
  84. package/lib/imapproxy/imap-core/test/fixtures/mimetorture.eml +0 -599
  85. package/lib/imapproxy/imap-core/test/fixtures/mimetorture.js +0 -2740
  86. package/lib/imapproxy/imap-core/test/fixtures/mimetorture.json +0 -1411
  87. package/lib/imapproxy/imap-core/test/fixtures/mimetree.js +0 -85
  88. package/lib/imapproxy/imap-core/test/fixtures/nodemailer.eml +0 -582
  89. package/lib/imapproxy/imap-core/test/fixtures/ryan_finnie_mime_torture.eml +0 -599
  90. package/lib/imapproxy/imap-core/test/fixtures/simple.eml +0 -42
  91. package/lib/imapproxy/imap-core/test/fixtures/simple.json +0 -164
  92. package/lib/imapproxy/imap-core/test/imap-compile-stream-test.js +0 -671
  93. package/lib/imapproxy/imap-core/test/imap-compiler-test.js +0 -272
  94. package/lib/imapproxy/imap-core/test/imap-indexer-test.js +0 -236
  95. package/lib/imapproxy/imap-core/test/imap-parser-test.js +0 -922
  96. package/lib/imapproxy/imap-core/test/memory-notifier.js +0 -129
  97. package/lib/imapproxy/imap-core/test/prepare.sh +0 -74
  98. package/lib/imapproxy/imap-core/test/protocol-test.js +0 -1756
  99. package/lib/imapproxy/imap-core/test/search-test.js +0 -1356
  100. package/lib/imapproxy/imap-core/test/test-client.js +0 -152
  101. package/lib/imapproxy/imap-core/test/test-server.js +0 -623
  102. package/lib/imapproxy/imap-core/test/tools-test.js +0 -22
  103. package/test/api-test.js +0 -899
  104. package/test/autoreply-test.js +0 -327
  105. package/test/bounce-test.js +0 -151
  106. package/test/complaint-test.js +0 -256
  107. package/test/fixtures/autoreply/LICENSE +0 -27
  108. package/test/fixtures/autoreply/rfc3834-01.eml +0 -23
  109. package/test/fixtures/autoreply/rfc3834-02.eml +0 -24
  110. package/test/fixtures/autoreply/rfc3834-03.eml +0 -26
  111. package/test/fixtures/autoreply/rfc3834-04.eml +0 -48
  112. package/test/fixtures/autoreply/rfc3834-05.eml +0 -19
  113. package/test/fixtures/autoreply/rfc3834-06.eml +0 -59
  114. package/test/fixtures/bounces/163.eml +0 -2521
  115. package/test/fixtures/bounces/fastmail.eml +0 -242
  116. package/test/fixtures/bounces/gmail.eml +0 -252
  117. package/test/fixtures/bounces/hotmail.eml +0 -655
  118. package/test/fixtures/bounces/mailru.eml +0 -121
  119. package/test/fixtures/bounces/outlook.eml +0 -1107
  120. package/test/fixtures/bounces/postfix.eml +0 -101
  121. package/test/fixtures/bounces/rambler.eml +0 -116
  122. package/test/fixtures/bounces/workmail.eml +0 -142
  123. package/test/fixtures/bounces/yahoo.eml +0 -139
  124. package/test/fixtures/bounces/zoho.eml +0 -83
  125. package/test/fixtures/bounces/zonemta.eml +0 -100
  126. package/test/fixtures/complaints/LICENSE +0 -27
  127. package/test/fixtures/complaints/amazonses.eml +0 -72
  128. package/test/fixtures/complaints/dmarc.eml +0 -59
  129. package/test/fixtures/complaints/hotmail.eml +0 -49
  130. package/test/fixtures/complaints/optout.eml +0 -40
  131. package/test/fixtures/complaints/standard-arf.eml +0 -68
  132. package/test/fixtures/complaints/yahoo.eml +0 -68
  133. package/test/oauth2-apps-test.js +0 -301
  134. package/test/sendonly-test.js +0 -160
  135. package/test/test-config.js +0 -34
  136. package/test/webhooks-server.js +0 -39
@@ -1,100 +0,0 @@
1
- Delivered-To: andris@zone.ee
2
- Return-Path: <>
3
- Authentication-Results: zonemx.eu;
4
- spf=none smtp.helo=MTA-244-113.TLL07.ZONEAS.EU;
5
- spf=none (zonemx.eu: mta-244-113.tll07.zoneas.eu does not designate permitted sender hosts) smtp.mailfrom=postmaster@MTA-244-113.TLL07.ZONEAS.EU smtp.helo=MTA-244-113.TLL07.ZONEAS.EU;
6
- dkim=none (message not signed);
7
- dmarc=none header.from=zoneas.eu;
8
- bimi=skipped (DMARC not enabled)
9
- Received-SPF: none (zonemx.eu: mta-244-113.tll07.zoneas.eu does not designate permitted sender hosts) client-ip=85.234.244.113;
10
- Received-SPF: None (zonemx.eu: domain of MTA-244-113.TLL07.ZONEAS.EU does not designate 85.234.244.113 as permitted sender) receiver=zonemx.eu; identity=helo; client-ip=85.234.244.113 helo=MTA-244-113.TLL07.ZONEAS.EU; envelope-from=<>
11
- Received: from MTA-244-113.TLL07.ZONEAS.EU (mta-244-113.tll07.zoneas.eu [85.234.244.113])
12
- by zonemx.eu (Haraka/2.8.28) with ESMTPS id 2BD4DFFE-AED2-49EF-8113-BCABF6DCC2E4.1
13
- envelope-from <>
14
- tls TLS_AES_256_GCM_SHA384;
15
- Mon, 10 Oct 2022 05:24:53 +0000
16
- Received: from localhost
17
- by MTA-244-113.TLL07.ZONEAS.EU (ZoneMTA Forwarder) with HTTP id 183c05a63c80006433.001
18
- for <andris@zone.ee>;
19
- Mon, 10 Oct 2022 05:24:52 +0000
20
- Content-Type: multipart/report; report-type=delivery-status;
21
- boundary="--_NmP-d247861ba436899a-Part_1"
22
- From: Mail Delivery Subsystem <mailer-daemon@mta-244-116.tll07.zoneas.eu>
23
- To: andris@zone.ee
24
- X-Failed-Recipients: sdffasdfgfasfadas@hot.ee
25
- Auto-Submitted: auto-replied
26
- Subject: Delivery Status Notification (Failure)
27
- In-Reply-To: <48a84e64-d471-cfa6-3ea5-f10cd8571135@zone.ee>
28
- References: <48a84e64-d471-cfa6-3ea5-f10cd8571135@zone.ee>
29
- Date: Mon, 10 Oct 2022 05:24:52 +0000
30
- Message-ID:
31
- <23746cc4-9d7b-04fc-10d9-4eda436ecf51@mta-244-116.tll07.zoneas.eu>
32
- MIME-Version: 1.0
33
- X-Rspamd-Bar: --
34
- X-Rspamd-Report: AI_THINKS_FINE(-0.5) BAYES_HAM(-3) BOUNCE(-0.1) MIME_GOOD(-0.1) AUTH_NA(1) MX_GOOD(-0.01)
35
- X-Rspamd-Score: -2.71
36
-
37
- ----_NmP-d247861ba436899a-Part_1
38
- Content-Type: text/plain
39
- Content-Description: Notification
40
- Content-Transfer-Encoding: quoted-printable
41
-
42
- Delivery to the following recipient failed permanently:
43
- sdffasdfgfasfadas@hot.ee
44
-
45
- Technical details of permanent failure:
46
-
47
- 550 5.1.1 <sdffasdfgfasfadas@hot.ee>: Recipient address rejected: User =
48
- unknown in relay recipient table
49
-
50
-
51
- ----_NmP-d247861ba436899a-Part_1
52
- Content-Type: message/delivery-status
53
- Content-Description: Delivery report
54
-
55
- Reporting-MTA: dns; MTA-244-116.TLL07.ZONEAS.EU
56
- X-ZoneMTA-Queue-ID: 183c05a3c6f0002819
57
- X-ZoneMTA-Sender: rfc822; andris@zone.ee
58
- Arrival-Date: Mon, 10 Oct 2022 05:24:42 +0000
59
-
60
- Final-Recipient: rfc822; sdffasdfgfasfadas@hot.ee
61
- Action: failed
62
- Status: 5.0.0
63
- Remote-MTA: dns; mx1.hot.ee
64
- Diagnostic-Code: smtp; 550 5.1.1 <sdffasdfgfasfadas@hot.ee>: Recipient address rejected: User unknown in relay recipient table
65
-
66
-
67
- ----_NmP-d247861ba436899a-Part_1
68
- Content-Type: text/rfc822-headers
69
- Content-Description: Undelivered Message Headers
70
- Content-Transfer-Encoding: quoted-printable
71
-
72
- DKIM-Signature: v=3D1; a=3Drsa-sha256; c=3Drelaxed/relaxed; d=3Dzone.ee; =
73
- q=3Ddns/txt;
74
- s=3Dzone; bh=3DVA9a5dH3ChQ4o1/sHrEPbvqxUVCr7FZx9vq6l8rWFp0=3D;
75
- h=3Dfrom:subject:date:message-id:to:mime-version:content-type;
76
- b=3DB27LMu0kiNk6skaFTSYAe1a2byZoC+F4YRodDNmBwsuKTY0ihVmgunoiDg3AvhVqOeuzzO=
77
- iwk
78
- +/kMeI0iltc7de6wOUdwwRq0N8mpgL7/WikuhmdE/YXjbrb4fFDSd0zHyTmATdEFoAkOcJ9KNf=
79
- M
80
- p6A83s2DAudPTjyqmh16C9qUDSU4jhpydUdUqLTkyK/ieLQ3WDN45kfCfA51jnti4NJTPjokxB=
81
- n
82
- KPws1I0dkoaG0/KVeHn2E2aj5gxzVyV3vQ+BDe/uH5oCxXx3Blj/qCkuq2LyjnFVy1mlJSMVgp=
83
- q
84
- M1TUBN98hrJJRWUoKSZf2LD6g2jdbJ9bAH5P2Gb+9mVw=3D=3D
85
- Received: from localhost (Authenticated sender: andris@zone.ee)
86
- by MTA-244-116.TLL07.ZONEAS.EU (ZoneMTA Forwarder) with API id =
87
- 183c05a3c6f0002819.001
88
- for <sdffasdfgfasfadas@hot.ee>;
89
- Mon, 10 Oct 2022 05:24:42 +0000
90
- Content-Type: multipart/alternative;
91
- boundary=3D"--_NmP-3d8f319c9d7060cb-Part_1"
92
- From: Andris Reinman <andris@zone.ee>
93
- To: sdffasdfgfasfadas@hot.ee
94
- Subject: proovikas
95
- Date: Mon, 10 Oct 2022 05:24:49 +0000
96
- Message-ID: <48a84e64-d471-cfa6-3ea5-f10cd8571135@zone.ee>
97
- MIME-Version: 1.0
98
-
99
-
100
- ----_NmP-d247861ba436899a-Part_1--
@@ -1,27 +0,0 @@
1
- Email fixtures in this directory are from:
2
- https://github.com/sisimai/set-of-emails/
3
-
4
- THIS SOFTWARE IS DISTRIBUTED UNDER THE FOLLOWING BSD 2-CLAUSE LICENSE:
5
- Copyright (C) 2014, azumakuniyuki
6
-
7
- Redistribution and use in source and binary forms, with or without
8
- modification, are permitted provided that the following conditions are met:
9
-
10
- 1. Redistributions of source code must retain the above copyright notice,
11
- this list of conditions and the following disclaimer.
12
-
13
- 2. Redistributions in binary form must reproduce the above copyright notice,
14
- this list of conditions and the following disclaimer in the documentation
15
- and/or other materials provided with the distribution.
16
-
17
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
18
- AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19
- IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20
- ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
21
- LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
22
- CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
23
- SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
24
- INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
25
- CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
26
- ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
27
- POSSIBILITY OF SUCH DAMAGE.
@@ -1,72 +0,0 @@
1
- X-Apparently-To: root@example.jp; Thu, 29 Apr 2017 23:34:45 +0000
2
- Return-Path: <no-reply@amazonses.com>
3
- Received-SPF: pass (domain of amazonses.com designates 192.0.2.222 as permitted sender)
4
- X-YMailISG: ...
5
- X-Originating-IP: [192.0.2.222]
6
- Authentication-Results: mta2222.biz.mail.sg2.yahoo.com from=email-abuse.amazonses.com; domainkeys=neutral (no sig); from=arf.mail.yahoo.com; dkim=permerror (bad sig)
7
- Received: from 127.0.0.1 (EHLO a22-22.smtp-out.amazonses.com) (192.0.2.222)
8
- by mta2222.biz.mail.sg2.yahoo.com with SMTPS; Thu, 29 Apr 2017 23:34:45 +0000
9
- DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=arf.mail.yahoo.com; s=arf; ...
10
- Date: Thu, 29 Apr 2017 23:34:45 +0000
11
- X-yahoo-newman-expires: 2222222222
12
- From: complaints@email-abuse.amazonses.com
13
- To: root@example.jp
14
- Message-ID: <222222222222eeee-22222222-2222-2222-2222-2222222222222222222@email.amazonses.com>
15
- Subject: Fw: Nyaan
16
- MIME-Version: 1.0
17
- Content-Type: multipart/report; report-type=feedback-report;
18
- boundary="----=_Part_22220022_2222222200.22222222222"
19
- X-Yahoo-Newman-Property:
20
- X-Yahoo-Newman-Id:
21
- X-SES-Outgoing: 2017.04.29-192.0.2.222
22
- Content-Length: 2022
23
-
24
- ------=_Part_22220022_2222222200.22222222222
25
- Content-Type: text/plain; charset=us-ascii
26
- Content-Transfer-Encoding: 7bit
27
- Content-Disposition: inline
28
-
29
- This is an email abuse report for an email message from amazonses.com on Thu, 29 Apr 2017 23:34:45 +0000
30
-
31
- ------=_Part_22220022_2222222200.22222222222
32
- Content-Type: message/feedback-report
33
- Content-Transfer-Encoding: 7bit
34
- Content-Disposition: inline
35
-
36
- Feedback-Type: abuse
37
- User-Agent: Yahoo!-Mail-Feedback/2.0
38
- Version: 0.1
39
- Original-Mail-From: <2222222222222222-22222222-0000-eeee-ffff-222222222222-222222@amazonses.com>
40
- Original-Rcpt-To: kijitora@y.example.com
41
- Received-Date: Thu, 29 Apr 2017 23:34:45 +0000
42
- Reported-Domain: amazonses.com
43
- Authentication-Results: mta2222.mail.bf2.yahoo.com from=example.jp; domainkeys=neutral (no sig); from=amazonses.com; dkim=pass (ok)
44
-
45
- ------=_Part_22220022_2222222200.22222222222
46
- Content-Type: message/rfc822
47
- Content-Disposition: inline
48
-
49
- X-Apparently-To: kijitora@yahoo.com; Thu, 29 Apr 2017 23:34:45 +0000
50
- Return-Path: <222222222222eeee-00000000-2222-ffff-1111-333333332222-ffffff@amazonses.com>
51
- Received-SPF: pass (domain of amazonses.com designates 192.0.2.22 as permitted sender)
52
- X-YMailISG: ...
53
- X-Originating-IP: [192.0.2.1]
54
- Authentication-Results: mta2222.mail.bf2.yahoo.com from=example.jp; domainkeys=neutral (no sig); from=amazonses.com; dkim=pass (ok)
55
- Received: from 127.0.0.1 (EHLO a2-22.smtp-out.amazonses.com) (192.0.2.2)
56
- by mta2222.mail.bf2.yahoo.com with SMTPS; Thu, 29 Apr 2017 23:34:45 +0000
57
- DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/simple; ...
58
- Content-Type: text/plain; charset=us-ascii
59
- MIME-Version: 1.0
60
- Date: Thu, 29 Apr 2017 23:34:45 +0000
61
- Content-Transfer-Encoding: quoted-printable
62
- Subject: Nyaan
63
- From: Kijitora <kijitora@example.jp>
64
- Message-ID: <2222222222222222-00000000-eeee-eeee-ffff-222222222222-111111@email.amazonses.com>
65
- To: kijitora@yahoo.com
66
- X-SES-Outgoing: 2017.04.29-192.0.2.2
67
- Feedback-ID: 2
68
- Content-Length: 22
69
-
70
- Nyaan
71
-
72
- ------=_Part_22220022_2222222200.22222222222--
@@ -1,59 +0,0 @@
1
- Received: from [127.0.0.1] ([localhost])
2
- by neko.example.org (envelope-from <dmarc-noreply@example.com>)
3
- (ecelerity 3.6.5.1 r(Core:3.6.5.0)) with UNKNOWN
4
- id 22/22-00000-00000225; Thu, 29 Apr 2015 23:34:45 +0000
5
- Date: Thu, 29 Apr 2015 23:34:45 +0000
6
- Message-ID: <22.220000.0000.00000200@example.org>
7
- Subject: DMARC Forensic report for example.net Mail-From:sironeko@example.org IP:192.0.2.222
8
- To: dmarc-noreply@example.com
9
- From: dmarc-noreply@example.com
10
- Content-Type: multipart/report; report-type=feedback-report;
11
- boundary="_----NekoNyaan/222nnn300===_22/00-22002-00000225"
12
-
13
- --_----NekoNyaan/222nnn300===_22/00-22002-00000225
14
- Content-Type: text/plain; charset="US-ASCII"
15
- Content-Transfer-Encoding: 7bit
16
-
17
- This is an email abuse report for an email message received from IP 192.0.2.222 on Thu, 29 Apr 2015 23:34:45 +0000.
18
- The message below did not meet the sending domain's dmarc policy.
19
- For more information about this format please see http://tools.ietf.org/html/rfc6591 .
20
-
21
- --_----NekoNyaan/222nnn300===_22/00-22002-00000225
22
- Content-Type: message/feedback-report
23
-
24
- Feedback-Type: auth-failure
25
- User-Agent: Lua/1.0
26
- Version: 1.0
27
- Original-Mail-From: sironeko@example.org
28
- Original-Rcpt-To: kijitora@example.com
29
- Arrival-Date: Thu, 29 Apr 2015 23:34:45 +0000
30
- Message-ID: <000000000.2222222.1500000000222@example.net>
31
- Authentication-Results: dmarc=fail (p=none; dis=none) header.from=example.org
32
- Source-IP: 192.0.2.222
33
- Delivery-Result: delivered
34
- Auth-Failure: dmarc
35
- Reported-Domain: example.net
36
-
37
- --_----NekoNyaan/222nnn300===_22/00-22002-00000225
38
- Content-Type: message/rfc822
39
- Content-Disposition: inline
40
-
41
- Received: from [192.0.2.222] ([192.0.2.222:222] helo=mta-2.example.org)
42
- by example.org (envelope-from <sironeko@example.org>)
43
- (ecelerity 3.6.5.1 r(Core:3.6.5.0)) with ESMTPS (cipher=AES256-GCM-SHA384
44
- id 22/00-00000-EEEEEEEE; Thu, 29 Apr 2015 23:34:45 +0000
45
- Received: from neko (localhost [127.0.0.1])
46
- by mta-2.example.org (Postfix) with ESMTP id EEEEEEEEE22;
47
- Thu, 29 Apr 2015 23:34:45 +0000 (UTC)
48
- Date: Thu, 29 Apr 2015 23:34:45 +0900 (JST)
49
- From: Sironeko <sironeko@example.org>
50
- To: kijitora@example.org
51
- Message-ID: <000000002.2222222.1500000000022@example.net>
52
- Subject: Nyaan
53
- MIME-Version: 1.0
54
- Content-Type: text/plain
55
-
56
- Nyaaaaaaaaaaaaaaaan
57
-
58
- --_----NekoNyaan/222nnn300===_22/00-22002-00000225--
59
-
@@ -1,49 +0,0 @@
1
- Delivered-To: abuse-report@example.com
2
- Received: by 192.0.2.25 with SMTP id fffffffff000000;
3
- Thu, 29 Apr 2016 23:34:45 +0000 (UTC)
4
- X-Received: by 192.0.2.2 with SMTP id eeeeeeeee0000001.222.1500000000000;
5
- Thu, 29 Apr 2016 23:34:45 +0000 (UTC)
6
- Return-Path: <neko@example.org>
7
- Received: from CAT000-NEKO2.example.com (cat000-neko2.example.com. [203.0.113.25])
8
- by mx.example.com with ESMTPS id fffffffff11111.222.2016.04.29.23.34.45
9
- for <abuse-report@example.com>
10
- (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128);
11
- Thu, 29 Apr 2016 23:34:45 +0000 (UTC)
12
- Received: from CAT000-NEKO-022.r.example.org ([198.51.100.1]) by CAT004-R.example.com
13
- with Microsoft SMTPSVC(7.5.7601.22751); Thu, 29 Apr 2016 23:34:45 +0000
14
- Date: Thu, 29 Apr 2016 23:34:45 +0000
15
- From: staff@hotmail.com
16
- Subject: complaint about message from 192.0.2.222
17
- To: abuse-report@example.com
18
- MIME-Version: 1.0
19
- Content-Type: multipart/mixed; boundary="F0000EEE2-0000-2111-AAB0-000000000000"
20
- Message-ID: <CAT0-NNE-000000000000000022@CAT0-RRR.example.org>
21
- X-OriginalArrivalTime: 29 Apr 2016 23:34:45.0000 (UTC) FILETIME=[FFFFFFFF:00000000]
22
- Return-Path: neko@example.org
23
-
24
- --F0000EEE2-0000-2111-AAB0-000000000000
25
- Content-Type: message/rfc822
26
- Content-Disposition: inline
27
-
28
- X-HmXmrOriginalRecipient: kijitora@example.com
29
- X-Reporter-IP: 192.0.2.22
30
- Authentication-Results: example.com; spf=pass (sender IP is 203.0.113.245; identity alignment result is pass and alignment mode is relaxed) smtp.mailfrom=sironeko@example.com; dkim=pass (identity alignment result is pass and alignment mode is relaxed) header.d=example.com; x-hmca=pass header.id=sironeko@example.com
31
- X-SID-PRA: sironeko@example.com
32
- X-AUTH-Result: PASS
33
- X-SID-Result: PASS
34
- Received: from smtp.example.com ([203.0.113.245]) by R7038-AA.example.com over TLS
35
- secured channel with Microsoft SMTPSVC(7.5.7601.23008);
36
- Thu, 29 Apr 2016 23:34:45 +0000
37
- Date: Thu, 29 Apr 2016 23:34:45 +0200
38
- To: kijitora@example.com
39
- From: Neko <sironeko@example.com>
40
- Subject: Nyaan
41
- MIME-Version: 1.0
42
- Content-Transfer-Encoding: 8bit
43
- Content-Type: text/plain; charset="utf-8"
44
- Message-ID: <0000000000fffffffff0000000000000@example.com>
45
- X-OriginalArrivalTime: 29 Apr 2016 23:34:45.0000 (UTC) FILETIME=[00000000:FFFFFFFF]
46
-
47
- Nyaan
48
-
49
- --F0000EEE2-0000-2111-AAB0-000000000000--
@@ -1,40 +0,0 @@
1
- From: <kijitora@example.com>
2
- Date: Thu, 9 Apr 2006 23:34:45 JST
3
- Subject: FW: Nyaaan
4
- To: <abuse@example.net>
5
- MIME-Version: 1.0
6
- Content-Type: multipart/report; report-type=feedback-report;
7
- boundary="bx1111_00.ffffffffffff"
8
-
9
- --bx1111_00.ffffffffffff
10
- Content-Type: text/plain; charset="US-ASCII"
11
- Content-Transfer-Encoding: 7bit
12
-
13
- This is an opt-out report for an email message received from IP
14
- 192.0.2.89 on Thu, 9 Apr 2006 23:34:45 JST. For more information
15
- about this format please see http://www.example.org/arf/.
16
-
17
- --bx1111_00.ffffffffffff
18
- Content-Type: message/feedback-report
19
-
20
- Feedback-Type: opt-out
21
- User-Agent: ARF-Agent/1.0
22
- Version: 0.1
23
- Removal-Recipient: user@example.com
24
-
25
- --bx1111_00.ffffffffffff
26
- Content-Type: text/rfc822-header
27
-
28
- From: <shironeko@example.net>
29
- Received: from mx90.example.net (mx90.example.net [192.0.2.89])
30
- by example.com with ESMTP id ffffffffffff00; Thu, 09 Apr 2006 23:34:45 +0900
31
- To: <Undisclosed Recipients>
32
- Subject: Nyaaan
33
- MIME-Version: 1.0
34
- Content-type: text/plain
35
- Message-ID: 0000000000000000000000000@example.net
36
- Date: Thu, 02 Sep 2006 23:34:45 +0900
37
-
38
- Nyaaaan
39
- --bx1111_00.ffffffffffff--
40
-
@@ -1,68 +0,0 @@
1
- Return-Path: <fbl@senderscore.example.net>
2
- Received: from fbl-02.r.returnpath.example.net (unknown [192.0.2.222])
3
- by fbl-01.returnpath.example.net (Postfix) with ESMTP id 0000000000
4
- for <fbl@example.com>; Thu, 29 Apr 2015 23:34:45 +0900 (JST)
5
- Received: by fbl-02.r.returnpath.example.net (Postfix, from userid 106706)
6
- id EEEEEEEEEE; Thu, 29 Apr 2015 23:34:45 +0900 (JST)
7
- Content-Transfer-Encoding: binary
8
- Content-Type: multipart/report; boundary="_----------=_20000000000000000222";
9
- report-type="feedback-report"
10
- MIME-Version: 1.0
11
- Date: Thu, 29 Apr 2015 23:34:45 +0900
12
- Subject: Abuse Report
13
- To: postmaster@example.jp
14
- From: feedbackloop@feedback.example.com
15
- Message-Id: <20150429233445.0000000000@fbl-02.r.returnpath.example.net>
16
-
17
- This is a multi-part message in MIME format.
18
-
19
- --_----------=_20000000000000000222
20
- Content-Disposition: inline
21
- Content-Transfer-Encoding: 7bit
22
- Content-Type: text/plain
23
-
24
- This is a Example email abuse report for an email message received from IP 192.0.2.1 on Thu, 29 Apr 2015 23:34:45 +0000
25
-
26
-
27
- --_----------=_20000000000000000222
28
- Content-Disposition: inline
29
- Content-Transfer-Encoding: 7bit
30
- Content-Type: message/feedback-report
31
-
32
- User-Agent: ReturnPathFBL/1.0
33
- Abuse-Type: complaint
34
- Arrival-Date: Thu, 29 Apr 2015 23:34:45 +0000
35
- Feedback-Type: abuse
36
- Version: 1
37
- Source-IP: 192.0.2.1
38
- Original-Rcpt-To: kijitora@example.com
39
- Original-Rcpt-To: sironeko@example.com
40
- Original-Rcpt-To: mikeneko@example.com
41
- Original-Rcpt-To: sabatora@example.com
42
- Original-Rcpt-To: sirokiji@example.org
43
- Original-Rcpt-To: kuroneko@example.com
44
- Original-Rcpt-To: sabineko@example.com
45
- Original-Mail-From: neko@example.jp
46
- Reported-Domain: example.com
47
- Reported-Domain: example.org
48
-
49
- --_----------=_20000000000000000222
50
- Content-Disposition: inline
51
- Content-Transfer-Encoding: 8bit
52
- Content-Type: message/rfc822
53
-
54
- Received: from mta-002.rr.example.com (mta-002.rr.example.com
55
- [192.0.2.22]) by mxg.senderscore.example.net (Postfix) with ESMTP id FFFFFFFFFF0
56
- for <fbl@senderscore.example.net>; Thu, 29 Apr 2015 23:34:45 +0900 (JST)
57
- Received: from mail.example.net ([192.0.1.3]) (authenticated bits=0)
58
- by mail.example.net (8.13.1/8.13.1) with ESMTP id t3P00000000000
59
- (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Thu, 29
60
- Apr 2015 23:34:45 GMT
61
- Subject: Nyaan
62
- From: Neko <neko@example.jp>
63
- Message-Id: <ffffffffffffffffffffffff0000000@example.jp>
64
- Date: Sun, 29 Apr 2015 23:34:45 +0000
65
- Content-Transfer-Encoding: 7bit
66
-
67
- Nyaan
68
-
@@ -1,68 +0,0 @@
1
- Return-Path: abuse=example.com@returns.bulk.yahoo.com
2
- Received: from smtp-gw83.example.com (LHLO smtp-gw83.example.com)
3
- (192.0.2.1) by smtp-gw83.example.com with LMTP; Thu, 29 Apr 2013 23:45:46 +0900 (JST)
4
- Received: from localhost (localhost.localdomain [127.0.0.1])
5
- by smtp-gw83.example.com (Postfix) with ESMTP id 000000000000
6
- for <abuse@example.com>; Thu, 29 Apr 2013 23:45:45 +0900 (JST)
7
- Delivered-To: kijitora@example.com
8
- Received: (qmail 00000 invoked by uid 910); 29 Apr 2013 04:00:00 -0000
9
- Message-ID: <00000000000000.00000.smtp@mx8.example.com>
10
- Delivered-To: abuse@example.com
11
- MIME-Version: 1.0
12
- Content-Transfer-Encoding: 7bit
13
- Content-Type: multipart/report;
14
- boundary="_----------=F000000000000000000000";
15
- report-type="feedback-report"
16
- Date: Thu, 29 Apr 2013 23:45:00 -0800
17
- From: Yahoo! Mail AntiSpam Feedback <feedback@arf.mail.yahoo.com>
18
- To: abuse@example.com
19
- Subject: Fw: Nyaaaaaaaan
20
-
21
- This is a multi-part message in MIME format.
22
-
23
- --_----------=F000000000000000000000
24
- MIME-Version: 1.0
25
- Content-Disposition: inline
26
- Content-Transfer-Encoding: 7bit
27
- Content-Type: text/plain; charset="US-ASCII"
28
- Date: Thu, 29 Apr 2013 23:45:00 -0800
29
-
30
- This is an email abuse report for an email message received from mx8.example.com on Thu, 29 Apr 2013 23:45:00 PST
31
-
32
- --_----------=F000000000000000000000
33
- Content-Disposition: inline
34
- Content-Transfer-Encoding: 7bit
35
- Content-Type: message/feedback-report
36
-
37
- Feedback-Type: abuse
38
- User-Agent: Yahoo!-Mail-Feedback/1.0
39
- Version: 0.1
40
- Original-Mail-From: <shironeko@example.com>
41
- Original-Rcpt-To: this-local-part-does-not-exist-on-yahoo@yahoo.com
42
- Received-Date: Thu, 29 Apr 2013 23:45:50 PST
43
- Reported-Domain: example.com
44
- Authentication-Results:
45
-
46
- --_----------=F000000000000000000000
47
- Content-Disposition: inline
48
- Content-Transfer-Encoding: 7bit
49
- Content-Type: message/rfc822
50
-
51
- X-Apparently-To: this-local-part-does-not-exist-on-yahoo@yahoo.com via 192.0.2.45; Thu, 29 Apr 2013 23:45:10 -0800
52
- Return-Path: <shironeko@example.com>
53
- X-Originating-IP: [192.0.2.8]
54
- Received: from 127.0.0.1 (EHLO mx8.example.com) (192.0.2.8)
55
- by mta34.mail.g9.yahoo.com with SMTP; Thu, 29 Apr 2013 23:45:06 -0800
56
- Message-ID: <000000000000000000000000.smtp@example.com>
57
- Date: Thu, 29 Apr 2013 09:34:23 +0900 (JST)
58
- From: "Shironeko Nyanko" <shironeko@example.com>
59
- To: this-local-part-does-not-exist-on-yahoo@yahoo.com
60
- Subject: Nyaaaaaaaan
61
- MIME-Version: 1.0
62
- Content-Type: text/plain; charset=UTF-8
63
- Content-Length: 5
64
-
65
- Nyaa
66
-
67
- --_----------=F000000000000000000000--
68
-