ENGINE-11: pEp is no longer uniformly removed when it's the actual subject

doc_update_sequoia
Krista Bennett 2017-06-12 22:37:40 +02:00
parent 31d466eb40
commit 1e9e3c416d
8 changed files with 866 additions and 6 deletions

View File

@ -169,19 +169,22 @@ static int separate_short_and_long(const char *src, char **shortmsg, char **long
goto enomem;
}
}
*shortmsg = _shortmsg;
}
else {
_shortmsg = strdup("");
assert(_shortmsg);
if (_shortmsg == NULL)
goto enomem;
// If there's no "Subject: " and the shortmsg is
// pEp (or anything else), then we shouldn't be replacing it.
// Chances are that the message wasn't encrypted
// using pEp and that the actually subject IS pEp. In any event,
// erasing the subject line when we don't have one in the plaintext
// isn't the right behaviour.
// _shortmsg = strdup("");
_longmsg = strdup(src);
assert(_longmsg);
if (_longmsg == NULL)
goto enomem;
}
*shortmsg = _shortmsg;
*longmsg = _longmsg;
return 0;
@ -1954,9 +1957,24 @@ DYNAMIC_API PEP_STATUS _decrypt_message(
int r = separate_short_and_long(msg->longmsg, &shortmsg,
&longmsg);
if (r == -1)
goto enomem;
if (shortmsg == NULL) {
if (src->shortmsg == NULL)
shortmsg = strdup("");
else {
// FIXME: is msg->shortmsg always a copy of
// src->shortmsg already?
// if so, we need to change the logic so
// that in this case, we don't free msg->shortmsg
// and do this strdup, etc.
shortmsg = strdup(src->shortmsg);
}
}
free(msg->shortmsg);
free(msg->longmsg);

View File

@ -0,0 +1,222 @@
#include <iostream>
#include <iostream>
#include <fstream>
#include <string>
#include <cstring> // for strcmp()
#include <assert.h>
#include "blacklist.h"
#include "keymanagement.h"
#include "message_api.h"
#include "mime.h"
#include "test_util.h" // for slurp()
using namespace std;
int main(int argc, char** argv) {
cout << "\n*** check that pEp subject is handled properly in received mails ***\n\n";
PEP_SESSION session;
cout << "calling init()\n";
PEP_STATUS status1 = init(&session);
assert(status1 == PEP_STATUS_OK);
assert(session);
cout << "init() completed.\n";
const char* keytexts[3];
const string keytextkey1 = slurp("test_keys/pub/pep-test-alice-0x6FF00E97_pub.asc");
const string keytextkey2 = slurp("test_keys/priv/pep-test-recip-0x08DB0AEE_priv.asc");
const string keytextkey3 = slurp("test_keys/pub/pep-test-recip-0x08DB0AEE_pub.asc");
PEP_STATUS statuskey1 = import_key(session, keytextkey1.c_str(), keytextkey1.length(), NULL);
PEP_STATUS statuskey2 = import_key(session, keytextkey2.c_str(), keytextkey2.length(), NULL);
PEP_STATUS statuskey3 = import_key(session, keytextkey3.c_str(), keytextkey3.length(), NULL);
pEp_identity * me = new_identity("pep.test.recip@kgrothoff.org", "93D19F24AD6F4C4BA9134AAF84D9217908DB0AEE", PEP_OWN_USERID, "pEp Test Recipient");
me->me = true;
PEP_STATUS status = myself(session, me);
pEp_identity * you = new_identity("pep.test.apple@pep-project.org", NULL, "TOFU_pep.test.apple@pep-project.org", "pEp Test Recipient");
you->me = false;
status = update_identity(session, you);
trust_personal_key(session, you);
status = update_identity(session, you);
const char* mailfiles[] = {"test_mails/pEp_encrypted_subject_IS_pEp.eml",
"test_mails/pEp_subject_normal.eml",
"test_mails/pEp_subject_normal_signed.eml",
"test_mails/pEp_subject_normal_unencrypted.eml",
"test_mails/pEp_subject_pEp.eml",
"test_mails/pEp_unencrypted_pEp_subject.eml"};
cout << "------------------------------------------------------------------------------------------" << endl;
cout << "Test 1: Normal encrypted mail, pEp as substitute subject, regular subject in crypto text." << endl;
cout << "------------------------------------------------------------------------------------------" << endl;
string mailtext = slurp(mailfiles[1]);
message* msg_ptr = nullptr;
message* dest_msg = nullptr;
message* final_ptr = nullptr;
stringlist_t* keylist = nullptr;
PEP_rating rating;
PEP_decrypt_flags_t flags;
status = mime_decode_message(mailtext.c_str(), mailtext.length(), &msg_ptr);
assert(status == PEP_STATUS_OK);
assert(msg_ptr);
final_ptr = msg_ptr;
status = decrypt_message(session, msg_ptr, &dest_msg, &keylist, &rating, &flags);
final_ptr = dest_msg ? dest_msg : msg_ptr;
cout << "shortmsg: " << final_ptr->shortmsg << endl << endl;
cout << "longmsg: " << final_ptr->longmsg << endl << endl;
cout << "longmsg_formatted: " << (final_ptr->longmsg_formatted ? final_ptr->longmsg_formatted : "(empty)") << endl << endl;
assert(strcmp("This is the usual pEp subject that should replace the above.", final_ptr->shortmsg) == 0);
cout << "Test 1: Subject replaced as expected." << endl << endl;
if (final_ptr == dest_msg)
free_message(dest_msg);
free_message(msg_ptr);
free_stringlist(keylist);
cout << "-------------------------------------------------------------------------------------------------" << endl;
cout << "Test 2: Normal encrypted/signed mail, pEp as substitute subject, regular subject in crypto text." << endl;
cout << "-------------------------------------------------------------------------------------------------" << endl;
msg_ptr = nullptr;
dest_msg = nullptr;
final_ptr = nullptr;
keylist = nullptr;
rating = PEP_rating_unreliable;
mailtext = slurp(mailfiles[2]);
status = mime_decode_message(mailtext.c_str(), mailtext.length(), &msg_ptr);
assert(status == PEP_STATUS_OK);
assert(msg_ptr);
final_ptr = msg_ptr;
status = decrypt_message(session, msg_ptr, &dest_msg, &keylist, &rating, &flags);
final_ptr = dest_msg ? dest_msg : msg_ptr;
cout << "shortmsg: " << final_ptr->shortmsg << endl << endl;
cout << "longmsg: " << final_ptr->longmsg << endl << endl;
cout << "longmsg_formatted: " << (final_ptr->longmsg_formatted ? final_ptr->longmsg_formatted : "(empty)") << endl << endl;
assert(strcmp("Now signed!", final_ptr->shortmsg) == 0);
cout << "Test 2: Subject replaced as expected." << endl << endl;
if (final_ptr == dest_msg)
free_message(dest_msg);
free_message(msg_ptr);
free_stringlist(keylist);
cout << "-----------------------------------------------------------------------" << endl;
cout << "Test 3: Encrypted mail, pEp as actual subject, no subject in body text." << endl;
cout << "-----------------------------------------------------------------------" << endl;
msg_ptr = nullptr;
dest_msg = nullptr;
final_ptr = nullptr;
keylist = nullptr;
rating = PEP_rating_unreliable;
mailtext = slurp(mailfiles[0]);
status = mime_decode_message(mailtext.c_str(), mailtext.length(), &msg_ptr);
assert(status == PEP_STATUS_OK);
assert(msg_ptr);
final_ptr = msg_ptr;
status = decrypt_message(session, msg_ptr, &dest_msg, &keylist, &rating, &flags);
final_ptr = dest_msg ? dest_msg : msg_ptr;
cout << "shortmsg: " << final_ptr->shortmsg << endl << endl;
cout << "longmsg: " << final_ptr->longmsg << endl << endl;
cout << "longmsg_formatted: " << (final_ptr->longmsg_formatted ? final_ptr->longmsg_formatted : "(empty)") << endl << endl;
assert(strcmp("pEp", final_ptr->shortmsg) == 0);
cout << "Test 3: Subject remains intact as desired." << endl << endl;
if (final_ptr == dest_msg)
free_message(dest_msg);
free_message(msg_ptr);
free_stringlist(keylist);
cout << "-----------------------------------------------------------------------" << endl;
cout << "Test 4: Encrypted mail, pEp as actual subject, pEp subject in body text." << endl;
cout << "-----------------------------------------------------------------------" << endl;
msg_ptr = nullptr;
dest_msg = nullptr;
final_ptr = nullptr;
keylist = nullptr;
rating = PEP_rating_unreliable;
mailtext = slurp(mailfiles[4]);
status = mime_decode_message(mailtext.c_str(), mailtext.length(), &msg_ptr);
assert(status == PEP_STATUS_OK);
assert(msg_ptr);
final_ptr = msg_ptr;
status = decrypt_message(session, msg_ptr, &dest_msg, &keylist, &rating, &flags);
final_ptr = dest_msg ? dest_msg : msg_ptr;
cout << "shortmsg: " << final_ptr->shortmsg << endl << endl;
cout << "longmsg: " << final_ptr->longmsg << endl << endl;
cout << "longmsg_formatted: " << (final_ptr->longmsg_formatted ? final_ptr->longmsg_formatted : "(empty)") << endl << endl;
assert(strcmp("pEp", final_ptr->shortmsg) == 0);
cout << "Test 4: Subject correct, in any event." << endl << endl;
if (final_ptr == dest_msg)
free_message(dest_msg);
free_message(msg_ptr);
free_stringlist(keylist);
cout << "-------------------------------------------------------------------------" << endl;
cout << "Test 5: Unencrypted variant where pEp in the subject line is the subject." << endl;
cout << "-------------------------------------------------------------------------" << endl;
msg_ptr = nullptr;
dest_msg = nullptr;
final_ptr = nullptr;
keylist = nullptr;
rating = PEP_rating_unreliable;
mailtext = slurp(mailfiles[5]);
status = mime_decode_message(mailtext.c_str(), mailtext.length(), &msg_ptr);
assert(status == PEP_STATUS_OK);
assert(msg_ptr);
final_ptr = msg_ptr;
status = decrypt_message(session, msg_ptr, &dest_msg, &keylist, &rating, &flags);
final_ptr = dest_msg ? dest_msg : msg_ptr;
cout << "shortmsg: " << final_ptr->shortmsg << endl << endl;
cout << "longmsg: " << final_ptr->longmsg << endl << endl;
cout << "longmsg_formatted: " << (final_ptr->longmsg_formatted ? final_ptr->longmsg_formatted : "(empty)") << endl << endl;
assert(strcmp("pEp", final_ptr->shortmsg) == 0);
cout << "Test 5: Subject remains intact." << endl << endl;
if (final_ptr == dest_msg)
free_message(dest_msg);
free_message(msg_ptr);
free_stringlist(keylist);
cout << "calling release()\n";
release(session);
return 0;
}

View File

@ -0,0 +1,121 @@
Return-Path: <pep.test.alice@pep-project.org>
X-Original-To: krista@gnunet.org
Delivered-To: krista@gnunet.org
Received: from vmmailrelay1.informatik.tu-muenchen.de (mailrelay1.informatik.tu-muenchen.de [131.159.254.14])
by sam.net.in.tum.de (Postfix) with ESMTP id BE55A1C00BC
for <krista@gnunet.org>; Mon, 12 Jun 2017 15:27:51 +0200 (CEST)
Received: by vmmailrelay1.informatik.tu-muenchen.de (Postfix, from userid 109)
id 94D2F1C0394; Mon, 12 Jun 2017 15:27:52 +0200 (CEST)
Received: from vmmailrelay1.informatik.tu-muenchen.de (localhost [127.0.0.1])
by vmmailrelay1.informatik.tu-muenchen.de (Postfix) with ESMTP id 6D2E21C037A
for <krista@gnunet.org>; Mon, 12 Jun 2017 15:27:52 +0200 (CEST)
Received: from vmmaildmz1.informatik.tu-muenchen.de (vmmaildmz1.informatik.tu-muenchen.de [131.159.0.87])
by vmmailrelay1.informatik.tu-muenchen.de (Postfix) with ESMTP id 5876E1C0383
for <krista@gnunet.org>; Mon, 12 Jun 2017 15:27:52 +0200 (CEST)
Received: by vmmaildmz1.informatik.tu-muenchen.de (Postfix, from userid 109)
id 56F1F1C2D9D; Mon, 12 Jun 2017 15:27:52 +0200 (CEST)
X-Spam-Checker-Version: SpamAssassin 3.4.0-tuminfo_1 (2014-02-07) on
vmmaildmz1.informatik.tu-muenchen.de
X-Spam-Level:
X-Spam-Status: No, score=-3.4 required=7.0 tests=AWL,BAYES_00,
ENCRYPTED_MESSAGE,RCVD_IN_DNSWL_LOW,RCVD_IN_MSPIKE_H3,RCVD_IN_MSPIKE_WL,
TVD_RCVD_SPACE_BRACKET,UNPARSEABLE_RELAY autolearn=no autolearn_force=no
version=3.4.0-tuminfo_1
Received: from vmmaildmz1.informatik.tu-muenchen.de (localhost [127.0.0.1])
by vmmaildmz1.informatik.tu-muenchen.de (Postfix) with ESMTP id DE3C31C2D9E
for <krista@gnunet.org>; Mon, 12 Jun 2017 15:27:50 +0200 (CEST)
Received: from mi4-p00-ob.smtp.rzone.de (mi4-p00-ob.smtp.rzone.de [81.169.146.149])
(using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
(No client certificate requested)
by vmmaildmz1.informatik.tu-muenchen.de (Postfix) with ESMTPS id CDD481C2D9B
for <krista@gnunet.org>; Mon, 12 Jun 2017 15:27:50 +0200 (CEST)
X-RZG-FWD-BY: pep.test.recip@kgrothoff.org
Received: from mailin.rzone.de ([unix socket])
by mailin.rzone.de (RZmta 40.9) with LMTPA;
Mon, 12 Jun 2017 15:27:46 +0200 (CEST)
Authentication-Results: strato.com 1;
spf=none
smtp.mailfrom="pep.test.alice@pep-project.org";
dkim=none;
domainkeys=none;
dkim-adsp=none
header.from="pep.test.alice@pep-project.org"
X-Strato-MessageType: email
X-RZG-CLASS-ID: mi00
Received-SPF: none
client-ip=131.159.0.8;
helo="mail-out1.informatik.tu-muenchen.de";
envelope-from="pep.test.alice@pep-project.org";
receiver=smtpin.rzone.de;
identity=mailfrom;
Received: from mail-out1.informatik.tu-muenchen.de ([131.159.0.8])
by smtpin.rzone.de (RZmta 40.9 OK)
with ESMTPS id w03564t5CDRkYmx
(using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (curve secp521r1 with 521 ECDH bits, eq. 15360 bits RSA))
(Client did not present a certificate)
for <pep.test.recip@kgrothoff.org>;
Mon, 12 Jun 2017 15:27:46 +0200 (CEST)
Received: from [192.168.178.22] (ip5f584089.dynamic.kabel-deutschland.de [95.88.64.137])
by services.sec.in.tum.de (Postfix) with ESMTPSA id A8EC11013AE47
for <pep.test.recip@kgrothoff.org>; Mon, 12 Jun 2017 15:27:40 +0200 (CEST)
To: pep.test.recip@kgrothoff.org
Reply-To: krista@pep-project.org
From: pEp Test Alice <pep.test.alice@pep-project.org>
Subject: pEp
Organization: pEp
Message-ID: <5d37b6c2-9e5e-7217-c80e-1359da8faa5c@pep-project.org>
Date: Mon, 12 Jun 2017 15:27:40 +0200
User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101
Thunderbird/45.8.0
MIME-Version: 1.0
Content-Type: multipart/encrypted;
protocol="application/pgp-encrypted";
boundary="7vTKNA25GePB6VqgrM1km3gCfpFonmKj3"
This is an OpenPGP/MIME encrypted message (RFC 4880 and 3156)
--7vTKNA25GePB6VqgrM1km3gCfpFonmKj3
Content-Type: application/pgp-encrypted
Content-Description: PGP/MIME version identification
Version: 1
--7vTKNA25GePB6VqgrM1km3gCfpFonmKj3
Content-Type: application/octet-stream; name="encrypted.asc"
Content-Description: OpenPGP encrypted message
Content-Disposition: inline; filename="encrypted.asc"
-----BEGIN PGP MESSAGE-----
hQEMA4FHqvEumyRHAQf6AkV51E1/uffFSc++oIPAoNCJU71NseNgW3s3XIQ/7TIQ
pDi6a6ksNdN+cJyMhfM7HnO06LjrUDYtgYPkZBHcTDZMWivW/7+5g8z60V3biIpw
mdUqhb+mZb4A0akMk+Ix8paoR8D7y4jmeLHwj/vbQ1J/E64rob9XPDWrLOW63chR
pg+XAo3VbkDKCms8PSuKehzMoTpZUcEVP47TF1OxuKZE0k7yJQ354RlPGxsl/6zM
O1+cJ7XdclkZj9gdeJAWzqCx6kTmDy2DA4e80BwMXXJnQtFIp4B55gTHvfbmxBRL
V8KDHOlvY/YSFV9sikjyaXbiweuqgiycsLb+qRziG4UBDANaAgXZcwg/TQEIAMg9
CVCJiYqS+ke1Zw0VNbb4BccrSBWL5iiQsPPUFOBld8jCFCGFZVBiik7O/XzRGWQh
qsYb2BNb0267viJS+IhTvihFybvR/l/gkzRLRfznFxbsRKgYAI6ipPr4wdAxvRkE
k0LvL3ckRgKtc2UORvfmhKRXu8Hj8dkYD0Asewnx7+p+s685MpyJ3zhhyifPzqKw
VH/6D7g26t3DjjQkvTvkiIMEvxT3beQN6QspdRtoDhHqAH0JhrZjEZyenneXE/AB
2CrnIfEU6V7S1EWP4Ond647K/F89ZG9LfTBpfmYuTXMKM39hmQaNcIsr8dr+mBif
nO2xRkyTMHAtyEk1dQnS6QFdLynwNLfsOvecztOBNBE/j6gH3dqKgZMg2e7ojK/Z
rNohpLMfZqzN37sfopm8htzK0Wg/l0CcgR8S4cUln06UzUm89GF9pokHYTnXYNYb
S2BMMVQ7gTpGDBfBFHVCK8xtCSFJJmxoxIzC9Ojl4JYfqJycip1QdWCWhXJDo0m9
4S+57m1UHAeyfT8v4ggEffVg2fgHF5VF58S3FC3HCtASAqljtmYVlHQSK0hSY00U
t9y/McqDXYuXXtT5O056q2VoYkWjTpvbvuk/TI3IU2np9owZwgHJwiA8I+BMQitd
LWRmSmoRBBHNsaORuEUZYMugZzcTD81C2v5PNDvawB7mcSFqrtI6K30TnZ5iu8DI
qJ9BdP7Htphqk9nusLT7XTYve/6/NC6rmnnEpQhrdXdzPDsyGe0H/s24xU3wFKBY
JdKyfKSJUkXjmCrqJrkq0wAHCaZYK5hLiobhYLGfxxjPpx2UFk33lYXL5R659Gjh
oIgZW5NWOxNRE1GRd2js+WaZy2dwvxeqNGEdEHgi6UN6JRf588lSYjbz+8u2TW21
whH5x5VfDpIqimPdknQwM/w8N2fYEhI4bWv0rp+D0m27hZaVXjInShEQq6YsjAs5
aP19C7WT+VK+FuvOEQ3nxPl+/fGOF5EoceuscxjCxkVu8Ijq4+xdu7Hl6ycJUu40
wGTKOy/rGg0TZ232SyUE83VyxAPtU0fTLvbZAcQaT+YTHqk/c4hdzPW/Ho8L1aZ0
Ax9PpkUHmm7+JS3sbfxyLMQ9Zz2GcE+SCIEyGuFTqO/ESmJUXTNQjDRmLuleOhZt
VmOezek2BEcvWZd5/0w6pd6UBjzXdSdTJA38nBr8Ao217xDMZiLoxg6xZbsG12et
mqWG9m/5dQRECrcN0lRdQqFovSkw7/Az7jOIm0v4ey+i6wmEblg3M0vm7Ky19l7Z
lm0+nC5XwR56n4VPtyRbGgLkI8w//NChYZJJOVpyVpfP57pKPhvhLNcaOk2d5gNU
KDg2bKXilzkMflVqw5eYN2EKCMlLx+hW5U1oSJJlQKqKXQ0qglUfSEzPmBt9Y0g1
DN+blh+m
=UZkH
-----END PGP MESSAGE-----
--7vTKNA25GePB6VqgrM1km3gCfpFonmKj3--

View File

@ -0,0 +1,112 @@
Return-Path: <pep.test.alice@pep-project.org>
X-Original-To: krista@gnunet.org
Delivered-To: krista@gnunet.org
Received: from vmmailrelay1.informatik.tu-muenchen.de (mailrelay1.informatik.tu-muenchen.de [131.159.254.14])
by sam.net.in.tum.de (Postfix) with ESMTP id 98B571C00BC
for <krista@gnunet.org>; Mon, 12 Jun 2017 15:25:44 +0200 (CEST)
Received: by vmmailrelay1.informatik.tu-muenchen.de (Postfix, from userid 109)
id 620431C0383; Mon, 12 Jun 2017 15:25:45 +0200 (CEST)
Received: from vmmailrelay1.informatik.tu-muenchen.de (localhost [127.0.0.1])
by vmmailrelay1.informatik.tu-muenchen.de (Postfix) with ESMTP id 3F4961C037C
for <krista@gnunet.org>; Mon, 12 Jun 2017 15:25:45 +0200 (CEST)
Received: from vmmaildmz1.informatik.tu-muenchen.de (vmmaildmz1.informatik.tu-muenchen.de [131.159.0.87])
by vmmailrelay1.informatik.tu-muenchen.de (Postfix) with ESMTP id 2BCE31C037A
for <krista@gnunet.org>; Mon, 12 Jun 2017 15:25:45 +0200 (CEST)
Received: by vmmaildmz1.informatik.tu-muenchen.de (Postfix, from userid 109)
id 2A4741C2D9D; Mon, 12 Jun 2017 15:25:45 +0200 (CEST)
X-Spam-Checker-Version: SpamAssassin 3.4.0-tuminfo_1 (2014-02-07) on
vmmaildmz1.informatik.tu-muenchen.de
X-Spam-Level:
X-Spam-Status: No, score=-3.6 required=7.0 tests=BAYES_00,ENCRYPTED_MESSAGE,
RCVD_IN_DNSWL_LOW,TVD_RCVD_SPACE_BRACKET,UNPARSEABLE_RELAY autolearn=no
autolearn_force=no version=3.4.0-tuminfo_1
Received: from vmmaildmz1.informatik.tu-muenchen.de (localhost [127.0.0.1])
by vmmaildmz1.informatik.tu-muenchen.de (Postfix) with ESMTP id 6EF791C2D9E
for <krista@gnunet.org>; Mon, 12 Jun 2017 15:25:43 +0200 (CEST)
Received: from mi4-p00-ob.smtp.rzone.de (mi4-p00-ob.smtp.rzone.de [81.169.146.144])
(using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
(No client certificate requested)
by vmmaildmz1.informatik.tu-muenchen.de (Postfix) with ESMTPS id 5E75D1C2D9B
for <krista@gnunet.org>; Mon, 12 Jun 2017 15:25:43 +0200 (CEST)
X-RZG-FWD-BY: pep.test.recip@kgrothoff.org
Received: from mailin.rzone.de ([unix socket])
by mailin.rzone.de (RZmta 40.9) with LMTPA;
Mon, 12 Jun 2017 15:25:24 +0200 (CEST)
Authentication-Results: strato.com 1;
spf=none
smtp.mailfrom="pep.test.alice@pep-project.org";
dkim=none;
domainkeys=none;
dkim-adsp=none
header.from="pep.test.alice@pep-project.org"
X-Strato-MessageType: email
X-RZG-CLASS-ID: mi00
Received-SPF: none
client-ip=131.159.0.8;
helo="mail-out1.informatik.tu-muenchen.de";
envelope-from="pep.test.alice@pep-project.org";
receiver=smtpin.rzone.de;
identity=mailfrom;
Received: from mail-out1.informatik.tu-muenchen.de ([131.159.0.8])
by smtpin.rzone.de (RZmta 40.9 OK)
with ESMTPS id v06d9ft5CDPHXhF
(using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (curve secp521r1 with 521 ECDH bits, eq. 15360 bits RSA))
(Client did not present a certificate)
for <pep.test.recip@kgrothoff.org>;
Mon, 12 Jun 2017 15:25:17 +0200 (CEST)
Received: from [192.168.178.22] (ip5f584089.dynamic.kabel-deutschland.de [95.88.64.137])
by services.sec.in.tum.de (Postfix) with ESMTPSA id 4697F1013AE47
for <pep.test.recip@kgrothoff.org>; Mon, 12 Jun 2017 15:25:11 +0200 (CEST)
Reply-To: krista@pep-project.org
To: pep.test.recip@kgrothoff.org
From: pEp Test Alice <pep.test.alice@pep-project.org>
Subject: pEp
Organization: pEp
Message-ID: <92ee4ca2-17cd-bcf1-377c-3367470bb571@pep-project.org>
Date: Mon, 12 Jun 2017 15:25:10 +0200
User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101
Thunderbird/45.8.0
MIME-Version: 1.0
Content-Type: multipart/encrypted;
protocol="application/pgp-encrypted";
boundary="e7R73MXx31oWAX8HMqNvMDNt9cAMWtSTV"
This is an OpenPGP/MIME encrypted message (RFC 4880 and 3156)
--e7R73MXx31oWAX8HMqNvMDNt9cAMWtSTV
Content-Type: application/pgp-encrypted
Content-Description: PGP/MIME version identification
Version: 1
--e7R73MXx31oWAX8HMqNvMDNt9cAMWtSTV
Content-Type: application/octet-stream; name="encrypted.asc"
Content-Description: OpenPGP encrypted message
Content-Disposition: inline; filename="encrypted.asc"
-----BEGIN PGP MESSAGE-----
hQEMA4FHqvEumyRHAQf+KW54G6f25yDJs6MdhWSs/766uFEIy8pq+j49AykOBsh2
W8BeB7yBqwjVFsBYPwGFNza187QHQVQlOHGRtxkXSX/iSym/O82YPvSwZj7GkKS9
sMgX2/dOMaEoTitn72f26ww5PvAqltJLD5TGhSM0RxK+0OemSrI0wDZxUb2Ll8DT
aVwpuKnLYFMcnk8SQLa3eZ/YpFV3TCMDFUgtIEqmHoh74dwemQjpP+qhbExZvY/k
rSZuJoU8siuLJ72vbEn8n2x8UCCfyTpacBZkC6Ukhsm/XrSg2GjqqzjSeR0T0Nbr
y/sFblbE8fbmouAf5k670oUot+j5aoHV79Rntcdm1oUBDANaAgXZcwg/TQEH/jhF
1ayYCROI8xEhj01Qbn60OtG+iKO+3B5/+uwizYgyW5mhKjrdgA/wsKMTMXj1BG+J
JJJ1TdEbxbL2UCai6nuHd0CbqJWSuTAicteKudUclAJHnpm2Qv+Yq2t/8JwJllMR
Wum8Cj4WuD0K3te5uHDZuu7Vfj9r3+7WYJ7FUkSYp2DUIFMM+hG+8OJtdjKd6kAA
FtAOijws+1r4jYFGYkCMRfnQatiFXf0n6Nr8qjSskkMtNQk41AG4LauYFTphR/G+
ayXPd8buDyBh3XuyoMcg5vLMJfWVTfiKM/wxv1jBBrQwFd5JpqCNr9dHYWMJ0gg9
aMdvaDEEd7I4VlwU+4DSwQMBF7R9V3cYj1XOxHjX2EikIxR/kviUrB8vDE4LAYJE
UFvoXgKRe4lQbQlLwoBp6R8L6mPTytLzlQnjQ4AJhPWhXkJUeCetURr5BzNCEfOy
+2Nq+9XLGM0wSCY09BOsGAQSL56kIGL61AnhvhpPUi9w9SOVjLHge6pzSzAW3h5E
vf8a8oGyLjyHR9VWBUqrMQ0tTWdHkoeHenXpwA+rckr0kzJXW1RJt2oQJEE0LI2I
0p9j7o6imaYWdtbHS7Kcbg2DxbT63QVOoO4OTPLHjYj0eqf1NDlwKBzQYaknNScI
LHnXrzMqqylU3ki8hUIh0K1ULernaA8LEIuegKMuguHCs2B/Xgee+Hor6l4XBRzD
V/8WFIU1lxthnYEceik/OD2U+LDKT4i+AogJAA+rCw0WbUC8f1HXQeV/8CVarcUn
GrS7AjjZlwQfiE8R/CtKdNaiJa4Z8GuQZJD/AqOe5zH0HLBykaheHS6ynw9yuNb7
d6lArIYdW5S8D0RDYRwu7z/lI3sgVgwiuoAk1OiYtrYUUNiXcpO59aE59iXjMW61
EvUAZzgfRyuzYdZtYNaM3FvUSm2aAsQRP+NJFW3YkqkbLvyo
=VpGy
-----END PGP MESSAGE-----
--e7R73MXx31oWAX8HMqNvMDNt9cAMWtSTV--

View File

@ -0,0 +1,119 @@
Return-Path: <pep.test.alice@pep-project.org>
X-Original-To: krista@gnunet.org
Delivered-To: krista@gnunet.org
Received: from vmmailrelay1.informatik.tu-muenchen.de (mailrelay1.informatik.tu-muenchen.de [131.159.254.14])
by sam.net.in.tum.de (Postfix) with ESMTP id 768301C00BC
for <krista@gnunet.org>; Mon, 12 Jun 2017 15:26:24 +0200 (CEST)
Received: by vmmailrelay1.informatik.tu-muenchen.de (Postfix, from userid 109)
id 4DD7D1C0383; Mon, 12 Jun 2017 15:26:25 +0200 (CEST)
Received: from vmmailrelay1.informatik.tu-muenchen.de (localhost [127.0.0.1])
by vmmailrelay1.informatik.tu-muenchen.de (Postfix) with ESMTP id 2AD621C037C
for <krista@gnunet.org>; Mon, 12 Jun 2017 15:26:25 +0200 (CEST)
Received: from vmmaildmz2.informatik.tu-muenchen.de (vmmaildmz2.informatik.tu-muenchen.de [131.159.0.88])
by vmmailrelay1.informatik.tu-muenchen.de (Postfix) with ESMTP id 15DA11C037A
for <krista@gnunet.org>; Mon, 12 Jun 2017 15:26:25 +0200 (CEST)
Received: by vmmaildmz2.informatik.tu-muenchen.de (Postfix, from userid 109)
id 13FCC1C2AE2; Mon, 12 Jun 2017 15:26:25 +0200 (CEST)
X-Spam-Checker-Version: SpamAssassin 3.4.0-tuminfo_1 (2014-02-07) on
vmmaildmz2.informatik.tu-muenchen.de
X-Spam-Level:
X-Spam-Status: No, score=-2.6 required=7.0 tests=AWL,BAYES_00,
ENCRYPTED_MESSAGE,RCVD_IN_DNSWL_LOW,TVD_RCVD_SPACE_BRACKET,UNPARSEABLE_RELAY
autolearn=no autolearn_force=no version=3.4.0-tuminfo_1
Received: from vmmaildmz2.informatik.tu-muenchen.de (localhost [127.0.0.1])
by vmmaildmz2.informatik.tu-muenchen.de (Postfix) with ESMTP id 953971C2AE1
for <krista@gnunet.org>; Mon, 12 Jun 2017 15:26:23 +0200 (CEST)
Received: from mi4-p00-ob.smtp.rzone.de (mi4-p00-ob.smtp.rzone.de [81.169.146.144])
(using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
(No client certificate requested)
by vmmaildmz2.informatik.tu-muenchen.de (Postfix) with ESMTPS id 8540A1C2AE0
for <krista@gnunet.org>; Mon, 12 Jun 2017 15:26:23 +0200 (CEST)
X-RZG-FWD-BY: pep.test.recip@kgrothoff.org
Received: from mailin.rzone.de ([unix socket])
by mailin.rzone.de (RZmta 40.9) with LMTPA;
Mon, 12 Jun 2017 15:26:02 +0200 (CEST)
Authentication-Results: strato.com 1;
spf=none
smtp.mailfrom="pep.test.alice@pep-project.org";
dkim=none;
domainkeys=none;
dkim-adsp=none
header.from="pep.test.alice@pep-project.org"
X-Strato-MessageType: email
X-RZG-CLASS-ID: mi00
Received-SPF: none
client-ip=131.159.0.8;
helo="mail-out1.informatik.tu-muenchen.de";
envelope-from="pep.test.alice@pep-project.org";
receiver=smtpin.rzone.de;
identity=mailfrom;
Received: from mail-out1.informatik.tu-muenchen.de ([131.159.0.8])
by smtpin.rzone.de (RZmta 40.9 OK)
with ESMTPS id v06d9ft5CDQ2Xj1
(using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (curve secp521r1 with 521 ECDH bits, eq. 15360 bits RSA))
(Client did not present a certificate)
for <pep.test.recip@kgrothoff.org>;
Mon, 12 Jun 2017 15:26:02 +0200 (CEST)
Received: from [192.168.178.22] (ip5f584089.dynamic.kabel-deutschland.de [95.88.64.137])
by services.sec.in.tum.de (Postfix) with ESMTPSA id BEAA21013AE47
for <pep.test.recip@kgrothoff.org>; Mon, 12 Jun 2017 15:25:56 +0200 (CEST)
To: pep.test.recip@kgrothoff.org
Reply-To: krista@pep-project.org
From: pEp Test Alice <pep.test.alice@pep-project.org>
Subject: pEp
Organization: pEp
Message-ID: <988e71f4-df80-906e-8bbb-68d48069d4ac@pep-project.org>
Date: Mon, 12 Jun 2017 15:25:56 +0200
User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101
Thunderbird/45.8.0
MIME-Version: 1.0
Content-Type: multipart/encrypted;
protocol="application/pgp-encrypted";
boundary="hcW81WNiFhQC1SNIcls8J07V1b1sXtfCA"
This is an OpenPGP/MIME encrypted message (RFC 4880 and 3156)
--hcW81WNiFhQC1SNIcls8J07V1b1sXtfCA
Content-Type: application/pgp-encrypted
Content-Description: PGP/MIME version identification
Version: 1
--hcW81WNiFhQC1SNIcls8J07V1b1sXtfCA
Content-Type: application/octet-stream; name="encrypted.asc"
Content-Description: OpenPGP encrypted message
Content-Disposition: inline; filename="encrypted.asc"
-----BEGIN PGP MESSAGE-----
hQEMA4FHqvEumyRHAQf+OCG4FM0n6pVREVP2kAUzJWy6NAgRYs4cj7pr5hDoUqZY
lBIfVPqNM2rG2xaSpNLfe1iY5mySKL42M+s/QM0cvfnOlS6p3U58EamslElZ9UhD
hBUrX/1NJwdoKyR07Wq3A1UFFYQMYsszPwoC82SCFOhYjEmdZ8/nppViUk3aAUvq
do80ZzvNnlJqgwPEUmMEy9p19XJxQQwG75yHmUsoTvgi9ELvJpEzAjeYFABNzuNE
lh5whuMqmVbEafAYtopB+dwxQxSUdQUHntLU2MrbH8QXGtP98ZaDTHg/Zj24zkUG
Ur/5DZJgzDMrAttorpp/2/NMmakIezy7JaoGQtyYRYUBDANaAgXZcwg/TQEIALLR
7OlIlUYelrktOnrkTy8BrrEuUj95uBM5TkkvWIfR2b3ylC5iWwa/RlIU4RC0VH3j
epwLQNJJKFi/qKwxReE+RMKZW00loUuYnVWeaj58ExTNsdpFJDut35AIp8FNzTmy
C4xv5VVZZnolRd6CW0GUuxEe1zXq1MiyuGHu5AwFgWl728KaRXF2tEVyrQt/okXx
kF7yWkO4oo25VZWCrboUc1FND/7dbfP/PtLKIj05l+xwNaIEt1gb1IM7SxjN+2Tx
Ayp/w1npFhugBkSV3JaIk9dfHpMlLP5URZn30dXElK0an7aB8IwZWwdObo4zlevI
K4nN+UU1Z/kN1guxYDbS6QGOo2Y8829kaOXkBC3HDQEkef631jj1FuVB6VJvhb0u
5EKaxyw8aVxodRQaK9CcKCqwDlnyhHqd4fdMjPk9zTV9xrnqSdC5yKoAhBJ9sFef
Qv5qjYiBUhB+7uGMvRifvO+bT+8q44IS7z/bdXJFjbImgtx57yKvujyvrZlDe6q3
1nzS1jqMQ8NCDP/CKs5WUlaH9LIQ/NWF10EulTjaZ0QZ6iNU0MTqmhs4ZJIsPmBo
g6Qz9x8imV37cC9lHhw/vp99Dal9YulTxdYZnWSfTh289bHqaMEXGYJUsDh3IEYx
UP1bzza+N2dqeiysDmeTNhbZvwk54VmaKMrj/ut/3WIrsulBY7YxE/azle78Ydab
/tKu5YUbVydnVJ6y1s4yASjaOG7ycMIaXggWKUIfWh5Y7BLFHYbcMMltPrspftW7
tjtbL1SUHw0NTfCkBqRv4GpvIAXTCmlxvLw//ee1JZ0nuLnQZBF2GQ0wJVsbunT9
dUschdnIWLfWlueldt+5wOkB6L4quoZ7LWefMQu/b3bg/GWoBtuC3fJDnCsbJO07
nJxZTPxsI3iFUGGtXkg4jGC+yDMlQu3a7LwEkKzx9LT/S1OUndpaBQr6YjyrnET6
w1Hz6jLb5t/2fzrBwkKw1TCu4+pkevIGaGxgQY6TB15jcmWRkUF3sakTrH0UOCSq
wEzFoPF4+WjtXNk/wHw8zkrW7QCe+wbjLjwcUUK/ulKT9/II/k/aUwTt+GzWCGVq
KWq7VLtwa8lrJ74R+XISks9/Hv/nJ8Ay1DfpcQU2HQSnQpSrXupXIA+VoHU/b8xD
YcgqaRKsGYHUANjNs4PpplXlEHp5bpF/ZOpfVAJNnGQ96Cj182DLQgiB0j7Ishjv
XoNDVL45KKW0uWjimZbCauWrD6tjZfBmydymezbPLCB9R+tE68TA/XmpXzInXWML
YDK7tS8TYEkodzSkfDeB7BtXBRIxH4vm2M0E0OdJuLxjrOYeIH4xToUslS9pdog0
z3aqPQbXF4hFc8Fso83dmoc26mQd3H0LrP7yF4HR
=gLhG
-----END PGP MESSAGE-----
--hcW81WNiFhQC1SNIcls8J07V1b1sXtfCA--

View File

@ -0,0 +1,75 @@
Return-Path: <pep.test.alice@pep-project.org>
X-Original-To: krista@gnunet.org
Delivered-To: krista@gnunet.org
Received: from vmmailrelay1.informatik.tu-muenchen.de (mailrelay1.informatik.tu-muenchen.de [131.159.254.14])
by sam.net.in.tum.de (Postfix) with ESMTP id 140C01C00BC
for <krista@gnunet.org>; Mon, 12 Jun 2017 15:27:21 +0200 (CEST)
Received: by vmmailrelay1.informatik.tu-muenchen.de (Postfix, from userid 109)
id DAE901C0390; Mon, 12 Jun 2017 15:27:21 +0200 (CEST)
Received: from vmmailrelay1.informatik.tu-muenchen.de (localhost [127.0.0.1])
by vmmailrelay1.informatik.tu-muenchen.de (Postfix) with ESMTP id B86091C0383
for <krista@gnunet.org>; Mon, 12 Jun 2017 15:27:21 +0200 (CEST)
Received: from vmmaildmz1.informatik.tu-muenchen.de (vmmaildmz1.informatik.tu-muenchen.de [131.159.0.87])
by vmmailrelay1.informatik.tu-muenchen.de (Postfix) with ESMTP id AE13F1C037A
for <krista@gnunet.org>; Mon, 12 Jun 2017 15:27:21 +0200 (CEST)
Received: by vmmaildmz1.informatik.tu-muenchen.de (Postfix, from userid 109)
id AC51F1C2D9F; Mon, 12 Jun 2017 15:27:21 +0200 (CEST)
X-Spam-Checker-Version: SpamAssassin 3.4.0-tuminfo_1 (2014-02-07) on
vmmaildmz1.informatik.tu-muenchen.de
X-Spam-Level:
X-Spam-Status: No, score=-3.1 required=7.0 tests=AWL,BAYES_00,
RCVD_IN_DNSWL_LOW,RCVD_IN_MSPIKE_H3,RCVD_IN_MSPIKE_WL,TVD_RCVD_SPACE_BRACKET,
UNPARSEABLE_RELAY autolearn=no autolearn_force=no version=3.4.0-tuminfo_1
Received: from vmmaildmz1.informatik.tu-muenchen.de (localhost [127.0.0.1])
by vmmaildmz1.informatik.tu-muenchen.de (Postfix) with ESMTP id 3B30C1C2D9E
for <krista@gnunet.org>; Mon, 12 Jun 2017 15:27:20 +0200 (CEST)
Received: from mi4-p00-ob.smtp.rzone.de (mi4-p00-ob.smtp.rzone.de [81.169.146.148])
(using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
(No client certificate requested)
by vmmaildmz1.informatik.tu-muenchen.de (Postfix) with ESMTPS id 2AEF61C2D9B
for <krista@gnunet.org>; Mon, 12 Jun 2017 15:27:20 +0200 (CEST)
X-RZG-FWD-BY: pep.test.recip@kgrothoff.org
Received: from mailin.rzone.de ([unix socket])
by mailin.rzone.de (RZmta 40.9) with LMTPA;
Mon, 12 Jun 2017 15:27:00 +0200 (CEST)
Authentication-Results: strato.com 1;
spf=none
smtp.mailfrom="pep.test.alice@pep-project.org";
dkim=none;
domainkeys=none;
dkim-adsp=none
header.from="pep.test.alice@pep-project.org"
X-Strato-MessageType: email
X-RZG-CLASS-ID: mi00
Received-SPF: none
client-ip=131.159.0.8;
helo="mail-out1.informatik.tu-muenchen.de";
envelope-from="pep.test.alice@pep-project.org";
receiver=smtpin.rzone.de;
identity=mailfrom;
Received: from mail-out1.informatik.tu-muenchen.de ([131.159.0.8])
by smtpin.rzone.de (RZmta 40.9 OK)
with ESMTPS id T01d0bt5CDR0XKI
(using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (curve secp521r1 with 521 ECDH bits, eq. 15360 bits RSA))
(Client did not present a certificate)
for <pep.test.recip@kgrothoff.org>;
Mon, 12 Jun 2017 15:27:00 +0200 (CEST)
Received: from [192.168.178.22] (ip5f584089.dynamic.kabel-deutschland.de [95.88.64.137])
by services.sec.in.tum.de (Postfix) with ESMTPSA id 1DF211013AE47
for <pep.test.recip@kgrothoff.org>; Mon, 12 Jun 2017 15:26:55 +0200 (CEST)
Reply-To: krista@pep-project.org
To: pep.test.recip@kgrothoff.org
From: pEp Test Alice <pep.test.alice@pep-project.org>
Subject: pEp
Organization: pEp
Message-ID: <6205efbe-684d-9f21-8a2e-887d46a145e6@pep-project.org>
Date: Mon, 12 Jun 2017 15:26:54 +0200
User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101
Thunderbird/45.8.0
MIME-Version: 1.0
Content-Type: text/plain; charset=utf-8
Content-Transfer-Encoding: 7bit
Subject: Unencrypted try...
La la la...

View File

@ -0,0 +1,120 @@
Return-Path: <pep.test.alice@pep-project.org>
X-Original-To: krista@gnunet.org
Delivered-To: krista@gnunet.org
Received: from vmmailrelay1.informatik.tu-muenchen.de (mailrelay1.informatik.tu-muenchen.de [131.159.254.14])
by sam.net.in.tum.de (Postfix) with ESMTP id 1C8731C00BC
for <krista@gnunet.org>; Mon, 12 Jun 2017 15:28:42 +0200 (CEST)
Received: by vmmailrelay1.informatik.tu-muenchen.de (Postfix, from userid 109)
id E78B01C0383; Mon, 12 Jun 2017 15:28:42 +0200 (CEST)
Received: from vmmailrelay1.informatik.tu-muenchen.de (localhost [127.0.0.1])
by vmmailrelay1.informatik.tu-muenchen.de (Postfix) with ESMTP id C414C1C037C
for <krista@gnunet.org>; Mon, 12 Jun 2017 15:28:42 +0200 (CEST)
Received: from vmmaildmz2.informatik.tu-muenchen.de (vmmaildmz2.informatik.tu-muenchen.de [131.159.0.88])
by vmmailrelay1.informatik.tu-muenchen.de (Postfix) with ESMTP id AFA401C037A
for <krista@gnunet.org>; Mon, 12 Jun 2017 15:28:42 +0200 (CEST)
Received: by vmmaildmz2.informatik.tu-muenchen.de (Postfix, from userid 109)
id AE03E1C2AE1; Mon, 12 Jun 2017 15:28:42 +0200 (CEST)
X-Spam-Checker-Version: SpamAssassin 3.4.0-tuminfo_1 (2014-02-07) on
vmmaildmz2.informatik.tu-muenchen.de
X-Spam-Level:
X-Spam-Status: No, score=-2.9 required=7.0 tests=AWL,BAYES_00,
ENCRYPTED_MESSAGE,RCVD_IN_DNSWL_LOW,RCVD_IN_MSPIKE_H3,RCVD_IN_MSPIKE_WL,
TVD_RCVD_SPACE_BRACKET,UNPARSEABLE_RELAY autolearn=no autolearn_force=no
version=3.4.0-tuminfo_1
Received: from vmmaildmz2.informatik.tu-muenchen.de (localhost [127.0.0.1])
by vmmaildmz2.informatik.tu-muenchen.de (Postfix) with ESMTP id 441B11C2AE0
for <krista@gnunet.org>; Mon, 12 Jun 2017 15:28:41 +0200 (CEST)
Received: from mi4-p00-ob.smtp.rzone.de (mi4-p00-ob.smtp.rzone.de [81.169.146.149])
(using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
(No client certificate requested)
by vmmaildmz2.informatik.tu-muenchen.de (Postfix) with ESMTPS id 3420F1C2ADF
for <krista@gnunet.org>; Mon, 12 Jun 2017 15:28:41 +0200 (CEST)
X-RZG-FWD-BY: pep.test.recip@kgrothoff.org
Received: from mailin.rzone.de ([unix socket])
by mailin.rzone.de (RZmta 40.9) with LMTPA;
Mon, 12 Jun 2017 15:28:27 +0200 (CEST)
Authentication-Results: strato.com 1;
spf=none
smtp.mailfrom="pep.test.alice@pep-project.org";
dkim=none;
domainkeys=none;
dkim-adsp=none
header.from="pep.test.alice@pep-project.org"
X-Strato-MessageType: email
X-RZG-CLASS-ID: mi00
Received-SPF: none
client-ip=131.159.0.8;
helo="mail-out1.informatik.tu-muenchen.de";
envelope-from="pep.test.alice@pep-project.org";
receiver=smtpin.rzone.de;
identity=mailfrom;
Received: from mail-out1.informatik.tu-muenchen.de ([131.159.0.8])
by smtpin.rzone.de (RZmta 40.9 OK)
with ESMTPS id R04db2t5CDSRaBk
(using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (curve secp521r1 with 521 ECDH bits, eq. 15360 bits RSA))
(Client did not present a certificate)
for <pep.test.recip@kgrothoff.org>;
Mon, 12 Jun 2017 15:28:27 +0200 (CEST)
Received: from [192.168.178.22] (ip5f584089.dynamic.kabel-deutschland.de [95.88.64.137])
by services.sec.in.tum.de (Postfix) with ESMTPSA id E7A551013AE47
for <pep.test.recip@kgrothoff.org>; Mon, 12 Jun 2017 15:28:20 +0200 (CEST)
Reply-To: krista@pep-project.org
To: pep.test.recip@kgrothoff.org
From: pEp Test Alice <pep.test.alice@pep-project.org>
Subject: pEp
Organization: pEp
Message-ID: <1779982d-d48e-6d8c-2dcb-a2c337c496cb@pep-project.org>
Date: Mon, 12 Jun 2017 15:28:20 +0200
User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101
Thunderbird/45.8.0
MIME-Version: 1.0
Content-Type: multipart/encrypted;
protocol="application/pgp-encrypted";
boundary="xNhsqki3RTDSnTgiBbeAIkT3t5whv1bAM"
This is an OpenPGP/MIME encrypted message (RFC 4880 and 3156)
--xNhsqki3RTDSnTgiBbeAIkT3t5whv1bAM
Content-Type: application/pgp-encrypted
Content-Description: PGP/MIME version identification
Version: 1
--xNhsqki3RTDSnTgiBbeAIkT3t5whv1bAM
Content-Type: application/octet-stream; name="encrypted.asc"
Content-Description: OpenPGP encrypted message
Content-Disposition: inline; filename="encrypted.asc"
-----BEGIN PGP MESSAGE-----
hQEMA4FHqvEumyRHAQgAjsyn0zCm0jHAp+SshDzqhMFNPuRc8VhDK9DpxiA1jLy8
bH2CKJIZEWApyfmwX5xLEXhfr0wb4BthHDXLzHCDqLSFo5FoavTwNL44kaX83yPv
Ts2WrvOcXGRpNLD94tvyDBqngtk3yKYaSkKKPok4Ou5gHrIDJaNZf/mybmPa0aTX
BEOxgAaRZJoPhgeVF8/twwiDv+ixFtdnPx9gGUXvgc5tPyrIkFkWtwrsoS2RmtJT
QqdsMmPbTFrsZ+d7qhdkcedeoKRg84SlXgtFpXkkbKHB/NU2ZQ2h2xTeUqdkFGN7
vBv17C+5jv8wzYlrlni9P1Mbc+dVBZTal9gYtBGwxIUBDANaAgXZcwg/TQEH/0vs
xQCJEdqbHKLz+xOmrpQEoFLdf2W9B7z2jGQe9F0K+gnPE3E+1wVf/IQgLj4YDXtN
Gkzc6J3UPBN9b1WSTPcJQ47hU5IXO/Sb39dU9X1s01JtCorTKmHlefosg6YaZ8CX
OhTkGYHqcJa9xE8kOMi4xnhP2Z3xaSkPSQvQ4WDWSapOwDkcM2a59Nwbu5PIGZpj
FM9WVLawN1/SVbaKOUEhFKdbl7UYW64JNWE6ZaLa0sfigt4QaXd5GrQcP2vmVVGz
WOuCaEb/HnxgiUvLQI2tCnW8aWluc6PnNk3HwLydvCL0tHSXPJno4Wbs1GzRJ4G7
CleoojpLytgTfIlZ7anS6QEAXXAuWGT3jddP4hcTnsfX40bQnIH1m49RX/4OHuMY
n7RyzSfyVghBQeA3fEQ48ep3WHuFHEn0Kn9rvcr/JZRO2NM4nBv1FjOIBTUMTlX+
hf0F/mYz1ycNg/rt6Taf9xcIP0IzRfQEa/dFqnEnBYCxGvRSr+EnMzg+ETT1p+aa
YAyjsbikhOqmle9G4LFUyblMmIlwFvAklAAlXTUJAEn3pc5mxH6vz0JitDpLdFDM
pW51y0HYgUNKS+9+qoVK2WXhkK/+hCbLzWVwzN5FlsIPucH+L+afquR6W5IKA8uZ
ixDPokbP1H608f/TobwX988nWby54kihoxaMvmEDbqT5Ivi5hHDhj5e79mxhUoZx
wb6fsm+d2vewDRhSIUF6/iioPaQt2AhmHNMBUYS5RrlOY8mc9BP8PwKym5SgkpE4
NKxoMjbQwUi3SHseA1hluMBieV+d7nYHqwBtSgMC/ax/AcDwmoLusXlf3OiBytdL
2v4OtPu6kt/QIlEABEDlqDK70wM6BChzWYrc5ErsixZ9NHunNshAjYsVeNtStOFV
TPGiy7a8rKB3xJhqzZhhLh9ly8JxVNfkb2LVXP/yzBS8LJpCluzyXZZpH2Q2a8lP
t71tjf/R/Uff2ZeF5yWO7zldyoEfx00yQWDyfmM6zHm17moXH5Mql2ZvTI0C0mk6
wDYNVEFe9YIXvxhdu5ym67ba8t5eV2t3c4zdhFy5YHZOC/KvpcZBLcvLY2jgVmNr
UYNqKpGK9m03jHRT2ZuG6F19QrxKqUIvgnYWsenecCvjjOIcWH7KqqNp+d4RyNRr
4VyoJk9nxzlUT/wKQJ6d5OtY5wytCCxpv8ihBFS3R2f0Sk2yXOgKE2sq0DEicWe+
x8Yqg3C/47hrtiUnEwwmp3VEYHfBTaaXMUkpmoRJ066u+8K2Jfo/pQnX6vcyUpvY
tJNqH+SMYKMXVBigU0ayWQFwVcoNEqFNVTm9K3MBQlIQiYqumBptG8rYhzF/eSUC
doDA15Ibgsk=
=P9h8
-----END PGP MESSAGE-----
--xNhsqki3RTDSnTgiBbeAIkT3t5whv1bAM--

View File

@ -0,0 +1,73 @@
Return-Path: <pep.test.alice@pep-project.org>
X-Original-To: krista@gnunet.org
Delivered-To: krista@gnunet.org
Received: from vmmailrelay1.informatik.tu-muenchen.de (mailrelay1.informatik.tu-muenchen.de [131.159.254.14])
by sam.net.in.tum.de (Postfix) with ESMTP id 39CD11C00BC
for <krista@gnunet.org>; Mon, 12 Jun 2017 15:36:35 +0200 (CEST)
Received: by vmmailrelay1.informatik.tu-muenchen.de (Postfix, from userid 109)
id 0CEA81C0390; Mon, 12 Jun 2017 15:36:36 +0200 (CEST)
Received: from vmmailrelay1.informatik.tu-muenchen.de (localhost [127.0.0.1])
by vmmailrelay1.informatik.tu-muenchen.de (Postfix) with ESMTP id DE7711C0383
for <krista@gnunet.org>; Mon, 12 Jun 2017 15:36:35 +0200 (CEST)
Received: from vmmaildmz1.informatik.tu-muenchen.de (vmmaildmz1.informatik.tu-muenchen.de [131.159.0.87])
by vmmailrelay1.informatik.tu-muenchen.de (Postfix) with ESMTP id D3D7A1C037A
for <krista@gnunet.org>; Mon, 12 Jun 2017 15:36:35 +0200 (CEST)
Received: by vmmaildmz1.informatik.tu-muenchen.de (Postfix, from userid 109)
id D22771C2D9E; Mon, 12 Jun 2017 15:36:35 +0200 (CEST)
X-Spam-Checker-Version: SpamAssassin 3.4.0-tuminfo_1 (2014-02-07) on
vmmaildmz1.informatik.tu-muenchen.de
X-Spam-Level:
X-Spam-Status: No, score=-2.9 required=7.0 tests=AWL,BAYES_00,
RCVD_IN_DNSWL_LOW,RCVD_IN_MSPIKE_H3,RCVD_IN_MSPIKE_WL,TVD_RCVD_SPACE_BRACKET,
UNPARSEABLE_RELAY autolearn=no autolearn_force=no version=3.4.0-tuminfo_1
Received: from vmmaildmz1.informatik.tu-muenchen.de (localhost [127.0.0.1])
by vmmaildmz1.informatik.tu-muenchen.de (Postfix) with ESMTP id 615241C2D9E
for <krista@gnunet.org>; Mon, 12 Jun 2017 15:36:34 +0200 (CEST)
Received: from mi4-p00-ob.smtp.rzone.de (mi4-p00-ob.smtp.rzone.de [81.169.146.146])
(using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits))
(No client certificate requested)
by vmmaildmz1.informatik.tu-muenchen.de (Postfix) with ESMTPS id 50C3E1C2D9B
for <krista@gnunet.org>; Mon, 12 Jun 2017 15:36:34 +0200 (CEST)
X-RZG-FWD-BY: pep.test.recip@kgrothoff.org
Received: from mailin.rzone.de ([unix socket])
by mailin.rzone.de (RZmta 40.9) with LMTPA;
Mon, 12 Jun 2017 15:36:18 +0200 (CEST)
Authentication-Results: strato.com 1;
spf=none
smtp.mailfrom="pep.test.alice@pep-project.org";
dkim=none;
domainkeys=none;
dkim-adsp=none
header.from="pep.test.alice@pep-project.org"
X-Strato-MessageType: email
X-RZG-CLASS-ID: mi00
Received-SPF: none
client-ip=131.159.0.8;
helo="mail-out1.informatik.tu-muenchen.de";
envelope-from="pep.test.alice@pep-project.org";
receiver=smtpin.rzone.de;
identity=mailfrom;
Received: from mail-out1.informatik.tu-muenchen.de ([131.159.0.8])
by smtpin.rzone.de (RZmta 40.9 OK)
with ESMTPS id p044e9t5CDaIXCz
(using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (curve secp521r1 with 521 ECDH bits, eq. 15360 bits RSA))
(Client did not present a certificate)
for <pep.test.recip@kgrothoff.org>;
Mon, 12 Jun 2017 15:36:18 +0200 (CEST)
Received: from [192.168.178.22] (ip5f584089.dynamic.kabel-deutschland.de [95.88.64.137])
by services.sec.in.tum.de (Postfix) with ESMTPSA id D40EB1013AE4F
for <pep.test.recip@kgrothoff.org>; Mon, 12 Jun 2017 15:36:12 +0200 (CEST)
To: pep.test.recip@kgrothoff.org
Reply-To: krista@pep-project.org
From: pEp Test Alice <pep.test.alice@pep-project.org>
Subject: pEp
Organization: pEp
Message-ID: <7b251ab6-f1c0-163b-0891-574d4eb095e1@pep-project.org>
Date: Mon, 12 Jun 2017 15:36:12 +0200
User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101
Thunderbird/45.8.0
MIME-Version: 1.0
Content-Type: text/plain; charset=utf-8
Content-Transfer-Encoding: 7bit
Unencrypted variable where pEp is the actual subject.