]> git.mxchange.org Git - friendica-addons.git/blobdiff - securemail/securemail.php
[various] Add rel="noopener noreferrer" to all target="_blank" links
[friendica-addons.git] / securemail / securemail.php
index b45a91bcc0b82259ca38507b0bffcdec5f0d7085..115ba47290e2cb2f6d7ed948edb726b33220ce8b 100644 (file)
@@ -116,8 +116,6 @@ function securemail_settings_post(App &$a, array &$b)
  */
 function securemail_emailer_send_prepare(App &$a, IEmail &$email)
 {
-       DI::logger()->warning('start securemail', ['email' => $email]);
-
        if (empty($email->getRecipientUid())) {
                return;
        }
@@ -126,7 +124,7 @@ function securemail_emailer_send_prepare(App &$a, IEmail &$email)
 
        $enable_checked = DI::pConfig()->get($uid, 'securemail', 'enable');
        if (!$enable_checked) {
-               DI::logger()->warning('No check!!', ['email' => $email]);
+               DI::logger()->debug('No securemail enabled.');
                return;
        }
 
@@ -136,8 +134,6 @@ function securemail_emailer_send_prepare(App &$a, IEmail &$email)
        $marker = empty($matches[1]) ? 'MESSAGE' : $matches[1];
        $public_key = OpenPGP::unarmor($public_key_ascii, $marker);
 
-       DI::logger()->warning('public key', ['public_key' => $public_key]);
-
        $key = OpenPGP_Message::parse($public_key);
 
        $data = new OpenPGP_LiteralDataPacket($email->getMessage(true), [
@@ -145,8 +141,6 @@ function securemail_emailer_send_prepare(App &$a, IEmail &$email)
                'filename' => 'encrypted.gpg'
        ]);
 
-       DI::logger()->warning('data', ['data' => $data]);
-
        try {
                $encrypted = OpenPGP_Crypt_Symmetric::encrypt($key, new OpenPGP_Message([$data]));
                $armored_encrypted = wordwrap(
@@ -158,8 +152,6 @@ function securemail_emailer_send_prepare(App &$a, IEmail &$email)
 
                $email = $email->withMessage($armored_encrypted, null);
 
-               DI::logger()->warning('End securemail', ['email' => $email]);
-
        } catch (Exception $e) {
                DI::logger()->warning('Encryption failed.', ['email' => $email, 'exception' => $e]);
        }