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,242 +0,0 @@
|
|
|
1
|
-
Return-Path: <>
|
|
2
|
-
Received: from compute1.internal (compute1.nyi.internal [10.202.2.41])
|
|
3
|
-
by sloti52n10 (Cyrus 3.7.0-alpha0-1015-gaf7d526680-fm-20220929.001-gaf7d5266) with LMTPA;
|
|
4
|
-
Mon, 10 Oct 2022 01:37:22 -0400
|
|
5
|
-
X-Cyrus-Session-Id: sloti52n10-1665380242-390738-2-14484648852969728690
|
|
6
|
-
X-Sieve: CMU Sieve 3.0
|
|
7
|
-
X-Spam-known-sender: no
|
|
8
|
-
X-Spam-sender-reputation: 500 (none)
|
|
9
|
-
X-Spam-score: 0.0
|
|
10
|
-
X-Spam-hits: ALL_TRUSTED -1, HTML_MESSAGE 0.001, ME_SENDERREP_NEUTRAL 0.001,
|
|
11
|
-
SPF_HELO_PASS -0.001, SPF_PASS -0.001, LANGUAGES en, BAYES_USED none,
|
|
12
|
-
SA_VERSION 3.4.6
|
|
13
|
-
X-Spam-source: IP='Unknown', Host='unk', Country='unk', FromHeader='com', MailFrom='unk'
|
|
14
|
-
X-Spam-charsets: plain='us-ascii'
|
|
15
|
-
X-Resolved-to: andrisreinman@fastmail.com
|
|
16
|
-
X-Delivered-to: andrisreinman@fastmail.com
|
|
17
|
-
X-Mail-from:
|
|
18
|
-
Received: from mx4 ([10.202.2.203])
|
|
19
|
-
by compute1.internal (LMTPProxy); Mon, 10 Oct 2022 01:37:22 -0400
|
|
20
|
-
Received: from mx4.messagingengine.com (localhost [127.0.0.1])
|
|
21
|
-
by mailmx.nyi.internal (Postfix) with ESMTP id 62B9B1F2005A
|
|
22
|
-
for <andrisreinman@fastmail.com>; Mon, 10 Oct 2022 01:37:22 -0400 (EDT)
|
|
23
|
-
Received: from mailmx.nyi.internal (localhost [127.0.0.1])
|
|
24
|
-
by mx4.messagingengine.com (Authentication Milter) with ESMTP
|
|
25
|
-
id BC363B18220;
|
|
26
|
-
Mon, 10 Oct 2022 01:37:22 -0400
|
|
27
|
-
ARC-Seal: i=1; a=rsa-sha256; cv=none; d=messagingengine.com; s=fm3; t=
|
|
28
|
-
1665380242; b=XRtaadV758oJ06U/W+Z5y/o7SY+irSV5V5cQ0ezPqDBplpimeK
|
|
29
|
-
gmDqpiIAbsajc47d9CJLXA6E8dxepJDQy7J1uM01xoeijF4fKb7yOLEIX+R6RcgA
|
|
30
|
-
EDuXlvQxKjZCY3XGHZl4mBnh3mWAyG6jzp3jGLrxTDwDEt35KPnnEArId8a9C5c8
|
|
31
|
-
r7/i1Hx+aTNOB6vJL55UOhcEZEF0X1NH1Zr0y8fdUmeGV5xuARyzNLbWa+i8Zrnw
|
|
32
|
-
NSKM5AlTx1WZv6S/pkNLT3PgZUMM5kTfnmUyGYFL4Rk20whEdmS7yjJVMr5T2Fyl
|
|
33
|
-
Rto0lOpjd7mRRt3Rm2Dl9+4MWs3R9KemcH1g==
|
|
34
|
-
ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=
|
|
35
|
-
messagingengine.com; h=date:from:subject:to:mime-version
|
|
36
|
-
:content-type:message-id; s=fm3; t=1665380242; bh=KJn76mMioEA8HH
|
|
37
|
-
QmzXZAQW2EeOXGBwXa/X5Vqw/6rkw=; b=Y8lqdjFofspVAZ7XEx5eQ0nOjNjSgi
|
|
38
|
-
hHZq+7zVu+peals4Yf4Qc9VHhwDn+KN+x6yFcj9o+rHl/Eoef60jHqzCe51wW19I
|
|
39
|
-
TdQxcEDlw4Q1dAjHOf8A1HDhy4w/7uD2Gsa6G66W/kCNULUPTWCi9rVcyTtufk1n
|
|
40
|
-
QAf0/43RjG/7EbiCSFTYmxPoUSVczoqIPaS1Ev6RYigdIra1rE4zxuYPxmyb48Nr
|
|
41
|
-
B5EKmPqSYM5/73wEOxVyKlCowPjo3Qxwrz0ALIT6GMQju2/+MbUCp0HW5i6vh1Lr
|
|
42
|
-
PmzHA090iEeEdrsC1+CvLhp1mgaNTfZN8Jdq7XBpaTNiA/v+oPU8VeGQ==
|
|
43
|
-
ARC-Authentication-Results: i=1; mx4.messagingengine.com;
|
|
44
|
-
x-csa=none;
|
|
45
|
-
x-me-sender=none;
|
|
46
|
-
x-ptr=pass smtp.helo=out1-smtp.messagingengine.com
|
|
47
|
-
policy.ptr=out1-smtp.messagingengine.com;
|
|
48
|
-
bimi=skipped (DMARC Policy is not at enforcement);
|
|
49
|
-
arc=none (no signatures found);
|
|
50
|
-
dkim=none (no signatures found);
|
|
51
|
-
dmarc=pass policy.published-domain-policy=none
|
|
52
|
-
policy.applied-disposition=none policy.evaluated-disposition=none
|
|
53
|
-
(p=none,d=none,d.eval=none) policy.policy-from=p
|
|
54
|
-
header.from=messagingengine.com;
|
|
55
|
-
iprev=pass smtp.remote-ip=66.111.4.25 (out1-smtp.messagingengine.com);
|
|
56
|
-
spf=pass smtp.mailfrom="" smtp.helo=out1-smtp.messagingengine.com
|
|
57
|
-
X-ME-Authentication-Results: mx4.messagingengine.com;
|
|
58
|
-
x-aligned-from=null_smtp (No envelope domain);
|
|
59
|
-
x-return-mx=fail smtp.domain=localhost.localdomain
|
|
60
|
-
policy.org_domain=localdomain policy.is_org=no
|
|
61
|
-
policy.mx_error=NXDOMAIN policy.a_error=NXDOMAIN
|
|
62
|
-
policy.aaaa_error=NXDOMAIN policy.org_mx_error=NXDOMAIN
|
|
63
|
-
policy.org_a_error=NXDOMAIN policy.org_aaaa_error=NXDOMAIN;
|
|
64
|
-
x-return-mx=pass header.domain=messagingengine.com policy.is_org=yes
|
|
65
|
-
(MX Records found: in2-smtp.messagingengine.com,in1-smtp.messagingengine.com);
|
|
66
|
-
x-tls=pass smtp.version=TLSv1.3 smtp.cipher=TLS_AES_256_GCM_SHA384
|
|
67
|
-
smtp.bits=256/256;
|
|
68
|
-
x-vs=bounce score=10000 state=3
|
|
69
|
-
Authentication-Results: mx4.messagingengine.com;
|
|
70
|
-
x-csa=none;
|
|
71
|
-
x-me-sender=none;
|
|
72
|
-
x-ptr=pass smtp.helo=out1-smtp.messagingengine.com
|
|
73
|
-
policy.ptr=out1-smtp.messagingengine.com
|
|
74
|
-
Authentication-Results: mx4.messagingengine.com;
|
|
75
|
-
bimi=skipped (DMARC Policy is not at enforcement)
|
|
76
|
-
Authentication-Results: mx4.messagingengine.com;
|
|
77
|
-
arc=none (no signatures found)
|
|
78
|
-
Authentication-Results: mx4.messagingengine.com;
|
|
79
|
-
dkim=none (no signatures found);
|
|
80
|
-
dmarc=pass policy.published-domain-policy=none
|
|
81
|
-
policy.applied-disposition=none policy.evaluated-disposition=none
|
|
82
|
-
(p=none,d=none,d.eval=none) policy.policy-from=p
|
|
83
|
-
header.from=messagingengine.com;
|
|
84
|
-
iprev=pass smtp.remote-ip=66.111.4.25 (out1-smtp.messagingengine.com);
|
|
85
|
-
spf=pass smtp.mailfrom="" smtp.helo=out1-smtp.messagingengine.com
|
|
86
|
-
X-ME-VSCause: gggruggvucftvghtrhhoucdtuddrgedvfedrfeejvddgleekucetufdoteggodetrfdotf
|
|
87
|
-
fvucfrrhhofhhilhgvmecuhfgrshhtofgrihhlpdggtfgfnhhsuhgsshgtrhhisggvpdfu
|
|
88
|
-
rfetoffkrfgpnffqhgenuceurghilhhouhhtmecufedttdenucfpohhtihhfihgtrghtih
|
|
89
|
-
honhculddutddttddtmdenucfjughrpeffhffuvfggtgesphdttdertddtvdenucfhrhho
|
|
90
|
-
mhepofetkffngfftqdfftefgoffqpfesmhgvshhsrghgihhnghgvnhhgihhnvgdrtghomh
|
|
91
|
-
culdforghilhcuffgvlhhivhgvrhihucfuhihsthgvmhdmnecuggftrfgrthhtvghrnhep
|
|
92
|
-
hefgkeeugefhvdeivedvhfeuteettdfhffeuiefggefgkefhgfduvdffffetudfhnecuff
|
|
93
|
-
homhgrihhnpehfrghsthhmrghilhdrhhgvlhhppdgvthhhvghrvggrlhdrvghmrghilhen
|
|
94
|
-
ucfkphepieeirdduuddurdegrddvheenucevlhhushhtvghrufhiiigvpedtnecurfgrrh
|
|
95
|
-
grmhepihhnvghtpeeiiedrudduuddrgedrvdehpdhhvghlohepohhuthduqdhsmhhtphdr
|
|
96
|
-
mhgvshhsrghgihhnghgvnhhgihhnvgdrtghomhdpmhgrihhlfhhrohhmpeeoqe
|
|
97
|
-
X-ME-VSScore: 10000
|
|
98
|
-
X-ME-VSCategory: bounce
|
|
99
|
-
X-ME-CSA: none
|
|
100
|
-
Received-SPF: pass
|
|
101
|
-
(out1-smtp.messagingengine.com: Sender is authorized to use 'out1-smtp.messagingengine.com' in 'helo' identity (mechanism 'include:spf.messagingengine.com' matched))
|
|
102
|
-
receiver=mx4.messagingengine.com;
|
|
103
|
-
identity=helo;
|
|
104
|
-
helo=out1-smtp.messagingengine.com;
|
|
105
|
-
client-ip=66.111.4.25
|
|
106
|
-
Received: from mailout.nyi.internal (outbound1.nyi.internal [10.202.2.181])
|
|
107
|
-
(using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)
|
|
108
|
-
key-exchange X25519 server-signature RSA-PSS (2048 bits))
|
|
109
|
-
(No client certificate requested)
|
|
110
|
-
by mailmx.nyi.internal (Postfix) with ESMTPS
|
|
111
|
-
for <andrisreinman@fastmail.com>; Mon, 10 Oct 2022 01:37:22 -0400 (EDT)
|
|
112
|
-
Received: by mailout.nyi.internal (Postfix)
|
|
113
|
-
id 37BD05C00A2; Mon, 10 Oct 2022 01:37:22 -0400 (EDT)
|
|
114
|
-
Date: Mon, 10 Oct 2022 01:37:22 -0400 (EDT)
|
|
115
|
-
From: MAILER-DAEMON@messagingengine.com (Mail Delivery System)
|
|
116
|
-
Subject: Undelivered Mail Returned to Sender
|
|
117
|
-
To: andrisreinman@fastmail.com
|
|
118
|
-
Auto-Submitted: auto-replied
|
|
119
|
-
MIME-Version: 1.0
|
|
120
|
-
Content-Type: multipart/report; report-type=delivery-status;
|
|
121
|
-
boundary="38C145C00A7.1665380242/mailout.nyi.internal"
|
|
122
|
-
Message-Id: <20221010053722.37BD05C00A2@mailout.nyi.internal>
|
|
123
|
-
|
|
124
|
-
This is a MIME-encapsulated message.
|
|
125
|
-
|
|
126
|
-
--38C145C00A7.1665380242/mailout.nyi.internal
|
|
127
|
-
Content-Description: Notification
|
|
128
|
-
Content-Type: text/plain; charset=us-ascii
|
|
129
|
-
|
|
130
|
-
This is an automated message from the mail system at Fastmail.
|
|
131
|
-
|
|
132
|
-
I'm sorry to have to inform you that your message could not
|
|
133
|
-
be delivered to one or more recipients. It's attached below.
|
|
134
|
-
|
|
135
|
-
For further assistance, please read our help center article
|
|
136
|
-
about message bounces
|
|
137
|
-
|
|
138
|
-
https://www.fastmail.help/hc/en-us/articles/360058753614-Why-messages-bounce-back
|
|
139
|
-
|
|
140
|
-
If you would like to reach out to our support team about the
|
|
141
|
-
issue then please include this problem report.
|
|
142
|
-
|
|
143
|
-
The Fastmail support team.
|
|
144
|
-
out.outbound1
|
|
145
|
-
|
|
146
|
-
<htfgvhyufthdgcvhgjyfthgc@ethereal.email>: host mx.ethereal.email[54.36.85.113]
|
|
147
|
-
said: 550 No such user here (in reply to RCPT TO command)
|
|
148
|
-
|
|
149
|
-
--38C145C00A7.1665380242/mailout.nyi.internal
|
|
150
|
-
Content-Description: Delivery report
|
|
151
|
-
Content-Type: message/delivery-status
|
|
152
|
-
|
|
153
|
-
Reporting-MTA: dns; mailout.nyi.internal
|
|
154
|
-
X-Postfix-Queue-ID: 38C145C00A7
|
|
155
|
-
X-Postfix-Sender: rfc822; andrisreinman@fastmail.com
|
|
156
|
-
Arrival-Date: Mon, 10 Oct 2022 01:37:21 -0400 (EDT)
|
|
157
|
-
|
|
158
|
-
Final-Recipient: rfc822; htfgvhyufthdgcvhgjyfthgc@ethereal.email
|
|
159
|
-
Original-Recipient: rfc822;htfgvhyufthdgcvhgjyfthgc@ethereal.email
|
|
160
|
-
Action: failed
|
|
161
|
-
Status: 5.0.0
|
|
162
|
-
Remote-MTA: dns; mx.ethereal.email
|
|
163
|
-
Diagnostic-Code: smtp; 550 No such user here
|
|
164
|
-
|
|
165
|
-
--38C145C00A7.1665380242/mailout.nyi.internal
|
|
166
|
-
Content-Description: Undelivered Message
|
|
167
|
-
Content-Type: message/rfc822
|
|
168
|
-
|
|
169
|
-
Return-Path: <andrisreinman@fastmail.com>
|
|
170
|
-
Received: from compute2.internal (compute2.nyi.internal [10.202.2.46])
|
|
171
|
-
by mailout.nyi.internal (Postfix) with ESMTP id 38C145C00A7
|
|
172
|
-
for <htfgvhyufthdgcvhgjyfthgc@ethereal.email>; Mon, 10 Oct 2022 01:37:21 -0400 (EDT)
|
|
173
|
-
Received: from imap52 ([10.202.2.102])
|
|
174
|
-
by compute2.internal (MEProxy); Mon, 10 Oct 2022 01:37:21 -0400
|
|
175
|
-
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=fastmail.com; h=
|
|
176
|
-
cc:content-type:date:date:from:from:in-reply-to:message-id
|
|
177
|
-
:mime-version:reply-to:sender:subject:subject:to:to; s=fm3; t=
|
|
178
|
-
1665380241; x=1665466641; bh=4Dck+/GBx1OBIiq7W9OxkDNSMPHjTIytyZQ
|
|
179
|
-
vO9ev/Sw=; b=e82wM1gA2Sz6+FkmXxqxQAaZCGEf8+XgkC0oJWl5mBUSG+hKPps
|
|
180
|
-
pCN8zw+2dGJCzSFFCQvgBxQmkiu1hk/dYZM9lTUtbaRl0pzFP0rtCDzGD9dOMqM4
|
|
181
|
-
Dho0YCbg573y3y+mBiOq+WWPVN0sUDx5LngKPH2jk16e7AqBmsgZBbLU/QSpMgXE
|
|
182
|
-
uHiP8yysNvkmBQSze4hcgpz2XcixycD3Kzi14IH1VokVW/CQixltNorpRMlEFdyp
|
|
183
|
-
AwHJVj43+JDo+6VaXJIXt166TQK4swzxxoRjtOfnaE3wLRHTRZiLyoKqoWF8EnaR
|
|
184
|
-
5iVG2yNrpPwKDxL1viS27lJsaXCHqmmNdBg==
|
|
185
|
-
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=
|
|
186
|
-
messagingengine.com; h=cc:content-type:date:date:feedback-id
|
|
187
|
-
:feedback-id:from:from:in-reply-to:message-id:mime-version
|
|
188
|
-
:reply-to:sender:subject:subject:to:to:x-me-proxy:x-me-proxy
|
|
189
|
-
:x-me-sender:x-me-sender:x-sasl-enc; s=fm3; t=1665380241; x=
|
|
190
|
-
1665466641; bh=4Dck+/GBx1OBIiq7W9OxkDNSMPHjTIytyZQvO9ev/Sw=; b=Z
|
|
191
|
-
j+2dow+p7L44ToFnzPGfEY0QGMgUqPORgijx7JIN9xbbnLaq/bBzzeZ/dxOI8QcH
|
|
192
|
-
Fw7rkrVFGI+BWhLzlwczc2fyqNy3H/Agf2UZ3zYo6t6Yw9KLUyict/sMKw2qe2+d
|
|
193
|
-
OHW7CvNDTnncq9F8+cWy+1+m8qBFIfL3yq5SGAjNrcHn1mSeFR68P6inJsIcqHgq
|
|
194
|
-
9IWsvKGT4dEUdUUKoLg2R+WwEXva54dXMflQjrR5SjiH8O2t/Or3IlyxkpsdByKa
|
|
195
|
-
eO72oRAnVH4LZ9oTMQqdk6/z6K/THGLgxi5yx9a8GcM7nWfQ5rjYsxKOmuMoyhNV
|
|
196
|
-
CeXLIuIk7CICOz4mtiGFQ==
|
|
197
|
-
X-ME-Sender: <xms:ka9DYx_VymI-Eh8GlRleErJy_ucfYZYu2PcG5ulj97kW0ud2hLqHJQ>
|
|
198
|
-
<xme:ka9DY1u0YO5H1321N90nocpaJQ5nnxZnh_6sLszX-N_dOWS20Spdf7zoW9J6HZzBB
|
|
199
|
-
YdxVmyyByBTOZe4Gsc>
|
|
200
|
-
X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgedvfedrfeejvddgleelucetufdoteggodetrfdotf
|
|
201
|
-
fvucfrrhhofhhilhgvmecuhfgrshhtofgrihhlpdfqfgfvpdfurfetoffkrfgpnffqhgen
|
|
202
|
-
uceurghilhhouhhtmecufedttdenucenucfjughrpefofgggkfffhffvufgtsegrtderre
|
|
203
|
-
erreejnecuhfhrohhmpedftehnughrihhsucftvghinhhmrghnfdcuoegrnhgurhhishhr
|
|
204
|
-
vghinhhmrghnsehfrghsthhmrghilhdrtghomheqnecuggftrfgrthhtvghrnhepgeehtd
|
|
205
|
-
fgteffjeefjeeivddtjeekjeevtdekgeeujedujeevgedvkeeuudegjeevnecuvehluhhs
|
|
206
|
-
thgvrhfuihiivgeptdenucfrrghrrghmpehmrghilhhfrhhomheprghnughrihhsrhgvih
|
|
207
|
-
hnmhgrnhesfhgrshhtmhgrihhlrdgtohhm
|
|
208
|
-
X-ME-Proxy: <xmx:ka9DY_DkeoaeErn-vnn-UmHMMW3cdWBajoNCQxjPW45X8FuKHWWemA>
|
|
209
|
-
<xmx:ka9DY1eGJh6oVmLl-rDF4sUABZoSOlS6aMf5G5VGcM0FH8R5q_oBwA>
|
|
210
|
-
<xmx:ka9DY2MhkfkvsIhCL7_-hsBebOVFdF8WOhstdPFyozGLerTby9VtdQ>
|
|
211
|
-
<xmx:ka9DY8YkT1GgMLsgw1JXXzb27VsK9Vy5oj8PpAHxgvc6cEx3qVxf0Q>
|
|
212
|
-
Feedback-ID: i786146f2:Fastmail
|
|
213
|
-
Received: by mailuser.nyi.internal (Postfix, from userid 501)
|
|
214
|
-
id 0A24FC60091; Mon, 10 Oct 2022 01:37:21 -0400 (EDT)
|
|
215
|
-
X-Mailer: MessagingEngine.com Webmail Interface
|
|
216
|
-
Fastmail-Sender-Identity: 123489720
|
|
217
|
-
User-Agent: Cyrus-JMAP/3.7.0-alpha0-1015-gaf7d526680-fm-20220929.001-gaf7d5266
|
|
218
|
-
Mime-Version: 1.0
|
|
219
|
-
X-PersonalityId: 123489720
|
|
220
|
-
Message-Id: <e85f1c9b-9b51-4028-8ec0-0a657155028e@app.fastmail.com>
|
|
221
|
-
Date: Mon, 10 Oct 2022 08:37:00 +0300
|
|
222
|
-
From: "Andris Reinman" <andrisreinman@fastmail.com>
|
|
223
|
-
To: htfgvhyufthdgcvhgjyfthgc@ethereal.email
|
|
224
|
-
Subject: Proovikiri
|
|
225
|
-
Content-Type: multipart/alternative;
|
|
226
|
-
boundary=faafbc6258b640bbace4cf9bc4fac276
|
|
227
|
-
|
|
228
|
-
--faafbc6258b640bbace4cf9bc4fac276
|
|
229
|
-
Content-Type: text/plain;charset=utf-8
|
|
230
|
-
Content-Transfer-Encoding: quoted-printable
|
|
231
|
-
|
|
232
|
-
Veel =C3=BCks proov
|
|
233
|
-
--faafbc6258b640bbace4cf9bc4fac276
|
|
234
|
-
Content-Type: text/html;charset=utf-8
|
|
235
|
-
Content-Transfer-Encoding: quoted-printable
|
|
236
|
-
|
|
237
|
-
<!DOCTYPE html><html><head><title></title><style type=3D"text/css">p.Mso=
|
|
238
|
-
Normal,p.MsoNoSpacing{margin:0}</style></head><body><div>Veel =C3=BCks p=
|
|
239
|
-
roov</div></body></html>
|
|
240
|
-
--faafbc6258b640bbace4cf9bc4fac276--
|
|
241
|
-
|
|
242
|
-
--38C145C00A7.1665380242/mailout.nyi.internal--
|
|
@@ -1,252 +0,0 @@
|
|
|
1
|
-
Delivered-To: andris.reinman@gmail.com
|
|
2
|
-
Received: by 2002:a05:6358:44d:b0:b5:cc1d:14a6 with SMTP id 13csp2168397rwe;
|
|
3
|
-
Sun, 9 Oct 2022 22:30:57 -0700 (PDT)
|
|
4
|
-
X-Received: by 2002:a05:6870:1685:b0:132:d9b7:5fd6 with SMTP id j5-20020a056870168500b00132d9b75fd6mr8745816oae.252.1665379857405;
|
|
5
|
-
Sun, 09 Oct 2022 22:30:57 -0700 (PDT)
|
|
6
|
-
ARC-Seal: i=1; a=rsa-sha256; t=1665379857; cv=none;
|
|
7
|
-
d=google.com; s=arc-20160816;
|
|
8
|
-
b=n6mBiOPXiNCsHrEPjPE13Ud+ZTZbsJ+84lFsb4RRmQOxzFHl/ZnsEsRG0uXZ6TdS3g
|
|
9
|
-
1TXlhCLDFMpexoU0pIz4IeKhoVWJcMRRdfXaHWklhMEAndaKe4T8KJ05UAqUagkxy9Za
|
|
10
|
-
x47wLapx/EAbc1ZyL0TZATZ5htocw6p+71xtMmNSaC5TRzaw8NLeWOyypwZuekSXecQM
|
|
11
|
-
0QVvyjJSbJRMilrpncJllpozXvZHmoDidTWg+lptmTJhlXOhVysJ/eiz+eAkx9QMMuJR
|
|
12
|
-
DJVQdFYsX4k7JrrhYBpV9O/7vo5Tk6UNV4focnf8jFf1cHgt/cWZhtb66U23rX7f1k+f
|
|
13
|
-
Z55w==
|
|
14
|
-
ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816;
|
|
15
|
-
h=in-reply-to:references:subject:from:date:message-id:auto-submitted
|
|
16
|
-
:to:dkim-signature;
|
|
17
|
-
bh=zPWlpisfdLZYYsiwZeJv+TuYWBUB3JVY6/Smynzi/8A=;
|
|
18
|
-
b=gVdoVdUG+UFZ+V3kHmAUNGJMbOBg7cI7+LZBTVrStjTBqKL5ppdkM7r2750EhDrYPA
|
|
19
|
-
C7ox+4ZP7CeacsuGHCL9+FXFAnr9loRXd3TjK9YHh0s1aelIFK5rk4ul6CKeSpQGy2DE
|
|
20
|
-
x7CLyzQdgmRFVDnWhk81lpWXmCN2MHY7nWzB3MAXtWjIeziW2rPgLZLpfwBUgclrQ4m8
|
|
21
|
-
44BbrWbjqzj2LksrGia8yIa3n4UuN4JIX7jQLL5xxsmFFhpcRCiWvPN8psILCaRRxRma
|
|
22
|
-
Pmy15hyCDW3v24+k3XSM9Tm6cBgBWv7KvOJfyZUcDVYEY+bkFW7S+NYDw7o67n7bgu3m
|
|
23
|
-
r5CA==
|
|
24
|
-
ARC-Authentication-Results: i=1; mx.google.com;
|
|
25
|
-
dkim=pass header.i=@googlemail.com header.s=20210112 header.b=epwhRMEX;
|
|
26
|
-
spf=pass (google.com: best guess record for domain of postmaster@mail-sor-f69.google.com designates 209.85.220.69 as permitted sender) smtp.helo=mail-sor-f69.google.com;
|
|
27
|
-
dmarc=pass (p=QUARANTINE sp=QUARANTINE dis=NONE) header.from=googlemail.com
|
|
28
|
-
Return-Path: <>
|
|
29
|
-
Received: from mail-sor-f69.google.com (mail-sor-f69.google.com. [209.85.220.69])
|
|
30
|
-
by mx.google.com with SMTPS id r7-20020aca4407000000b003537eea70desor2132402oia.2.2022.10.09.22.30.57
|
|
31
|
-
for <andris.reinman@gmail.com>
|
|
32
|
-
(Google Transport Security);
|
|
33
|
-
Sun, 09 Oct 2022 22:30:57 -0700 (PDT)
|
|
34
|
-
Received-SPF: pass (google.com: best guess record for domain of postmaster@mail-sor-f69.google.com designates 209.85.220.69 as permitted sender) client-ip=209.85.220.69;
|
|
35
|
-
Authentication-Results: mx.google.com;
|
|
36
|
-
dkim=pass header.i=@googlemail.com header.s=20210112 header.b=epwhRMEX;
|
|
37
|
-
spf=pass (google.com: best guess record for domain of postmaster@mail-sor-f69.google.com designates 209.85.220.69 as permitted sender) smtp.helo=mail-sor-f69.google.com;
|
|
38
|
-
dmarc=pass (p=QUARANTINE sp=QUARANTINE dis=NONE) header.from=googlemail.com
|
|
39
|
-
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
|
|
40
|
-
d=googlemail.com; s=20210112;
|
|
41
|
-
h=in-reply-to:references:subject:from:date:message-id:auto-submitted
|
|
42
|
-
:to:from:to:cc:subject:date:message-id:reply-to;
|
|
43
|
-
bh=zPWlpisfdLZYYsiwZeJv+TuYWBUB3JVY6/Smynzi/8A=;
|
|
44
|
-
b=epwhRMEXqgeSFMOZ8cdmc+V2OMsARHLN86jLc8v86MX/YL9A+fAQzhrsU0WR0OPQrp
|
|
45
|
-
ezOtZRfy5rgLkU3V5wU3L9Q8+M/HERsb8ul+q8MM+lVTSxLeGLJBjNv5HAPMG93VrZIW
|
|
46
|
-
za2ZKmuD7K4JJECd3h7N6ch4er6mh8fqNCthwsp05HSzH+NUtVAyA0M7rfZlrEFUu5ix
|
|
47
|
-
haT9guBg60N9MMgrB5F8XprvEXjdXsBAQuQNn1GEqtGzYdpBUMpKThdjuQI6qD6gur+s
|
|
48
|
-
kocSV0pzIU4loDwHgW2jpXgY4iwUcYmb4z5uk7Im4CAL6Mp8PByqLDNDhyEJXxaBjFo4
|
|
49
|
-
J3zg==
|
|
50
|
-
X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
|
|
51
|
-
d=1e100.net; s=20210112;
|
|
52
|
-
h=in-reply-to:references:subject:from:date:message-id:auto-submitted
|
|
53
|
-
:to:x-gm-message-state:from:to:cc:subject:date:message-id:reply-to;
|
|
54
|
-
bh=zPWlpisfdLZYYsiwZeJv+TuYWBUB3JVY6/Smynzi/8A=;
|
|
55
|
-
b=I7B8ZDu/2hszBjggpfpiOquce3Zwc/npHh7bxqjlejMN/Jg38wNhteS06m/pEG2JOY
|
|
56
|
-
FI8WNDAveTvsbmOeNW2HkXTvH9SjeR8lyaiG2IMFOFzOWzBTYbwKsqlYUsSa0Lw92d4S
|
|
57
|
-
Ut/cSDqb9PeA8Pr2jOPupt6IglaJroIYgG4sl8NnxTLTmGRr6Ff8o8nyDd5c7h0iSWF+
|
|
58
|
-
dWT41HxpjmODIRwto00EENFzaCljZf2GcewwaDnBXptDbslyZ6ecYTvIv2925+9NYeg2
|
|
59
|
-
/9rayKw3j6JS2OO3nZJ6zHDCLMp8dh3dx5zvn5Vv3MVI1PS0G8T3HZhxXHYkzysWrAyf
|
|
60
|
-
rq0g==
|
|
61
|
-
X-Gm-Message-State: ACrzQf2B/quvpE3cdWHUFDEdmje/2DDUYmJ5YTJa0Sjlu6u0QVwg0Dkw
|
|
62
|
-
miOCslynJzXoPSauR3C/A08W07FpytzeKyt5SePbyg==
|
|
63
|
-
X-Google-Smtp-Source: AMsMyM6CVZwoeyfXVjc/UrScBWi0R7KwyoIR3Lg34aBP4o9CWl4eK89DqhsYzbdgaoYhFfyYnwSRDVwob1MuFzAgK2plRWqip9ffJsM=
|
|
64
|
-
X-Received: by 2002:a05:6808:1496:b0:350:4640:5462 with SMTP id e22-20020a056808149600b0035046405462mr13351725oiw.47.1665379857284;
|
|
65
|
-
Sun, 09 Oct 2022 22:30:57 -0700 (PDT)
|
|
66
|
-
Content-Type: multipart/report; boundary="000000000000cf33c605eaa776f8"; report-type=delivery-status
|
|
67
|
-
To: andris.reinman@gmail.com
|
|
68
|
-
Received: by 2002:a05:6808:1496:b0:350:4640:5462 with SMTP id
|
|
69
|
-
e22-20020a056808149600b0035046405462mr11322463oiw.47; Sun, 09 Oct 2022
|
|
70
|
-
22:30:57 -0700 (PDT)
|
|
71
|
-
Return-Path: <>
|
|
72
|
-
Auto-Submitted: auto-replied
|
|
73
|
-
Message-ID: <6343ae11.050a0220.d9258.3a6c.GMR@mx.google.com>
|
|
74
|
-
Date: Sun, 09 Oct 2022 22:30:57 -0700 (PDT)
|
|
75
|
-
From: Mail Delivery Subsystem <mailer-daemon@googlemail.com>
|
|
76
|
-
Subject: Delivery Status Notification (Failure)
|
|
77
|
-
References: <CAPacwgw3pCyVcmW4nVy8VPX5u5ksn_wZB2jZ_tLUM2es7LaiEA@mail.gmail.com>
|
|
78
|
-
In-Reply-To: <CAPacwgw3pCyVcmW4nVy8VPX5u5ksn_wZB2jZ_tLUM2es7LaiEA@mail.gmail.com>
|
|
79
|
-
X-Failed-Recipients: jhfthgfuyfhvjkugjhvjuyfv@hot.ee
|
|
80
|
-
|
|
81
|
-
--000000000000cf33c605eaa776f8
|
|
82
|
-
Content-Type: multipart/related; boundary="000000000000cf397605eaa776f9"
|
|
83
|
-
|
|
84
|
-
--000000000000cf397605eaa776f9
|
|
85
|
-
Content-Type: multipart/alternative; boundary="000000000000cf398105eaa776fa"
|
|
86
|
-
|
|
87
|
-
--000000000000cf398105eaa776fa
|
|
88
|
-
Content-Type: text/plain; charset="UTF-8"
|
|
89
|
-
Content-Transfer-Encoding: quoted-printable
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
** Aadressi ei leitud **
|
|
93
|
-
|
|
94
|
-
Teie kirja kontole jhfthgfuyfhvjkugjhvjuyfv@hot.ee ei saadetud, kuna aadres=
|
|
95
|
-
si ei leitud v=C3=B5i see ei saa meile vastu v=C3=B5tta.
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
Vastus kaugserverist oli j=C3=A4rgmine:
|
|
100
|
-
550 5.1.1 <jhfthgfuyfhvjkugjhvjuyfv@hot.ee>: Recipient address rejected: Us=
|
|
101
|
-
er unknown in relay recipient table
|
|
102
|
-
|
|
103
|
-
--000000000000cf398105eaa776fa
|
|
104
|
-
Content-Type: text/html; charset="UTF-8"
|
|
105
|
-
Content-Transfer-Encoding: quoted-printable
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
<html>
|
|
109
|
-
<head>
|
|
110
|
-
<style>
|
|
111
|
-
* {
|
|
112
|
-
font-family:Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
113
|
-
}
|
|
114
|
-
</style>
|
|
115
|
-
</head>
|
|
116
|
-
<body>
|
|
117
|
-
<table cellpadding=3D"0" cellspacing=3D"0" class=3D"email-wrapper" style=3D=
|
|
118
|
-
"padding-top:32px;background-color:#ffffff;"><tbody>
|
|
119
|
-
<tr><td>
|
|
120
|
-
<table cellpadding=3D0 cellspacing=3D0><tbody>
|
|
121
|
-
<tr><td style=3D"max-width:560px;padding:24px 24px 32px;background-color:#f=
|
|
122
|
-
afafa;border:1px solid #e0e0e0;border-radius:2px">
|
|
123
|
-
<img style=3D"padding:0 24px 16px 0;float:left" width=3D72 height=3D72 alt=
|
|
124
|
-
=3D"Veaikoon" src=3D"cid:icon.png">
|
|
125
|
-
<table style=3D"min-width:272px;padding-top:8px"><tbody>
|
|
126
|
-
<tr><td><h2 style=3D"font-size:20px;color:#212121;font-weight:bold;margin:0=
|
|
127
|
-
">
|
|
128
|
-
Aadressi ei leitud
|
|
129
|
-
</h2></td></tr>
|
|
130
|
-
<tr><td style=3D"padding-top:20px;color:#757575;font-size:16px;font-weight:=
|
|
131
|
-
normal;text-align:left">
|
|
132
|
-
Teie kirja kontole <a style=3D'color:#212121;text-decoration:none'><b>jhfth=
|
|
133
|
-
gfuyfhvjkugjhvjuyfv@hot.ee</b></a> ei saadetud, kuna aadressi ei leitud v=
|
|
134
|
-
=C3=B5i see ei saa meile vastu v=C3=B5tta.
|
|
135
|
-
</td></tr>
|
|
136
|
-
</tbody></table>
|
|
137
|
-
</td></tr>
|
|
138
|
-
</tbody></table>
|
|
139
|
-
</td></tr>
|
|
140
|
-
<tr style=3D"border:none;background-color:#fff;font-size:12.8px;width:90%">
|
|
141
|
-
<td align=3D"left" style=3D"padding:48px 10px">
|
|
142
|
-
Kaugserver esitas vastuse:<br/>
|
|
143
|
-
<p style=3D"font-family:monospace">
|
|
144
|
-
550 5.1.1 <jhfthgfuyfhvjkugjhvjuyfv@hot.ee>: Recipient address reject=
|
|
145
|
-
ed: User unknown in relay recipient table
|
|
146
|
-
</p>
|
|
147
|
-
</td>
|
|
148
|
-
</tr>
|
|
149
|
-
</tbody></table>
|
|
150
|
-
</body>
|
|
151
|
-
</html>
|
|
152
|
-
|
|
153
|
-
--000000000000cf398105eaa776fa--
|
|
154
|
-
--000000000000cf397605eaa776f9
|
|
155
|
-
Content-Type: image/png; name="icon.png"
|
|
156
|
-
Content-Disposition: attachment; filename="icon.png"
|
|
157
|
-
Content-Transfer-Encoding: base64
|
|
158
|
-
Content-ID: <icon.png>
|
|
159
|
-
|
|
160
|
-
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
-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
-
yA0SPhAUQAQFUkyTgiBASARo6QApqVIkfdxGFJFSgGhJAUIiBaQB0ZIOKVCkwUgURjIg2fxL4kS+
|
|
163
|
-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
-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
-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
-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
-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
-
VsrrDbPBYcYKgf5D2wLaV3p+22xh1u17tO3S+DTcvxvagUDeivPgx/a/95J/73w7Sj26Hn4pKo2M
|
|
169
|
-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
-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
-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
-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
-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
-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
-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
-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
-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
-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
-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
-
ABAI0oV2jhxZ+nfBatuPZfgBCy0Eqqo8c01b+uu51XZvzOgDWoHNTGR+pCwpLEd5svuAZXlO2uEr
|
|
181
|
-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
-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
-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
-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
|
|
185
|
-
LK8FGADCTxYrr+EVJgAAAABJRU5ErkJggg==
|
|
186
|
-
--000000000000cf397605eaa776f9--
|
|
187
|
-
--000000000000cf33c605eaa776f8
|
|
188
|
-
Content-Type: message/delivery-status
|
|
189
|
-
|
|
190
|
-
Reporting-MTA: dns; googlemail.com
|
|
191
|
-
Arrival-Date: Sun, 09 Oct 2022 22:30:54 -0700 (PDT)
|
|
192
|
-
X-Original-Message-ID: <CAPacwgw3pCyVcmW4nVy8VPX5u5ksn_wZB2jZ_tLUM2es7LaiEA@mail.gmail.com>
|
|
193
|
-
|
|
194
|
-
Final-Recipient: rfc822; jhfthgfuyfhvjkugjhvjuyfv@hot.ee
|
|
195
|
-
Action: failed
|
|
196
|
-
Status: 5.1.1
|
|
197
|
-
Remote-MTA: dns; mx1.hot.ee. (194.126.101.119, the server for the domain hot.ee.)
|
|
198
|
-
Diagnostic-Code: smtp; 550 5.1.1 <jhfthgfuyfhvjkugjhvjuyfv@hot.ee>: Recipient address rejected: User unknown in relay recipient table
|
|
199
|
-
Last-Attempt-Date: Sun, 09 Oct 2022 22:30:57 -0700 (PDT)
|
|
200
|
-
|
|
201
|
-
--000000000000cf33c605eaa776f8
|
|
202
|
-
Content-Type: message/rfc822
|
|
203
|
-
|
|
204
|
-
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
|
|
205
|
-
d=gmail.com; s=20210112;
|
|
206
|
-
h=to:subject:message-id:date:from:mime-version:from:to:cc:subject
|
|
207
|
-
:date:message-id:reply-to;
|
|
208
|
-
bh=nnVtM9pzwXTdt1o/7mH+EPq2FJKPRxlOpHKe5Ce3xwM=;
|
|
209
|
-
b=N+jZ2z1r/8wpUfnjALBvs9dXcv85Dn1Rdf0dMRImaU2LhWSLhJFaVCl4PqgLhIYfi+
|
|
210
|
-
zvgNebGi2TGtiTcjLxFpO7pm74fMEMVSixs3GH3kcfoooMwzrsAnOXXep/c9o297WUCb
|
|
211
|
-
JEIc6SodAJY7TZ0adQF/GSz9YwttlX6SsH3RjmYGyQ9WRmvUPnkT/dTqgRbCBsi21C4a
|
|
212
|
-
SzUNq9QyB/9UL3S32ml3ERDCQMzak07e5gCgO6MQ0Q6q0vyy6xdIvMhaD+Yjymfdvbhn
|
|
213
|
-
fAhiTXsyu4kyGyK9kYWw6eP+n7gj9zi+yKQ0oIrUtudMCk7siGTffTaSnE6Jb/zPREhs
|
|
214
|
-
uL2Q==
|
|
215
|
-
X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed;
|
|
216
|
-
d=1e100.net; s=20210112;
|
|
217
|
-
h=to:subject:message-id:date:from:mime-version:x-gm-message-state
|
|
218
|
-
:from:to:cc:subject:date:message-id:reply-to;
|
|
219
|
-
bh=nnVtM9pzwXTdt1o/7mH+EPq2FJKPRxlOpHKe5Ce3xwM=;
|
|
220
|
-
b=YrFJJxET1RwNI93lmTtJ50UFWJV9sTm1XClaEul/PqPn1gTCjXUNRkJ9DtitLOHMJB
|
|
221
|
-
Ga87yiUWUN6ugIjHBcF0HhtCeZVcZsykcmFFu+7/jTcE3hICNcOF7hGSt00bHQSnbv3P
|
|
222
|
-
xW+xny64O4UiT5iplp+iX69+099SilfdWWXRK869uXTbZxQAmtQfEYNmYyP/xJD5wi6N
|
|
223
|
-
BFwpUeqpC9opTTSdTDqplW2JwxbIZWziHFYylf2/n+ydHF90tCNfQvqzC7fu+ckBxH2n
|
|
224
|
-
mYh6hJ0psgFm4qQKR6W3UDnQWDiqrtfywY3DNMC5ByCxPXYw9VD5CtNT5lmpht83baB2
|
|
225
|
-
BNhQ==
|
|
226
|
-
X-Gm-Message-State: ACrzQf1eWMQxiNhAw5CTEw9p0C/C0M1RPAWtOhT6SJcxAihNRjFJtKK1
|
|
227
|
-
x7rPqtI7lclUIePZ4Xv0kxE7I12ypOecjhsWU33m6ujw
|
|
228
|
-
X-Google-Smtp-Source: AMsMyM6wJHR9A+WGVXLLtAlCAiAUPM2ILV/b0k2vK90km/32hWIh8aD6wHRBlpUSh+CHxM8ng1MnMTWOw2r7Aa/VP9M=
|
|
229
|
-
X-Received: by 2002:a05:6808:1496:b0:350:4640:5462 with SMTP id
|
|
230
|
-
e22-20020a056808149600b0035046405462mr13351667oiw.47.1665379854972; Sun, 09
|
|
231
|
-
Oct 2022 22:30:54 -0700 (PDT)
|
|
232
|
-
MIME-Version: 1.0
|
|
233
|
-
From: Andris Reinman <andris.reinman@gmail.com>
|
|
234
|
-
Date: Mon, 10 Oct 2022 08:30:44 +0300
|
|
235
|
-
Message-ID: <CAPacwgw3pCyVcmW4nVy8VPX5u5ksn_wZB2jZ_tLUM2es7LaiEA@mail.gmail.com>
|
|
236
|
-
Subject: proovikiri
|
|
237
|
-
To: jhfthgfuyfhvjkugjhvjuyfv@hot.ee
|
|
238
|
-
Content-Type: multipart/alternative; boundary="000000000000abfb3b05eaa77631"
|
|
239
|
-
|
|
240
|
-
--000000000000abfb3b05eaa77631
|
|
241
|
-
Content-Type: text/plain; charset="UTF-8"
|
|
242
|
-
|
|
243
|
-
see on proovikiri
|
|
244
|
-
|
|
245
|
-
--000000000000abfb3b05eaa77631
|
|
246
|
-
Content-Type: text/html; charset="UTF-8"
|
|
247
|
-
|
|
248
|
-
<div dir="ltr">see on proovikiri</div>
|
|
249
|
-
|
|
250
|
-
--000000000000abfb3b05eaa77631--
|
|
251
|
-
|
|
252
|
-
--000000000000cf33c605eaa776f8--
|