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.
- package/CHANGELOG.md +9 -0
- package/data/google-crawlers.json +1 -1
- package/lib/account/account-state.js +248 -0
- package/lib/account.js +17 -178
- package/lib/api-routes/account-routes.js +1006 -0
- package/lib/api-routes/message-routes.js +1377 -0
- package/lib/consts.js +12 -2
- package/lib/email-client/base-client.js +282 -771
- package/lib/email-client/gmail/gmail-api.js +243 -0
- package/lib/email-client/gmail-client.js +145 -53
- package/lib/email-client/imap/mailbox.js +24 -698
- package/lib/email-client/imap/sync-operations.js +812 -0
- package/lib/email-client/imap-client.js +1 -1
- package/lib/email-client/message-builder.js +566 -0
- package/lib/email-client/notification-handler.js +314 -0
- package/lib/email-client/outlook/graph-api.js +326 -0
- package/lib/email-client/outlook-client.js +159 -113
- package/lib/email-client/smtp-pool-manager.js +196 -0
- package/lib/imapproxy/imap-server.js +3 -12
- package/lib/oauth/gmail.js +4 -4
- package/lib/oauth/mail-ru.js +30 -5
- package/lib/oauth/outlook.js +57 -3
- package/lib/oauth/pubsub/google.js +30 -11
- package/lib/oauth/scope-checker.js +202 -0
- package/lib/oauth2-apps.js +8 -4
- package/lib/redis-operations.js +484 -0
- package/lib/routes-ui.js +283 -2582
- package/lib/tools.js +4 -196
- package/lib/ui-routes/account-routes.js +1931 -0
- package/lib/ui-routes/admin-config-routes.js +1233 -0
- package/lib/ui-routes/admin-entities-routes.js +2367 -0
- package/lib/ui-routes/oauth-routes.js +992 -0
- package/lib/utils/network.js +237 -0
- package/package.json +9 -9
- package/sbom.json +1 -1
- package/static/js/app.js +5 -5
- package/static/licenses.html +78 -18
- package/translations/de.mo +0 -0
- package/translations/de.po +85 -82
- package/translations/en.mo +0 -0
- package/translations/en.po +63 -71
- package/translations/et.mo +0 -0
- package/translations/et.po +84 -82
- package/translations/fr.mo +0 -0
- package/translations/fr.po +85 -82
- package/translations/ja.mo +0 -0
- package/translations/ja.po +84 -82
- package/translations/messages.pot +74 -87
- package/translations/nl.mo +0 -0
- package/translations/nl.po +86 -82
- package/translations/pl.mo +0 -0
- package/translations/pl.po +84 -82
- package/views/account/security.hbs +4 -4
- package/views/accounts/account.hbs +13 -13
- package/views/accounts/register/imap-server.hbs +12 -12
- package/views/config/document-store/pre-processing/index.hbs +4 -2
- package/views/config/oauth/app.hbs +6 -7
- package/views/config/oauth/index.hbs +2 -2
- package/views/config/service.hbs +3 -4
- package/views/dashboard.hbs +5 -7
- package/views/error.hbs +22 -7
- package/views/gateways/gateway.hbs +2 -2
- package/views/partials/add_account_modal.hbs +7 -10
- package/views/partials/document_store_header.hbs +1 -1
- package/views/partials/editor_scope_info.hbs +0 -1
- package/views/partials/oauth_config_header.hbs +1 -1
- package/views/partials/side_menu.hbs +3 -3
- package/views/partials/webhook_form.hbs +2 -2
- package/views/templates/index.hbs +1 -1
- package/views/templates/template.hbs +8 -8
- package/views/tokens/index.hbs +6 -6
- package/views/tokens/new.hbs +1 -1
- package/views/webhooks/index.hbs +4 -4
- package/views/webhooks/webhook.hbs +7 -7
- package/workers/api.js +148 -2436
- package/workers/smtp.js +2 -1
- package/lib/imapproxy/imap-core/test/client.js +0 -46
- package/lib/imapproxy/imap-core/test/fixtures/append.eml +0 -1196
- package/lib/imapproxy/imap-core/test/fixtures/chunks.js +0 -44
- package/lib/imapproxy/imap-core/test/fixtures/fix1.eml +0 -6
- package/lib/imapproxy/imap-core/test/fixtures/fix2.eml +0 -599
- package/lib/imapproxy/imap-core/test/fixtures/fix3.eml +0 -32
- package/lib/imapproxy/imap-core/test/fixtures/fix4.eml +0 -6
- package/lib/imapproxy/imap-core/test/fixtures/mimetorture.eml +0 -599
- package/lib/imapproxy/imap-core/test/fixtures/mimetorture.js +0 -2740
- package/lib/imapproxy/imap-core/test/fixtures/mimetorture.json +0 -1411
- package/lib/imapproxy/imap-core/test/fixtures/mimetree.js +0 -85
- package/lib/imapproxy/imap-core/test/fixtures/nodemailer.eml +0 -582
- package/lib/imapproxy/imap-core/test/fixtures/ryan_finnie_mime_torture.eml +0 -599
- package/lib/imapproxy/imap-core/test/fixtures/simple.eml +0 -42
- package/lib/imapproxy/imap-core/test/fixtures/simple.json +0 -164
- package/lib/imapproxy/imap-core/test/imap-compile-stream-test.js +0 -671
- package/lib/imapproxy/imap-core/test/imap-compiler-test.js +0 -272
- package/lib/imapproxy/imap-core/test/imap-indexer-test.js +0 -236
- package/lib/imapproxy/imap-core/test/imap-parser-test.js +0 -922
- package/lib/imapproxy/imap-core/test/memory-notifier.js +0 -129
- package/lib/imapproxy/imap-core/test/prepare.sh +0 -74
- package/lib/imapproxy/imap-core/test/protocol-test.js +0 -1756
- package/lib/imapproxy/imap-core/test/search-test.js +0 -1356
- package/lib/imapproxy/imap-core/test/test-client.js +0 -152
- package/lib/imapproxy/imap-core/test/test-server.js +0 -623
- package/lib/imapproxy/imap-core/test/tools-test.js +0 -22
- package/test/api-test.js +0 -899
- package/test/autoreply-test.js +0 -327
- package/test/bounce-test.js +0 -151
- package/test/complaint-test.js +0 -256
- package/test/fixtures/autoreply/LICENSE +0 -27
- package/test/fixtures/autoreply/rfc3834-01.eml +0 -23
- package/test/fixtures/autoreply/rfc3834-02.eml +0 -24
- package/test/fixtures/autoreply/rfc3834-03.eml +0 -26
- package/test/fixtures/autoreply/rfc3834-04.eml +0 -48
- package/test/fixtures/autoreply/rfc3834-05.eml +0 -19
- package/test/fixtures/autoreply/rfc3834-06.eml +0 -59
- package/test/fixtures/bounces/163.eml +0 -2521
- package/test/fixtures/bounces/fastmail.eml +0 -242
- package/test/fixtures/bounces/gmail.eml +0 -252
- package/test/fixtures/bounces/hotmail.eml +0 -655
- package/test/fixtures/bounces/mailru.eml +0 -121
- package/test/fixtures/bounces/outlook.eml +0 -1107
- package/test/fixtures/bounces/postfix.eml +0 -101
- package/test/fixtures/bounces/rambler.eml +0 -116
- package/test/fixtures/bounces/workmail.eml +0 -142
- package/test/fixtures/bounces/yahoo.eml +0 -139
- package/test/fixtures/bounces/zoho.eml +0 -83
- package/test/fixtures/bounces/zonemta.eml +0 -100
- package/test/fixtures/complaints/LICENSE +0 -27
- package/test/fixtures/complaints/amazonses.eml +0 -72
- package/test/fixtures/complaints/dmarc.eml +0 -59
- package/test/fixtures/complaints/hotmail.eml +0 -49
- package/test/fixtures/complaints/optout.eml +0 -40
- package/test/fixtures/complaints/standard-arf.eml +0 -68
- package/test/fixtures/complaints/yahoo.eml +0 -68
- package/test/oauth2-apps-test.js +0 -301
- package/test/sendonly-test.js +0 -160
- package/test/test-config.js +0 -34
- package/test/webhooks-server.js +0 -39
|
@@ -1,101 +0,0 @@
|
|
|
1
|
-
Return-Path: <MAILER-DAEMON>
|
|
2
|
-
Delivered-To: andris@ekiri.ee
|
|
3
|
-
Received: by uvn-67-33.tll01.zonevs.eu (Postfix)
|
|
4
|
-
id 5FC8B823C7; Mon, 10 Oct 2022 08:23:52 +0300 (EEST)
|
|
5
|
-
Date: Mon, 10 Oct 2022 08:23:52 +0300 (EEST)
|
|
6
|
-
From: MAILER-DAEMON@uvn-67-33.tll01.zonevs.eu (Mail Delivery System)
|
|
7
|
-
Subject: Undelivered Mail Returned to Sender
|
|
8
|
-
To: andris@ekiri.ee
|
|
9
|
-
Auto-Submitted: auto-replied
|
|
10
|
-
MIME-Version: 1.0
|
|
11
|
-
Content-Type: multipart/report; report-type=delivery-status;
|
|
12
|
-
boundary="DF59B82305.1665379432/uvn-67-33.tll01.zonevs.eu"
|
|
13
|
-
Message-Id: <20221010052352.5FC8B823C7@uvn-67-33.tll01.zonevs.eu>
|
|
14
|
-
|
|
15
|
-
This is a MIME-encapsulated message.
|
|
16
|
-
|
|
17
|
-
--DF59B82305.1665379432/uvn-67-33.tll01.zonevs.eu
|
|
18
|
-
Content-Description: Notification
|
|
19
|
-
Content-Type: text/plain; charset=us-ascii
|
|
20
|
-
|
|
21
|
-
This is the mail system at host uvn-67-33.tll01.zonevs.eu.
|
|
22
|
-
|
|
23
|
-
I'm sorry to have to inform you that your message could not
|
|
24
|
-
be delivered to one or more recipients. It's attached below.
|
|
25
|
-
|
|
26
|
-
For further assistance, please send mail to postmaster.
|
|
27
|
-
|
|
28
|
-
If you do so, please include this problem report. You can
|
|
29
|
-
delete your own text from the attached returned message.
|
|
30
|
-
|
|
31
|
-
The mail system
|
|
32
|
-
|
|
33
|
-
<sdagfsdfgdasfsdf@hot.ee>: host mx1.hot.ee[194.126.101.119] said: 550 5.1.1
|
|
34
|
-
<sdagfsdfgdasfsdf@hot.ee>: Recipient address rejected: User unknown in
|
|
35
|
-
relay recipient table (in reply to RCPT TO command)
|
|
36
|
-
|
|
37
|
-
--DF59B82305.1665379432/uvn-67-33.tll01.zonevs.eu
|
|
38
|
-
Content-Description: Delivery report
|
|
39
|
-
Content-Type: message/delivery-status
|
|
40
|
-
|
|
41
|
-
Reporting-MTA: dns; uvn-67-33.tll01.zonevs.eu
|
|
42
|
-
X-Postfix-Queue-ID: DF59B82305
|
|
43
|
-
X-Postfix-Sender: rfc822; andris@ekiri.ee
|
|
44
|
-
Arrival-Date: Mon, 10 Oct 2022 08:23:51 +0300 (EEST)
|
|
45
|
-
|
|
46
|
-
Final-Recipient: rfc822; sdagfsdfgdasfsdf@hot.ee
|
|
47
|
-
Original-Recipient: rfc822;sdagfsdfgdasfsdf@hot.ee
|
|
48
|
-
Action: failed
|
|
49
|
-
Status: 5.1.1
|
|
50
|
-
Remote-MTA: dns; mx1.hot.ee
|
|
51
|
-
Diagnostic-Code: smtp; 550 5.1.1 <sdagfsdfgdasfsdf@hot.ee>: Recipient address
|
|
52
|
-
rejected: User unknown in relay recipient table
|
|
53
|
-
|
|
54
|
-
--DF59B82305.1665379432/uvn-67-33.tll01.zonevs.eu
|
|
55
|
-
Content-Description: Undelivered Message
|
|
56
|
-
Content-Type: message/rfc822
|
|
57
|
-
|
|
58
|
-
Return-Path: <andris@ekiri.ee>
|
|
59
|
-
Received: from turvaline.ekiri.ee (localhost.localdomain [127.0.0.1])
|
|
60
|
-
by uvn-67-33.tll01.zonevs.eu (Postfix) with ESMTP id DF59B82305
|
|
61
|
-
for <sdagfsdfgdasfsdf@hot.ee>; Mon, 10 Oct 2022 08:23:51 +0300 (EEST)
|
|
62
|
-
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=ekiri.ee; s=default;
|
|
63
|
-
t=1665379431; bh=IP93/XJyNpbKriYfJ+zyC8Je46iWUylwjWuuYVEU4Vc=;
|
|
64
|
-
h=Date:From:To:Subject;
|
|
65
|
-
b=ZpWbcgMo5chcXQ6vDunnP2Q/49yN7//QfuHmN8CP60nN8ZAs8T+s3rXfWSyfSIWaW
|
|
66
|
-
jy3WH2QjJ9mq5msHEpEJUKn501r8GgedlgygmtUZe2J0XkJHh5jFaEjhmvb08UP4f+
|
|
67
|
-
G2nLkgn5Di83zrillwNA236rtp8IWRLfYFbjeMS4=
|
|
68
|
-
MIME-Version: 1.0
|
|
69
|
-
Content-Type: multipart/alternative;
|
|
70
|
-
boundary="=_c1963e55830646fc56388b60f4b595d9"
|
|
71
|
-
Date: Mon, 10 Oct 2022 08:23:51 +0300
|
|
72
|
-
From: andris <andris@ekiri.ee>
|
|
73
|
-
To: sdagfsdfgdasfsdf@hot.ee
|
|
74
|
-
Subject: proovikas
|
|
75
|
-
Message-ID: <0f51267b17be7a93bb0017205b6c4fca@ekiri.ee>
|
|
76
|
-
X-Sender: andris@ekiri.ee
|
|
77
|
-
User-Agent: Roundcube Webmail/1.1-git
|
|
78
|
-
|
|
79
|
-
--=_c1963e55830646fc56388b60f4b595d9
|
|
80
|
-
Content-Transfer-Encoding: 7bit
|
|
81
|
-
Content-Type: text/plain
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
proov
|
|
86
|
-
|
|
87
|
-
--=_c1963e55830646fc56388b60f4b595d9
|
|
88
|
-
Content-Transfer-Encoding: quoted-printable
|
|
89
|
-
Content-Type: text/html; charset=UTF-8
|
|
90
|
-
|
|
91
|
-
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN">
|
|
92
|
-
<html><body style=3D'font-size: 10pt; font-family: Verdana,Geneva,sans-seri=
|
|
93
|
-
f'>
|
|
94
|
-
<p>proov</p>
|
|
95
|
-
<div> </div>
|
|
96
|
-
</body></html>
|
|
97
|
-
|
|
98
|
-
--=_c1963e55830646fc56388b60f4b595d9--
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
--DF59B82305.1665379432/uvn-67-33.tll01.zonevs.eu--
|
|
@@ -1,116 +0,0 @@
|
|
|
1
|
-
Return-Path: <>
|
|
2
|
-
Delivered-To: node.mailer@rambler.ru
|
|
3
|
-
Received: from 2vm0010.prod.mail.rambler.tech ([10.99.0.12])
|
|
4
|
-
by 1vm0098.prod.mail.rambler.tech with LMTP
|
|
5
|
-
id MPonHBmxQ2MxdAAAMCdodQ:T195:P1
|
|
6
|
-
(envelope-from <>)
|
|
7
|
-
for <node.mailer@rambler.ru>; Mon, 10 Oct 2022 08:45:15 +0300
|
|
8
|
-
Received: from mx1.mail.rambler.ru ([10.99.0.12])
|
|
9
|
-
by 2vm0010.prod.mail.rambler.tech with LMTP
|
|
10
|
-
id MPonHBmxQ2MxdAAAMCdodQ:T195
|
|
11
|
-
(envelope-from <>)
|
|
12
|
-
for <node.mailer@rambler.ru>; Mon, 10 Oct 2022 08:45:15 +0300
|
|
13
|
-
Received: from mxout4.rambler.ru (mxout4.rambler.ru [81.19.78.115])
|
|
14
|
-
by mx1.mail.rambler.ru (Postfix) with ESMTP id 5BA15174C80F
|
|
15
|
-
for <node.mailer@rambler.ru>; Mon, 10 Oct 2022 08:45:15 +0300 (MSK)
|
|
16
|
-
Received: from mxout4.rambler.ru (mxout4.rambler.ru [81.19.78.115])
|
|
17
|
-
by 0vm0064.prod.mail.rambler.tech (resmtp/Rambler) with ESMTP id jF1GJqbK;
|
|
18
|
-
Mon, 10 Oct 2022 05:45:15 +0000
|
|
19
|
-
Received: by mxout4.rambler.ru (Postfix)
|
|
20
|
-
id 49434140263; Mon, 10 Oct 2022 08:45:15 +0300 (MSK)
|
|
21
|
-
Date: Mon, 10 Oct 2022 08:45:15 +0300 (MSK)
|
|
22
|
-
From: MAILER-DAEMON@mxout4.rambler.ru (Mail Delivery System)
|
|
23
|
-
Subject: Undelivered Mail Returned to Sender =?windows-1251?B?KM/o8fzs7iDt5SDs7ubl8iDh+/L8IOTu8fLg4us=?= =?windows-1251?B?5e3uIOgg4u7n4vDg+eXt7iDu8u/w4OLo8uXr/ik=?=
|
|
24
|
-
To: node.mailer@rambler.ru
|
|
25
|
-
Auto-Submitted: auto-replied
|
|
26
|
-
MIME-Version: 1.0
|
|
27
|
-
Content-Type: multipart/report; report-type=delivery-status;
|
|
28
|
-
boundary="600CA140267.1665380715/mxout4.rambler.ru"
|
|
29
|
-
Content-Transfer-Encoding: 8bit
|
|
30
|
-
Message-Id: <20221010054515.49434140263@mxout4.rambler.ru>
|
|
31
|
-
|
|
32
|
-
This is a MIME-encapsulated message.
|
|
33
|
-
|
|
34
|
-
--600CA140267.1665380715/mxout4.rambler.ru
|
|
35
|
-
Content-Description: Notification
|
|
36
|
-
Content-Type: text/plain; charset=windows-1251
|
|
37
|
-
|
|
38
|
-
��������, �� ��������� ������������� ���, ��� ������,
|
|
39
|
-
������� �� ���������, �� ����� ���� ���������� ������ ���
|
|
40
|
-
���������� ���������. ��� ��������� � ������������� �����.
|
|
41
|
-
|
|
42
|
-
�������� � ���������� �������� ���������������� ��������� ��
|
|
43
|
-
������� ����� ���������� �����:
|
|
44
|
-
http://help.rambler.ru/mail/mail-soobsheniya-ob-oshibkah/1326/
|
|
45
|
-
|
|
46
|
-
������ ��������� ������� ������������� �������� ��������.
|
|
47
|
-
�������� �� ���� �� �����.
|
|
48
|
-
|
|
49
|
-
We are sorry to have to inform you that your message could not
|
|
50
|
-
be delivered to one or more recipients. It's attached below.
|
|
51
|
-
|
|
52
|
-
This message was created automatically by mail system, don't reply.
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
<yhfgcvjyutfdchgyufthgc@ethereal.email>: host mx.ethereal.email[54.36.85.113]
|
|
56
|
-
said: 550 No such user here (in reply to RCPT TO command)
|
|
57
|
-
|
|
58
|
-
--600CA140267.1665380715/mxout4.rambler.ru
|
|
59
|
-
Content-Description: Delivery report
|
|
60
|
-
Content-Type: message/delivery-status
|
|
61
|
-
|
|
62
|
-
Reporting-MTA: dns; mxout4.rambler.ru
|
|
63
|
-
X-Postfix-Queue-ID: 600CA140267
|
|
64
|
-
X-Postfix-Sender: rfc822; node.mailer@rambler.ru
|
|
65
|
-
Arrival-Date: Mon, 10 Oct 2022 08:45:14 +0300 (MSK)
|
|
66
|
-
|
|
67
|
-
Final-Recipient: rfc822; yhfgcvjyutfdchgyufthgc@ethereal.email
|
|
68
|
-
Original-Recipient: rfc822;yhfgcvjyutfdchgyufthgc@ethereal.email
|
|
69
|
-
Action: failed
|
|
70
|
-
Status: 5.0.0
|
|
71
|
-
Remote-MTA: dns; mx.ethereal.email
|
|
72
|
-
Diagnostic-Code: smtp; 550 No such user here
|
|
73
|
-
|
|
74
|
-
--600CA140267.1665380715/mxout4.rambler.ru
|
|
75
|
-
Content-Description: Undelivered Message
|
|
76
|
-
Content-Type: message/rfc822
|
|
77
|
-
Content-Transfer-Encoding: 8bit
|
|
78
|
-
|
|
79
|
-
Return-Path: <node.mailer@rambler.ru>
|
|
80
|
-
Received: from localhost (1vm0068.prod.mail.rambler.tech [10.140.200.201])
|
|
81
|
-
by mxout4.rambler.ru (Postfix) with ESMTP id 600CA140267
|
|
82
|
-
for <yhfgcvjyutfdchgyufthgc@ethereal.email>; Mon, 10 Oct 2022 08:45:14 +0300 (MSK)
|
|
83
|
-
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=rambler.ru; s=mail;
|
|
84
|
-
t=1665380714; bh=Uh4GFch7TqQv83t8nE2mzVIKyRYpQ3pa8Lotzz2shu0=;
|
|
85
|
-
h=Date:Reply-To:From:To:Subject;
|
|
86
|
-
b=gMujGjAVof/rDwF5cv0T2uLPpoH1/KWrP0oVN8wZHRcGVluNS7wI9uC79Ryzz7NLp
|
|
87
|
-
COSCNf2kw52U+2FRTOsmpEERJYPCU9ctBXmoKTN0zKNGAi84uk7RPQPF4lN8YmFZAJ
|
|
88
|
-
oBPTxDxPTCZXZJ7OXXwpqwjhPkkQLQaOqkNptlak=
|
|
89
|
-
Date: Mon, 10 Oct 2022 05:45:14 +0000
|
|
90
|
-
Mime-Version: 1.0
|
|
91
|
-
Message-Id: <18c57ad7166403358c3893f62d7e3a7f@mail.rambler.ru>
|
|
92
|
-
Reply-To: "Node Mailer" <node.mailer@rambler.ru>
|
|
93
|
-
From: "Node Mailer" <node.mailer@rambler.ru>
|
|
94
|
-
To: yhfgcvjyutfdchgyufthgc@ethereal.email
|
|
95
|
-
Subject: Proovikiri
|
|
96
|
-
Content-Transfer-Encoding: 7bit
|
|
97
|
-
X-Mailer: Rambler Compose (2.6.0), https://mail.rambler.ru
|
|
98
|
-
Content-Type: multipart/alternative;
|
|
99
|
-
boundary="==bound.0.81e1291358529a9894ca19cbac4ac173.mail.rambler.ru=="
|
|
100
|
-
|
|
101
|
-
--==bound.0.81e1291358529a9894ca19cbac4ac173.mail.rambler.ru==
|
|
102
|
-
Content-Transfer-Encoding: quoted-printable
|
|
103
|
-
Content-Disposition: inline
|
|
104
|
-
Content-Type: text/plain; charset=utf-8
|
|
105
|
-
|
|
106
|
-
See on proov
|
|
107
|
-
|
|
108
|
-
--==bound.0.81e1291358529a9894ca19cbac4ac173.mail.rambler.ru==
|
|
109
|
-
Content-Transfer-Encoding: quoted-printable
|
|
110
|
-
Content-Disposition: inline
|
|
111
|
-
Content-Type: text/html; charset=utf-8
|
|
112
|
-
|
|
113
|
-
<div>See on proov</div>
|
|
114
|
-
--==bound.0.81e1291358529a9894ca19cbac4ac173.mail.rambler.ru==--
|
|
115
|
-
|
|
116
|
-
--600CA140267.1665380715/mxout4.rambler.ru--
|
|
@@ -1,142 +0,0 @@
|
|
|
1
|
-
Subject: Undelivered Mail Returned to Sender
|
|
2
|
-
From: amazonses.com
|
|
3
|
-
To: =?UTF-8?Q?gfdutydrfghutydrfcuftydh=40hot=2Eee?=
|
|
4
|
-
<gfdutydrfghutydrfcuftydh@hot.ee>
|
|
5
|
-
Date: Mon, 10 Oct 2022 05:44:59 +0000
|
|
6
|
-
Mime-Version: 1.0
|
|
7
|
-
Content-Type: multipart/mixed; boundary="=_WM_generated"
|
|
8
|
-
X-Mailer: Amazon WorkMail
|
|
9
|
-
Thread-Index: AQHY3Gtv8zo56ntnTay6ZjiEHEJpZw==
|
|
10
|
-
Thread-Topic: Undelivered Mail Returned to Sender
|
|
11
|
-
|
|
12
|
-
This is a multi-part message in MIME format. Your mail reader does not
|
|
13
|
-
understand MIME message format.
|
|
14
|
-
--=_WM_generated
|
|
15
|
-
Content-Type: text/plain; charset=UTF-8
|
|
16
|
-
Content-Transfer-Encoding: quoted-printable
|
|
17
|
-
|
|
18
|
-
An error occurred while trying to deliver the mail to the following recip=
|
|
19
|
-
ients:
|
|
20
|
-
gfdutydrfghutydrfcuftydh@hot.ee
|
|
21
|
-
|
|
22
|
-
2022-10-10 05:44:59 : An error occurred while trying to deliver the mail =
|
|
23
|
-
to the following recipients:
|
|
24
|
-
gfdutydrfghutydrfcuftydh@hot.ee
|
|
25
|
-
|
|
26
|
-
Technical report:
|
|
27
|
-
|
|
28
|
-
Reporting-MTA: dns; a2-75.smtp-out.eu-west-1.amazonses.com
|
|
29
|
-
|
|
30
|
-
Action: failed
|
|
31
|
-
Final-Recipient: rfc822; gfdutydrfghutydrfcuftydh@hot.ee
|
|
32
|
-
Diagnostic-Code: smtp; 550 5.1.1 <gfdutydrfghutydrfcuftydh@hot.ee>: Recip=
|
|
33
|
-
ient address rejected: User unknown in relay recipient table
|
|
34
|
-
Status: 5.1.1
|
|
35
|
-
|
|
36
|
-
--=_WM_generated
|
|
37
|
-
Content-Type: message/rfc822
|
|
38
|
-
Content-Disposition: attachment
|
|
39
|
-
|
|
40
|
-
Subject: Proovikiri
|
|
41
|
-
From: =?utf-8?Q?Andris_Reinman?= <andris@headless.email>
|
|
42
|
-
To: =?utf-8?Q?gfdutydrfghutydrfcuftydh=40hot=2Eee?=
|
|
43
|
-
<gfdutydrfghutydrfcuftydh@hot.ee>
|
|
44
|
-
Date: Mon, 10 Oct 2022 05:44:59 +0000
|
|
45
|
-
Mime-Version: 1.0
|
|
46
|
-
Content-Type: multipart/alternative; boundary="=_WM_generated_sub_0"
|
|
47
|
-
References: <mail.6343b157.093e.288186530424f2a2@storage.wm.amazon.com>
|
|
48
|
-
Message-Id: <mail.6343b157.093e.5156c64350ef7e50@storage.wm.amazon.com>
|
|
49
|
-
X-Priority: 3 (Normal)
|
|
50
|
-
X-Mailer: Amazon WorkMail
|
|
51
|
-
Thread-Index: AQHY3Gtm4GXmNu/PRnmqyNRLXeGByg==
|
|
52
|
-
Thread-Topic: Proovikiri
|
|
53
|
-
X-Wm-Sent-Timestamp: 1665380695
|
|
54
|
-
X-Original-Mailer: Amazon WorkMail
|
|
55
|
-
|
|
56
|
-
This is a multi-part message in MIME format. Your mail reader does not
|
|
57
|
-
understand MIME message format.
|
|
58
|
-
--=_WM_generated_sub_0
|
|
59
|
-
Content-Type: text/plain; charset=utf-8
|
|
60
|
-
Content-Transfer-Encoding: 7bit
|
|
61
|
-
|
|
62
|
-
See on proov
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
--=_WM_generated_sub_0
|
|
66
|
-
Content-Type: text/html; charset=utf-8
|
|
67
|
-
Content-Transfer-Encoding: quoted-printable
|
|
68
|
-
|
|
69
|
-
<!DOCTYPE HTML><html>
|
|
70
|
-
<head>
|
|
71
|
-
<meta name=3D"Generator" content=3D"Amazon WorkMail v3.1.1252.0">
|
|
72
|
-
<meta http-equiv=3D"Content-Type" content=3D"text/html; charset=3Dutf-8">=
|
|
73
|
-
|
|
74
|
-
<title>Proovikiri</title>
|
|
75
|
-
</head>
|
|
76
|
-
<body>
|
|
77
|
-
<html><head></head><body><p style=3D"margin: 0px; font-family: Arial, Tah=
|
|
78
|
-
oma, Helvetica, sans-serif; font-size: small;">See on proov</p></body></h=
|
|
79
|
-
tml>
|
|
80
|
-
</body>
|
|
81
|
-
</html>
|
|
82
|
-
--=_WM_generated_sub_0--
|
|
83
|
-
|
|
84
|
-
--=_WM_generated
|
|
85
|
-
Content-Type: application/ms-tnef; name=winmail.dat
|
|
86
|
-
Content-Transfer-Encoding: base64
|
|
87
|
-
Content-Disposition: attachment; filename=winmail.dat
|
|
88
|
-
|
|
89
|
-
eJ8+IgAAAQOQBgAECwAAJwAAAAIBcQABAAAAFgAAAAEB2Nxrb/M6Oep7Z02sumY4hBxCaWcA
|
|
90
|
-
AAMAFw4AAAAAAgETMAEAAAAQAAAA8zo56ntnTay6ZjiEHEJpZwsAFjABAAAAAwAPNP0/BQAU
|
|
91
|
-
AEtmAgDWHQUABgAUAEhnAQAAAAAAAAkUAEpnAQAAAAAAAHkUAKRnAQAAAAAAAa5AALNnnLma
|
|
92
|
-
b2vc2AECAcJnAQAAABAAAAA/OG4THVVNqqecd2rr9kpqHwAaAAEAAAAoAAAAUgBFAFAATwBS
|
|
93
|
-
AFQALgBJAFAATQAuAE4AbwB0AGUALgBOAEQAUgAAAAIBPwABAAAAiwAAAAAAAADcp0DIwEIQ
|
|
94
|
-
GrS5CAArL+GCAQAAAAAAAAAvTz1tLWYyMWNmY2ExNzk0YTQ1NTk5YjczZDg2MjRkMGQ3MzUy
|
|
95
|
-
L09VPUFtYXpvbiBXb3JrTWFpbC9DTj1SZWNpcGllbnRzL0NOPWEwMDE2ODFiLTI3ZTctNDMx
|
|
96
|
-
MC1iYWExLWQ3Y2ZjYWYwNTYyZgAAHwBAAAEAAAAeAAAAQQBuAGQAcgBpAHMAIABSAGUAaQBu
|
|
97
|
-
AG0AYQBuAAAAAAACAUMAAQAAAIsAAAAAAAAA3KdAyMBCEBq0uQgAKy/hggEAAAAAAAAAL089
|
|
98
|
-
bS1mMjFjZmNhMTc5NGE0NTU5OWI3M2Q4NjI0ZDBkNzM1Mi9PVT1BbWF6b24gV29ya01haWwv
|
|
99
|
-
Q049UmVjaXBpZW50cy9DTj1hMDAxNjgxYi0yN2U3LTQzMTAtYmFhMS1kN2NmY2FmMDU2MmYA
|
|
100
|
-
AB8ARAABAAAAHgAAAEEAbgBkAHIAaQBzACAAUgBlAGkAbgBtAGEAbgAAAAAAHwBJAAEAAAAW
|
|
101
|
-
AAAAUAByAG8AbwB2AGkAawBpAHIAaQAAAAAAQABOAACPD2xr3NgBAgFRAAEAAAByAAAARVg6
|
|
102
|
-
L089TS1GMjFDRkNBMTc5NEE0NTU5OUI3M0Q4NjI0RDBENzM1Mi9PVT1BTUFaT04gV09SS01B
|
|
103
|
-
SUwvQ049UkVDSVBJRU5UUy9DTj1BMDAxNjgxQi0yN0U3LTQzMTAtQkFBMS1EN0NGQ0FGMDU2
|
|
104
|
-
MkYAAAACAVIAAQAAAHIAAABFWDovTz1NLUYyMUNGQ0ExNzk0QTQ1NTk5QjczRDg2MjREMEQ3
|
|
105
|
-
MzUyL09VPUFNQVpPTiBXT1JLTUFJTC9DTj1SRUNJUElFTlRTL0NOPUEwMDE2ODFCLTI3RTct
|
|
106
|
-
NDMxMC1CQUExLUQ3Q0ZDQUYwNTYyRgAAAB8AWgABAAAAHgAAAEEAbgBkAHIAaQBzACAAUgBl
|
|
107
|
-
AGkAbgBtAGEAbgAAAAAAAgFbAAEAAACLAAAAAAAAANynQMjAQhAatLkIACsv4YIBAAAAAAAA
|
|
108
|
-
AC9PPW0tZjIxY2ZjYTE3OTRhNDU1OTliNzNkODYyNGQwZDczNTIvT1U9QW1hem9uIFdvcmtN
|
|
109
|
-
YWlsL0NOPVJlY2lwaWVudHMvQ049YTAwMTY4MWItMjdlNy00MzEwLWJhYTEtZDdjZmNhZjA1
|
|
110
|
-
NjJmAAACAVwAAQAAAHIAAABFWDovTz1NLUYyMUNGQ0ExNzk0QTQ1NTk5QjczRDg2MjREMEQ3
|
|
111
|
-
MzUyL09VPUFNQVpPTiBXT1JLTUFJTC9DTj1SRUNJUElFTlRTL0NOPUEwMDE2ODFCLTI3RTct
|
|
112
|
-
NDMxMC1CQUExLUQ3Q0ZDQUYwNTYyRgAAAB8AXQABAAAAHgAAAEEAbgBkAHIAaQBzACAAUgBl
|
|
113
|
-
AGkAbgBtAGEAbgAAAAAAAgFeAAEAAACLAAAAAAAAANynQMjAQhAatLkIACsv4YIBAAAAAAAA
|
|
114
|
-
AC9PPW0tZjIxY2ZjYTE3OTRhNDU1OTliNzNkODYyNGQwZDczNTIvT1U9QW1hem9uIFdvcmtN
|
|
115
|
-
YWlsL0NOPVJlY2lwaWVudHMvQ049YTAwMTY4MWItMjdlNy00MzEwLWJhYTEtZDdjZmNhZjA1
|
|
116
|
-
NjJmAAACAV8AAQAAAHIAAABFWDovTz1NLUYyMUNGQ0ExNzk0QTQ1NTk5QjczRDg2MjREMEQ3
|
|
117
|
-
MzUyL09VPUFNQVpPTiBXT1JLTUFJTC9DTj1SRUNJUElFTlRTL0NOPUEwMDE2ODFCLTI3RTct
|
|
118
|
-
NDMxMC1CQUExLUQ3Q0ZDQUYwNTYyRgAAAB8AZgABAAAABgAAAEUAWAAAAAAAHwBnAAEAAADe
|
|
119
|
-
AAAALwBPAD0AbQAtAGYAMgAxAGMAZgBjAGEAMQA3ADkANABhADQANQA1ADkAOQBiADcAMwBk
|
|
120
|
-
ADgANgAyADQAZAAwAGQANwAzADUAMgAvAE8AVQA9AEEAbQBhAHoAbwBuACAAVwBvAHIAawBN
|
|
121
|
-
AGEAaQBsAC8AQwBOAD0AUgBlAGMAaQBwAGkAZQBuAHQAcwAvAEMATgA9AGEAMAAwADEANgA4
|
|
122
|
-
ADEAYgAtADIANwBlADcALQA0ADMAMQAwAC0AYgBhAGEAMQAtAGQANwBjAGYAYwBhAGYAMAA1
|
|
123
|
-
ADYAMgBmAAAAAAAfAGgAAQAAAAYAAABFAFgAAAAAAB8AaQABAAAA3gAAAC8ATwA9AG0ALQBm
|
|
124
|
-
ADIAMQBjAGYAYwBhADEANwA5ADQAYQA0ADUANQA5ADkAYgA3ADMAZAA4ADYAMgA0AGQAMABk
|
|
125
|
-
ADcAMwA1ADIALwBPAFUAPQBBAG0AYQB6AG8AbgAgAFcAbwByAGsATQBhAGkAbAAvAEMATgA9
|
|
126
|
-
AFIAZQBjAGkAcABpAGUAbgB0AHMALwBDAE4APQBhADAAMAAxADYAOAAxAGIALQAyADcAZQA3
|
|
127
|
-
AC0ANAAzADEAMAAtAGIAYQBhADEALQBkADcAYwBmAGMAYQBmADAANQA2ADIAZgAAAAAAHwBw
|
|
128
|
-
AAEAAABIAAAAVQBuAGQAZQBsAGkAdgBlAHIAZQBkACAATQBhAGkAbAAgAFIAZQB0AHUAcgBu
|
|
129
|
-
AGUAZAAgAHQAbwAgAFMAZQBuAGQAZQByAAAAHwByAAEAAAACAAAAAAAAAB8AcwABAAAAAgAA
|
|
130
|
-
AAAAAAAfAHQAAQAAAEAAAABnAGYAZAB1AHQAeQBkAHIAZgBnAGgAdQB0AHkAZAByAGYAYwB1
|
|
131
|
-
AGYAdAB5AGQAaABAAGgAbwB0AC4AZQBlAAAAHwB1AAEAAAAGAAAARQBYAAAAAAAfAHYAAQAA
|
|
132
|
-
AN4AAAAvAE8APQBtAC0AZgAyADEAYwBmAGMAYQAxADcAOQA0AGEANAA1ADUAOQA5AGIANwAz
|
|
133
|
-
AGQAOAA2ADIANABkADAAZAA3ADMANQAyAC8ATwBVAD0AQQBtAGEAegBvAG4AIABXAG8AcgBr
|
|
134
|
-
AE0AYQBpAGwALwBDAE4APQBSAGUAYwBpAHAAaQBlAG4AdABzAC8AQwBOAD0AYQAwADAAMQA2
|
|
135
|
-
ADgAMQBiAC0AMgA3AGUANwAtADQAMwAxADAALQBiAGEAYQAxAC0AZAA3AGMAZgBjAGEAZgAw
|
|
136
|
-
ADUANgAyAGYAAAAAAB8AdwABAAAABgAAAEUAWAAAAAAAHwB4AAEAAADeAAAALwBPAD0AbQAt
|
|
137
|
-
AGYAMgAxAGMAZgBjAGEAMQA3ADkANABhADQANQA1ADkAOQBiADcAMwBkADgANgAyADQAZAAw
|
|
138
|
-
AGQANwAzADUAMgAvAE8AVQA9AEEAbQBhAHoAbwBuACAAVwBvAHIAawBNAGEAaQBsAC8AQwBO
|
|
139
|
-
AD0AUgBlAGMAaQBwAGkAZQBuAHQAcwAvAEMATgA9AGEAMAAwADEANgA4ADEAYgAtADIANwBl
|
|
140
|
-
ADcALQA0ADMAMQAwAC0AYgBhAGEAMQAtAGQANwBjAGYAYwBhAGYAMAA1ADYAMgBmAAAAAAAC
|
|
141
|
-
ARQ6AQAAABAAAADSNMaRw11JL63GYf6Z38Huvg8=
|
|
142
|
-
--=_WM_generated--
|
|
@@ -1,139 +0,0 @@
|
|
|
1
|
-
Received: from 127.0.0.1
|
|
2
|
-
by atlas-production.v2-mail-prod1-gq1.omega.yahoo.com with HTTP; Mon, 10 Oct 2022 05:36:13 +0000
|
|
3
|
-
Return-Path: <>
|
|
4
|
-
X-Originating-Ip: [74.6.132.249]
|
|
5
|
-
Received-SPF: none (domain of sonic314-5.consmr.mail.bf2.yahoo.com does not designate permitted sender hosts)
|
|
6
|
-
Authentication-Results: atlas-production.v2-mail-prod1-gq1.omega.yahoo.com;
|
|
7
|
-
dkim=pass header.i=@yahoo.com header.s=bounce;
|
|
8
|
-
spf=none smtp.mailfrom=sonic314-5.consmr.mail.bf2.yahoo.com;
|
|
9
|
-
dmarc=pass(p=REJECT) header.from=yahoo.com;
|
|
10
|
-
X-Apparently-To: andris.reinman@yahoo.com; Mon, 10 Oct 2022 05:36:14 +0000
|
|
11
|
-
X-YMailAVSC: ctivxgY3bBv5FC9xnoYVd2aknHW927abD.RtPpB17A5Pml1
|
|
12
|
-
3sB0VqPizNCtEm5NXQtMd0I767mBqA.B323xaBSLPyPgDY4P5tSS7vw9S_BE
|
|
13
|
-
xnO498VOoQOfVbEYw_EYu4ZTb7yYB6k7_LGNwyHJKlIzxUP40gLyU4WBQMQl
|
|
14
|
-
Go1JVn3ULR0yabQ2fMETUuKHeyl9BeEz7D0tKw4YmmhlcgC_YiF2m_3ghm7A
|
|
15
|
-
fA1GayWjTYjlt.F0fYKG7PjMAJZnvHiDrAQJq5UGtno.GgDPsff6DukrjivD
|
|
16
|
-
y0f9WJu70QIWiaLP4GaER9sxIS7D.2d.5IC21enOU_70L9_RsNvM.uxlBb5M
|
|
17
|
-
5q22ALVWrKh.bQ0UuUKf9KYfWbBzxjJm4eVHjzmAM0mO2MVnSTEJBEvp.3xl
|
|
18
|
-
cXBxJVs9mQPMPoEMbPwabvBDVHrH.1Xj5lUCaLeZY34yAUeqMougZnfrQZ8Z
|
|
19
|
-
g6bDntjCNLx31UxmdH8VHSNHUNLOpduBwNdLUnsHFjBBEWiP.vXViiSyRL.m
|
|
20
|
-
OwId4PR6RZk8WP9v2fS3KMUdUwV4tw5FjaoZyikbl3..8h3U24TJ14jnIz0X
|
|
21
|
-
Wqa6.nHPX9n7y6IOonVPzew_gZDAEHwHHStvMmDzuTzT8POQ0XQ3UjaNoTuZ
|
|
22
|
-
wz1k3iYn2_5oNUvF1NN5z27DHRq7GgVXyBk4VeIeszngxqq0NhA2Z8Urszlj
|
|
23
|
-
32L0HPloORFfd.lr4Q1tjK1Me0pEihs.KUVWLCxC_pcZ2eiRuJ5xoSNbL1g.
|
|
24
|
-
8llcEjri9a_i7ziuMvwAS7mHIo.cQeMU96J0xaAsw99_2i.a.H9dYZSgGCab
|
|
25
|
-
pPiho_g.beRAMUtYe.O4Hzdy5tGY_T5r9KHhJAKZWU6gRcyZknfUxhq2GQfs
|
|
26
|
-
xF3E7Glc3Y0XXqQQB3c8PqKP0_oK_m1HNCAeCXF7un7yk0NFfCkOM51RWe2L
|
|
27
|
-
nsKIiicDaq6iIY.L.9lsbfFoXR_wXjN7EMj9Yhg--
|
|
28
|
-
X-YMailISG: aolm8LoWLDubIVs4GgtGBHTrSXclug84U1lnLQEAE8Q74pH2
|
|
29
|
-
tyPZmAz0zGpxKotuH8YkDptpuGq6lmTi_79jL5bxxIAZz7CyM2WpENqQC1M6
|
|
30
|
-
56q2b1m8HlP5tw3ZfCr9KQ6aIfDGMu0H_nYc6bs3Zpeb.OBJ8K45L2QnaSKi
|
|
31
|
-
_A.BuW72.yF1I8OHTsbYi6Z4VPvh3wuCNFPIFDksoSb0rtm.6ErPBYHpG01E
|
|
32
|
-
qdJIrFGYw3aagN5XauN620Og_QcJu3qOiH8AE.HtaHU8JGwidqDqHrCcybYq
|
|
33
|
-
88CpXiYx5SlI9LKQMt2qT_WYYmx3pU6CxYl8R6zcWXjUYrqu1KDKVGy5wbOF
|
|
34
|
-
UiYscEVkd3V_7QBWTwiLWgVkFNX0mQamngowiy1mYwYiALTrovcJdf33csWW
|
|
35
|
-
Q06iuKlOC21K9zocXXEoQUHuEJ9NGsmnm0arsoGcJ53kuwcWm_7eL8sq5NfI
|
|
36
|
-
9bTb2KA82m4dUHCXFTlKxIcz0MaDZJXWnevXVP10EJ3cdSEQxtUeRDafnvPi
|
|
37
|
-
QWvitkBWFENobOgP37CSIZ3Co1.McMDdchFDHsIwS05usGh4o8e4GfJq28Zm
|
|
38
|
-
goovFfed6tzWp8V9iNlWlqy2V0OsbvVjRceD7sJgGxqf7wuX171nU6hiJA3n
|
|
39
|
-
Tsu1rAYUbF0VDMb2n7c2EiBSTkgFay7qyJuRCQf.5cHIIIa9tEH.IfxgXLYb
|
|
40
|
-
yXtuI9RRZQuiz06LO3Qscr7OtgHNPR0hNbSfLsf7ce99_ZBoDH60RBjjA8BL
|
|
41
|
-
4q5CAXA2iZ3_c46TwcTDEZGuX6UkmN6MW2l0Q0laszdr1rZvqocmffHWAunN
|
|
42
|
-
VblgfdsHiLXQSuxmsRhiou.zxgVF2amY21wu1L_AJQ7K1DJZPYrNJxnPG6ld
|
|
43
|
-
b2PpEQehkhPJtomayX90iEHJuBTf051ST1bWaftPkwsbLkF5gOjRr5tVRLWo
|
|
44
|
-
rvTeYS20EyEQimQ8EMRnSGi6de9wq6SdfFqgp1T5bL9O7xYL_0nRBZJdE4yc
|
|
45
|
-
1uC8wnA5hEQFa5tzdJceHYOBxgOZ4k.uBIaxfeHI24sWfoXN99KNRz0HaLp1
|
|
46
|
-
3JjdexjS9H3yOMuufST3MCyNqQW5d3dQh2mXbBzQqsGi4PX2Ac9IFDUodpQ9
|
|
47
|
-
HJTDdUToKnI7V0suWgJdUPDeezLnaTI2MKvc91IwmzTKCp84OJ0IqLsFv8pQ
|
|
48
|
-
8ASkCZUTlljy_Kn2eIJEsQKGMb.CBiE.t5Upl1Q-
|
|
49
|
-
Received: from 74.6.132.249 (EHLO sonic314-5.consmr.mail.bf2.yahoo.com)
|
|
50
|
-
by 10.253.231.24 with SMTPs
|
|
51
|
-
(version=TLS1_3 cipher=TLS_AES_128_GCM_SHA256);
|
|
52
|
-
Mon, 10 Oct 2022 05:36:13 +0000
|
|
53
|
-
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.com; s=bounce; t=1665380173; bh=THZratHHAANmTtGi755TanbKAn6zsLjGqKEWgEi3pPQ=; h=Date:From:To:Subject:From:Subject:Reply-To; b=Dewjbt+0JR0yhSWfqLuS2iJjM9aEzDgFtW7LiGg5cyehfqY0nDLb7LWqHFUqTxKRkFVETIybtWGhtzDg/W66FnV2fQCvYIQiXIfkBkT4TEMfeCJ0B4gwMhrIUjtZUyDPJEddYR5aLc85V4Km1ylm+y5Ww9NaB3HM02rD1KM8EYQ=
|
|
54
|
-
X-SONIC-DKIM-SIGN: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.com; s=s2048; t=1665380173; bh=onQ4N8gSej4T+Us3hZdwwbJz34W3NhHc6HL07QTrVtg=; h=X-Sonic-MF:Date:From:To:Subject:From:Subject; b=FpbOF7yDVtMGMXEL5nY3YieiRq9I94lPWDawWK7eb1DtFjdNN26VyhCq0dm17ScCdGC/rsy8yC5feJm0D5o8exsaLhzF/PsBRN1XY25jw+wV/Z3BHSLUSXjHnJjHTSJ4//nEqZMWm7+fK8SJYd/KMcWPt7utm4RYZ6PtFlyFDBYjGyALdWRHCrtdRbXV0cPB8Fge65xHkMj9EoRm3F49XsRWo+ubRUY86flhaSSYtAskR6ZvINv4+Kqy3+uIn3Iuv2xZDssiGX6R+2Vt4/tiOhQoMQgE0oqO+P0lNG1XEJLTF58QULt9Dcmgw365E/t1zfcBcRywU3lh9FRIFdI94Q==
|
|
55
|
-
Message-ID: <1964613991.423405.1665380173412@yahoo.com>
|
|
56
|
-
X-Sonic-MF:
|
|
57
|
-
Received: from sonic.gate.mail.ne1.yahoo.com by sonic314.consmr.mail.bf2.yahoo.com with HTTP; Mon, 10 Oct 2022 05:36:13 +0000
|
|
58
|
-
Date: Mon, 10 Oct 2022 05:36:13 +0000
|
|
59
|
-
From: MAILER-DAEMON@yahoo.com
|
|
60
|
-
To: andris.reinman@yahoo.com
|
|
61
|
-
Subject: Failure Notice
|
|
62
|
-
Content-Type: multipart/report; report-type=delivery-status;
|
|
63
|
-
boundary="-=Part.4863e.f1d4a2031dce2596.183c064c664.4aa93abac4f414d2=-"
|
|
64
|
-
Content-Length: 5202
|
|
65
|
-
|
|
66
|
-
---=Part.4863e.f1d4a2031dce2596.183c064c664.4aa93abac4f414d2=-
|
|
67
|
-
Content-Type: text/plain; charset=UTF-8
|
|
68
|
-
|
|
69
|
-
Sorry, we were unable to deliver your message to the following address.
|
|
70
|
-
|
|
71
|
-
<thgdcgrfchvutycfgxcvg@hot.ee>:
|
|
72
|
-
550: 5.1.1 <thgdcgrfchvutycfgxcvg@hot.ee>: Recipient address rejected: User unknown in relay recipient table
|
|
73
|
-
|
|
74
|
-
---------- Forwarded message ----------
|
|
75
|
-
|
|
76
|
-
---=Part.4863e.f1d4a2031dce2596.183c064c664.4aa93abac4f414d2=-
|
|
77
|
-
Content-Type: message/rfc822
|
|
78
|
-
|
|
79
|
-
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.com; s=s2048; t=1665380171; bh=hxtr7lb7E5PcYlJdVTZ3d3gEJGpv7Dxja26+Oxf7THY=; h=Date:From:Reply-To:To:Subject:References:From:Subject:Reply-To; b=boUzqzCHoOd6OpOQifp1njIu9xSAgFTg3dGQwg4gq1uIiy84VLTnWo3DyvnMOOqSnzDPSr1Lh66kIfzy8v7YsmPY/M/qngxuCEjXwVPTYdQUaxUtJ80mnd5Kh14005wUhy+kWJlRO/d5bs96KDBUp7eSQQOps3HxGCeHp9BPZSU97v72FWpOCqjq/8him36iHGh7bxS89yu6gZVbJOIoDI4j5a3TaDU5hmMw6N8lLV1uneLt9UAvCG0s858E3uouLKuQLV6ZIme1K2PVx1bASfGAX1hwJXTtywWPpwoh3LHaD28rVownowcBj4gSDNadF+CqVt/whFWZTvIORGmDrw==
|
|
80
|
-
X-SONIC-DKIM-SIGN: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yahoo.com; s=s2048; t=1665380171; bh=YFzwe2yg1M5pRL0PTeV+5LdcM05pr5PJv2g9gnC/7AS=; h=X-Sonic-MF:Date:From:To:Subject:From:Subject; b=raxKyL0lE/RSYyEbrvz3TJnG4zIKkpqIg9QGBVSHFrjGdQg8JXFt3HELBTQfUMyXpRZnwBCJhYrJwHOTCqXYSouA/fS01ijvALzVFUiEbVkAI89mMP6fk1tvoCxAbIJcWCOKVdWoGwTPmqth4rZeNQM+b/gv/w5RHtLjpmh5WfXz2NRzZLdc83QfzI+Epep0zNyQjQREFxZXB44zm8SrLXIHbI2qjsxjDV5T2M9stNuKhLkLmq9PZA0829BMdEN7ofdWZ7FpiSElFO78G1eB3HRyWP5jWP3WETTeN5tdvzij9Zqp19kt3UJ7qSyUGqmvDPhCM4bJRdQDh8Qy1nJUJw==
|
|
81
|
-
X-YMail-OSG: oKAI6q8VM1mUaKbZMIXdisXv51svQehTQrUHgkFMH2BT7zAueCqKykQPa19zKu.
|
|
82
|
-
tQyIJDrV7Emu_H2WkcoBR1V5Smja5.qeJcvfO0Jf2pbIedNuSdDrgH_FqltYfa1Bh_KGeKcD2sXz
|
|
83
|
-
i7WRL3prJn1ImQJgVnCmpeKGplrv3xdQ7jHZIb9WMABXAhzGPaBrfuGzi.Zmm5Kg6Pcj0.2TfpmH
|
|
84
|
-
g2jC8yv.sxg0ZLu9b29PDnkdlwjlb1rRVJw6jk4Aq6G8UkOtYqGPQMMPm5zh2ifI8L_Vg4NRYKjN
|
|
85
|
-
pXcAaK9Z9cP8cs72NCkH.q5ZHSap_qcVcrw5Ciothw9GnpS870GghPh2.FdHrbpxx0xxDaMSdQHo
|
|
86
|
-
QFKWtpIOMYjCNmistn2Bo4K0ier0DXRxWcRiUS.BWhx4115bV5W4N0bWeMQFKOueN.TfdoknK.le
|
|
87
|
-
mTpM.6isWQKjcJF6KmxItCpvuTb2gLcceulvLSjiaWweHqayNHJdTUumgsEo7ESr5LkPCuJ6j2FP
|
|
88
|
-
d4xIOxO6Z3EyK63Rug_JLnR5aLOP5d8ZWKWaRlB1aUHXmBEUh6pZEFcUddrGumgpuqAxwq_oEvWn
|
|
89
|
-
SpZNfzckcx8bW70OYm3vFjU27sgkN1ng3Se2cTxcVfeq2voRW.ZPVGp.KXqY0RysstdJ_GdOK6YY
|
|
90
|
-
ezd4jbGrvw512buWw85lwQZjhyNalCiesPpHJRFD5iU_lbtEEhEAsx1mEtf0_r76MQAR09wRb64y
|
|
91
|
-
FkmRI1JRfM.KAcnRkFLeOZyBoodCF2vlj6kL.sU7A7zb.MYSs.MLi0F0oO2lkK2m3r_EbljPU7tc
|
|
92
|
-
u_EMkMRawtcP5w9IeXGIzNhWQ67Z0U6SioKTNAi6Ek8wxGVV_36WRDrgY9uBlj1aVCfqe0QGh.zy
|
|
93
|
-
plHgvPa39r2uQgrcYwEM3mRaaBIlaQboNVoojA4dAWPPIZk65p8CZgsYQl2Cx7zV4_hEeqEQjOXa
|
|
94
|
-
aYtBv14k6NZD9cr7ze4DFDNUFOzIF3tBd5Cb5SJgPMj1yEkUvVoQfxNfGY4g4XmjQoIP5C6JhPVE
|
|
95
|
-
lhS5yo0MydPDheKJCMJR44koTbeI0NMB_MaQ8NPDb3uWA5l2B4KS9HIdfUduhsWFqeY_u3tVrwhU
|
|
96
|
-
qw80vbqqWvTa8IkTG4WOCAgVUqxCiGXjBbZpsyAyZXa32vuCKUBblKvAToqzWEV65HIV72vItW85
|
|
97
|
-
XUSqX3hSedSDg3MOQ7hfTwaXuayV9w29K.ezTpFSwbNEvlqvtNmjg0v3K44DLDHQZfnlWm0SRSI7
|
|
98
|
-
jJvPiltPU_9QYYbmheGq6g4j9WTNmeHLnUhJo7zdY3bTCL6nC.I_GOH9enNhk8GPXQnqpi1cAqT5
|
|
99
|
-
53hFA2Px.aj0XZk.MnEx5kyiY.pNhPT04Wc1rXFGq1Oeh3aVe2oCnetO2o8vA6pJeSxbDvQXtGZL
|
|
100
|
-
5oruFwouK0DGLnbxeCzYpgdsXLsQhjozNvOO8sLkrRdqni8HrB3qkgNGZfGPAgJHbwXwHKzd7KAS
|
|
101
|
-
idED1lwbCeSaBZNWrFhRdeJ6AOMVNz8VjJYGl.U7x0cLsYbnak9L3UqJ_XL1P9nN3zrAA6vy1ytj
|
|
102
|
-
O_zaGYUta7ZvxDpYfnGuEfo4Dqy8znSyEbWbQAbv7U6CZDkxnDR5zt1ZoqXlAMjtcqRxoXT2gjJC
|
|
103
|
-
eUMwIbZdD8d.L0y7LNUufbVP9Sdd.tAUfgtW_hG4g9gKZyBZ0rVriN77zNAT.GWDn5vs5Vdl10PZ
|
|
104
|
-
0yzYexlQwXxX3M5HQnC04brTfy13huqh_aszlQ.PEGQnOZCQowHdL.icE1YxhaqHDMshzylS5gGR
|
|
105
|
-
Iw3THig5SoT1._WiJKjEc4TzKoFJ4DbDVSyFlyUJ66z7ZOa_tskJOUPzdNu0Si4cwuADLfEP41oC
|
|
106
|
-
nVFvXdeFYqgw8ylhav5h7zeCa6ihim0deFEjpFwlvSKW1SZ7MZheLiPtbYpszjx2caSryFxlnHRX
|
|
107
|
-
QoekjWuzsruYR3jD46zToJ2AxmnyecKY.HWk_4pEoExbWgvlnHR3KiJDBz2twZvvKXM0RVPNFe.w
|
|
108
|
-
6KIYh6QGADY8ZSQq.cxqbIQU69q9VPL7iGGZ6PRcdXVpGk76K7K6Ah.iPEk8m9hKc.0L2.PnMGjT
|
|
109
|
-
DldjZBgR3IJ408H2_VPLA6abPpzFAtN6NqltpcRt23XgYquntuZAlBgEFMnkZ.u_1VkjwnNUK5mG
|
|
110
|
-
1Pmh0AEFDa9HyR4AXp6kCCIiLV._Ojo0hcVPJL4oUYxVUUsJHPLXvVss6fczIcZmCoHmimdd2WwX
|
|
111
|
-
B0X5xbU.KPCkygrh2RJcoODjhZTVMC1RMhJV9kp2W
|
|
112
|
-
X-Sonic-MF: <andris.reinman@yahoo.com>
|
|
113
|
-
Received: from sonic.gate.mail.ne1.yahoo.com by sonic314.consmr.mail.bf2.yahoo.com with HTTP; Mon, 10 Oct 2022 05:36:11 +0000
|
|
114
|
-
Date: Mon, 10 Oct 2022 05:34:09 +0000 (UTC)
|
|
115
|
-
From: Andris Reinman <andris.reinman@yahoo.com>
|
|
116
|
-
Reply-To: Andris Reinman <andris.reinman@yahoo.com>
|
|
117
|
-
To: "thgdcgrfchvutycfgxcvg@hot.ee" <thgdcgrfchvutycfgxcvg@hot.ee>
|
|
118
|
-
Message-ID: <1956854879.3770605.1665380049620@mail.yahoo.com>
|
|
119
|
-
Subject: Proov
|
|
120
|
-
MIME-Version: 1.0
|
|
121
|
-
Content-Type: multipart/alternative;
|
|
122
|
-
boundary="----=_Part_3770604_1904401109.1665380049619"
|
|
123
|
-
References: <1956854879.3770605.1665380049620.ref@mail.yahoo.com>
|
|
124
|
-
X-Mailer: WebService/1.1.20702 YMailNorrin
|
|
125
|
-
Content-Length: 518
|
|
126
|
-
|
|
127
|
-
------=_Part_3770604_1904401109.1665380049619
|
|
128
|
-
Content-Type: text/plain; charset=UTF-8
|
|
129
|
-
Content-Transfer-Encoding: 7bit
|
|
130
|
-
|
|
131
|
-
See on proovikiri
|
|
132
|
-
------=_Part_3770604_1904401109.1665380049619
|
|
133
|
-
Content-Type: text/html; charset=UTF-8
|
|
134
|
-
Content-Transfer-Encoding: 7bit
|
|
135
|
-
|
|
136
|
-
<html><head></head><body><div class="yahoo-style-wrap" style="font-family:Helvetica Neue, Helvetica, Arial, sans-serif;font-size:13px;"><div dir="ltr" data-setdir="false">See on proovikiri</div></div></body></html>
|
|
137
|
-
------=_Part_3770604_1904401109.1665380049619--
|
|
138
|
-
|
|
139
|
-
---=Part.4863e.f1d4a2031dce2596.183c064c664.4aa93abac4f414d2=---
|
|
@@ -1,83 +0,0 @@
|
|
|
1
|
-
Delivered-To: sender@example.com
|
|
2
|
-
ARC-Seal: i=1; a=rsa-sha256; t=1675199174; cv=none;
|
|
3
|
-
d=zohomail.com; s=zohoarc;
|
|
4
|
-
b=EqK7TFnKoqO05/iIaAxJZusPe/4Fi8s/8APfkY/aTeVZ2Hj2GYiyQ5qZHSiuuO+G9iGt6GDW6Jn0Vw6roHjNrA86DEBAoQnVlAwlVlH18GD+L28IxcWJPJOfzBzApefYgAHvIjOU5cxtOSCjZRm7XpTb6MwwTce9aG8yWfUYoXA=
|
|
5
|
-
ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zohomail.com; s=zohoarc;
|
|
6
|
-
t=1675199174; h=Content-Type:Date:From:In-Reply-To:MIME-Version:Message-ID:References:Subject:To;
|
|
7
|
-
bh=tQHFXD90H97lDAcZN9kN++gVh6bXghMWmqBMnGuFG8A=;
|
|
8
|
-
b=YKCCKsg86opaQYAX8EFr/ofMeMNJie0uzitzyh+3zV866sHdcidWOoAmkk0S2sR2/DB2TMgpKzJVmaZ+z5W3ngW53H0g4kLCeVah7eHTWbGKgkvTqkNvdXby+LkxJa2gFzdH5AqE1RMFa9Yk5k42C0rYvRSwVHip3ds3jMAK12E=
|
|
9
|
-
ARC-Authentication-Results: i=1; mx.zohomail.com;
|
|
10
|
-
dkim=pass header.i=mail.zoho.com;
|
|
11
|
-
spf=pass;
|
|
12
|
-
dmarc=pass header.from=<mailer-daemon@mail.zoho.com>
|
|
13
|
-
DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; t=1675199174;
|
|
14
|
-
s=zoho; d=mail.zoho.com; i=mailer-daemon@mail.zoho.com;
|
|
15
|
-
h=Date:Date:From:From:To:To:Message-Id:Message-Id:In-Reply-To:References:Subject:Subject:MIME-Version:Content-Type:Reply-To:Cc;
|
|
16
|
-
bh=tQHFXD90H97lDAcZN9kN++gVh6bXghMWmqBMnGuFG8A=;
|
|
17
|
-
b=nQ01z2mbnmbHvl1qJMGAuwgUQGN/DR21okc+40CcURS+fkmKsfADBAXNzk5hfdxW
|
|
18
|
-
b38IwvMHgVEbMq0A0EvCv9GUB45tqmDqnIXBuJCEeJKWIJtCXKBnbuONsXJgevVMoGc
|
|
19
|
-
2D4uVA6ypeqlU5MuhIjx/PPkssnU7XgsIy3FgQWQ=
|
|
20
|
-
Received: from mail.zoho.com by mx.zohomail.com
|
|
21
|
-
with SMTP id 1675199174746457.6819951970117; Tue, 31 Jan 2023 13:06:14 -0800 (PST)
|
|
22
|
-
Date: Tue, 31 Jan 2023 13:06:14 -0800
|
|
23
|
-
From: mailer-daemon@mail.zoho.com
|
|
24
|
-
To: sender@example.com
|
|
25
|
-
Message-Id: <18609a6d859.ecd7eab52042649882.84342979897715207@zohomail.com>
|
|
26
|
-
In-Reply-To: <63d982c2660381675199170@smtppro.zoho.com>
|
|
27
|
-
References: <63d982c2660381675199170@smtppro.zoho.com>
|
|
28
|
-
Subject: Undelivered Mail Returned to Sender
|
|
29
|
-
MIME-Version: 1.0
|
|
30
|
-
Content-Type: multipart/report; report-type=delivery-status;
|
|
31
|
-
boundary="----=_Part_20940_776074881.1675199174745"
|
|
32
|
-
User-Agent: Zoho Mail
|
|
33
|
-
X-Mailer: Zoho Mail
|
|
34
|
-
X-ZohoMail-Owner: <18609a6d859.ecd7eab52042649882.84342979897715207@zohomail.com>+zmo_0_
|
|
35
|
-
|
|
36
|
-
------=_Part_20940_776074881.1675199174745
|
|
37
|
-
Content-Type: text/plain; charset=us-ascii
|
|
38
|
-
Content-Transfer-Encoding: 7bit
|
|
39
|
-
Content-Description: Notification
|
|
40
|
-
|
|
41
|
-
This message was created automatically by mail delivery software.
|
|
42
|
-
A message that you sent could not be delivered to one or more of its recipients. This is a permanent error.
|
|
43
|
-
|
|
44
|
-
recipient@example.com, ERROR CODE :550 - 5.2.1 The email account that you tried to reach is disabled. Learn more at
|
|
45
|
-
5.2.1 https://support.google.com/mail/?p=DisabledUser j8-20020a170903024800b001946612570csi19333477plh.316 - gsmtp
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
------=_Part_20940_776074881.1675199174745
|
|
51
|
-
Content-Type: message/delivery-status
|
|
52
|
-
Content-Transfer-Encoding: 7bit
|
|
53
|
-
Content-Description: Delivery report
|
|
54
|
-
|
|
55
|
-
Reporting-MTA: dns; mx.zohomail.com
|
|
56
|
-
Arrival-Date: Tue, 31 Jan 2023 21:06:10 +0000
|
|
57
|
-
|
|
58
|
-
Original-Recipient: rfc822; recipient@example.com
|
|
59
|
-
Final-Recipient: rfc822; recipient@example.com
|
|
60
|
-
Status: 550
|
|
61
|
-
Action: failed
|
|
62
|
-
Last-Attempt-Date: 31 Jan 2023 21:06:14 GMT
|
|
63
|
-
Diagnostic-Code: 5.2.1 The email account that you tried to reach is disabled. Learn more at
|
|
64
|
-
5.2.1 https://support.google.com/mail/?p=DisabledUser j8-20020a170903024800b001946612570csi19333477plh.316 - gsmtp
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
------=_Part_20940_776074881.1675199174745
|
|
68
|
-
Content-Type: text/rfc822; charset=us-ascii
|
|
69
|
-
Content-Transfer-Encoding: 7bit
|
|
70
|
-
Content-Description: Undelivered Message
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
Received:from app.postaga.com (106.109.197.104.bc.googleusercontent.com [104.197.109.106]) by mx.zohomail.com
|
|
74
|
-
with SMTPS id 16751991711571017.8204286637366; Tue, 31 Jan 2023 13:06:11 -0800 (PST)
|
|
75
|
-
Message-ID:<63d982c2660381675199170@smtppro.zoho.com>
|
|
76
|
-
Date:Tue, 31 Jan 2023 21:06:10 +0000
|
|
77
|
-
From:Sender Name <sender@example.com>
|
|
78
|
-
To:recipient@example.com
|
|
79
|
-
Subject:Example
|
|
80
|
-
Content-Type:multipart/alternative;
|
|
81
|
-
boundary="b1_TKDejv2QiNAmhD4qg9TRParBDoHPsxfsxKoTFpOAZ8Q"
|
|
82
|
-
------=_Part_20940_776074881.1675199174745--
|
|
83
|
-
|