Add specific exception in case of GPG encryption failing

This commit is contained in:
2023-11-21 01:44:19 +01:00
parent 900c2733e5
commit bc998fbfa0
2 changed files with 26 additions and 3 deletions

View File

@@ -43,11 +43,16 @@ final class MDMailerHelper {
}
if ($gpg->addsignkey(MD_CONF_EMAIL::PGP_ENC_KEY) === false) {
throw new \Exception("Cannot set private key for GPG encryption");
throw new \MDMailerEncryptionFailedException("Cannot set private key for GPG encryption");
}
if (empty($msg = $gpg->encrypt($msg))) {
throw new \Exception("Failed to sign and encrypt the message");
try {
if (empty($msg = $gpg->encrypt($msg))) {
throw new \MDMailerEncryptionFailedException("Failed to sign and encrypt the message");
}
}
catch (Exception $e) {
throw new MDMailerEncryptionFailedException("Failed to sign and encrypt the message to " . $to);
}
return $msg;