mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2024-11-22 10:03:41 +00:00
fix logger settings
This commit is contained in:
parent
7603b23799
commit
81dc1e5eb1
1 changed files with 3 additions and 7 deletions
|
@ -116,7 +116,7 @@ function securemail_settings_post(App &$a, array &$b)
|
||||||
*/
|
*/
|
||||||
function securemail_emailer_send_prepare(App &$a, IEmail &$email)
|
function securemail_emailer_send_prepare(App &$a, IEmail &$email)
|
||||||
{
|
{
|
||||||
DI::logger()->warning('start securemail', ['email' => $email]);
|
DI::logger()->debug('start securemail', ['email' => $email]);
|
||||||
|
|
||||||
if (empty($email->getRecipientUid())) {
|
if (empty($email->getRecipientUid())) {
|
||||||
return;
|
return;
|
||||||
|
@ -126,7 +126,7 @@ function securemail_emailer_send_prepare(App &$a, IEmail &$email)
|
||||||
|
|
||||||
$enable_checked = DI::pConfig()->get($uid, 'securemail', 'enable');
|
$enable_checked = DI::pConfig()->get($uid, 'securemail', 'enable');
|
||||||
if (!$enable_checked) {
|
if (!$enable_checked) {
|
||||||
DI::logger()->warning('No check!!', ['email' => $email]);
|
DI::logger()->debug('No check', ['email' => $email]);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -136,8 +136,6 @@ function securemail_emailer_send_prepare(App &$a, IEmail &$email)
|
||||||
$marker = empty($matches[1]) ? 'MESSAGE' : $matches[1];
|
$marker = empty($matches[1]) ? 'MESSAGE' : $matches[1];
|
||||||
$public_key = OpenPGP::unarmor($public_key_ascii, $marker);
|
$public_key = OpenPGP::unarmor($public_key_ascii, $marker);
|
||||||
|
|
||||||
DI::logger()->warning('public key', ['public_key' => $public_key]);
|
|
||||||
|
|
||||||
$key = OpenPGP_Message::parse($public_key);
|
$key = OpenPGP_Message::parse($public_key);
|
||||||
|
|
||||||
$data = new OpenPGP_LiteralDataPacket($email->getMessage(true), [
|
$data = new OpenPGP_LiteralDataPacket($email->getMessage(true), [
|
||||||
|
@ -145,8 +143,6 @@ function securemail_emailer_send_prepare(App &$a, IEmail &$email)
|
||||||
'filename' => 'encrypted.gpg'
|
'filename' => 'encrypted.gpg'
|
||||||
]);
|
]);
|
||||||
|
|
||||||
DI::logger()->warning('data', ['data' => $data]);
|
|
||||||
|
|
||||||
try {
|
try {
|
||||||
$encrypted = OpenPGP_Crypt_Symmetric::encrypt($key, new OpenPGP_Message([$data]));
|
$encrypted = OpenPGP_Crypt_Symmetric::encrypt($key, new OpenPGP_Message([$data]));
|
||||||
$armored_encrypted = wordwrap(
|
$armored_encrypted = wordwrap(
|
||||||
|
@ -158,7 +154,7 @@ function securemail_emailer_send_prepare(App &$a, IEmail &$email)
|
||||||
|
|
||||||
$email = $email->withMessage($armored_encrypted, null);
|
$email = $email->withMessage($armored_encrypted, null);
|
||||||
|
|
||||||
DI::logger()->warning('End securemail', ['email' => $email]);
|
DI::logger()->debug('End securemail', ['email' => $email]);
|
||||||
|
|
||||||
} catch (Exception $e) {
|
} catch (Exception $e) {
|
||||||
DI::logger()->warning('Encryption failed.', ['email' => $email, 'exception' => $e]);
|
DI::logger()->warning('Encryption failed.', ['email' => $email, 'exception' => $e]);
|
||||||
|
|
Loading…
Reference in a new issue