splitbrain / dokuwiki-plugin-smtp

Send DokuWiki mails via a configured SMTP server
https://www.dokuwiki.org/plugin:smtp
12 stars 14 forks source link

Ability to ignore servers certificate woud be nice #32

Open tplecko opened 5 years ago

tplecko commented 5 years ago

There is no option to ignore servers certificate.

with phpmailer I would do this: $mail->SMTPOptions = array( 'ssl' => array( 'verify_peer' => false, 'verify_peer_name' => false, 'allow_self_signed' => true ) );

Not sure where to do the modification in this plugin