You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Would it be possible to extend the existing Connection::configure_host to allow a CA certificate file to be specified?
The extra code looks like this:
if self.mail.use_tls:
**# Change to support CA certificate authentication
cafile = current_app.config.get("MAIL_CAFILE")
context = ssl.create_default_context(cafile=cafile)**
host.starttls(**context=context**)
The text was updated successfully, but these errors were encountered:
Would it be possible to extend the existing Connection::configure_host to allow a CA certificate file to be specified?
The extra code looks like this:
The text was updated successfully, but these errors were encountered: