allow option to skip encryption for mails #1

Merged
jrenslin merged 1 commits from :master into master 2023-10-05 02:05:00 +02:00
Showing only changes of commit 0f99446c92 - Show all commits

View File

@ -21,6 +21,10 @@ final class MDMailerHelper {
* @return string
*/
public static function pgp_encrypt(string $to, string $msg):string {
// Skip encryption if PGP_ENC_KEY is null
if (MD_CONF_EMAIL::PGP_ENC_KEY === null) {
return $msg;
}
$gpg = new gnupg();
$gpg->seterrormode(GNUPG_ERROR_EXCEPTION);