mirror of
https://github.com/penpot/penpot.git
synced 2025-01-23 06:58:58 -05:00
🐛 Fix incorrect handling of SSL param on email sending subsystem
Fixes #3213
This commit is contained in:
parent
f166fe1926
commit
51d829a4b3
1 changed files with 1 additions and 1 deletions
|
@ -305,7 +305,7 @@
|
|||
(fn [params]
|
||||
(when (contains? cf/flags :smtp)
|
||||
(let [session (create-smtp-session cfg)]
|
||||
(with-open [transport (.getTransport session (if (:ssl cfg) "smtps" "smtp"))]
|
||||
(with-open [transport (.getTransport session (if (::ssl cfg) "smtps" "smtp"))]
|
||||
(.connect ^Transport transport
|
||||
^String (::username cfg)
|
||||
^String (::password cfg))
|
||||
|
|
Loading…
Add table
Reference in a new issue