Verified Commit d99663c3 authored by dockx thibault's avatar dockx thibault
Browse files

:sparkles: Feat(Integrator) - mailLib is now allowing unsecure mail and non...

:sparkles: Feat(Integrator) - mailLib is now allowing unsecure mail and non authentication to server relay

Mail relay server can be un-authenticated and self sign certified.
parent 65148af4
2 merge requests!52:sparkles: Releasing Fusiondirectory Integrator 1.2,!45Resolve "[Integrator] - Mail - Adds conditions to mail security and authentication"
Pipeline #29655 passed with stages
in 50 seconds
Showing with 4 additions and 4 deletions
+4 -4
......@@ -72,13 +72,13 @@ class MailLib
$this->mail->AuthType = 'LOGIN';
} else {
// Disable SSL certificate verification
$this->mail->SMTPOptions = array(
'ssl' => array(
$this->mail->SMTPOptions = [
'ssl' => [
'verify_peer' => FALSE,
'verify_peer_name' => FALSE,
'allow_self_signed' => TRUE
)
);
]
];
}
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment