--- a/FPPMessage.cs Fri May 18 09:36:07 2018 +0200
+++ b/FPPMessage.cs Fri May 18 12:14:05 2018 +0200
@@ -29,13 +29,13 @@
"<br><br>This message can only be opened with p≡p for Outlook or p≡p Reader for Outlook.";
public const string PEP_FPP_MESSAGE_BODY_PLAIN_PEP_INSTALLED = "This message is protected by p≡p. \n\nTo read this message please do the following:" +
"\n\n1. Click the Privacy Status button on the bottom of this message to open the Handshake dialog." +
- "\n2. Shortly after you opened the Handshake dialog on your computer, the same dialog will show up on the screen of the sender of the message as well(depending on the setup it might take 2-3 minutes). Contact the sender through another communication channel(e.g.phone call)." +
+ "\n2. Shortly after you opened the Handshake dialog on your computer, the same dialog will show up on the screen of the sender of the message as well (depending on the setup it might take 2-3 minutes). Contact the sender through another communication channel (e.g.phone call)." +
"\n3. Compare the Trustwords with your communication partner. If the Trustwords match, confirm the Trustwords by clicking the green button." +
"\n4. Shortly after, the protected message will automatically decrypt and you can read the message.";
public const string PEP_FPP_MESSAGE_BODY_HTML_PEP_INSTALLED = "<!DOCTYPE html><html><head><meta http-equiv='Content-Type' content='text/html;charset=UTF-8'></head><body>" +
"This message is protected by <a style=\"color:#03AA4B; text-decoration: none\" href=\"" + Globals.PEP_WEBSITE_LINK + "\">p≡p</a>. <br><br>To read this message please do the following:" +
"<br><br>1. Click the Privacy Status button on the bottom of this message to open the Handshake dialog." +
- "<br>2. Shortly after you opened the Handshake dialog on your computer, the same dialog will show up on the screen of the sender of the message as well(depending on the setup it might take 2-3 minutes). Contact the sender through another communication channel(e.g.phone call)." +
+ "<br>2. Shortly after you opened the Handshake dialog on your computer, the same dialog will show up on the screen of the sender of the message as well (depending on the setup it might take 2-3 minutes). Contact the sender through another communication channel (e.g.phone call)." +
"<br>3. Compare the Trustwords with your communication partner. If the Trustwords match, confirm the Trustwords by clicking the green button." +
"<br>4. Shortly after, the protected message will automatically decrypt and you can read the message.</body></html>";
public const string PEP_FPP_ATTACHMENT_FILE_NAME = "ignore_this_attachment.pEp";
--- a/MsgProcessor.cs Fri May 18 09:36:07 2018 +0200
+++ b/MsgProcessor.cs Fri May 18 12:14:05 2018 +0200
@@ -110,7 +110,7 @@
(string.IsNullOrEmpty(message?.KeyImport) == false) &&
(KeySyncWizard.Wizard?.Myself?.Fingerprint?.Equals(message?.KeyImport) == false))
{
- flags = (flags | pEpDecryptFlags.pEpDecryptFlagConsume);
+ flags |= pEpDecryptFlags.pEpDecryptFlagConsume;
}
}
else