Remove hackney/gun in favour of finch
[akkoma] / lib / pleroma / emails / mailer.ex
index c68550beed312b08a3964e403dfd2ead97916e73..d42236c5e39ef17b8d9a0f421b8a0c9b0d4ab648 100644 (file)
@@ -35,11 +35,6 @@ defmodule Pleroma.Emails.Mailer do
   def deliver(email, config \\ [])
 
   def deliver(email, config) do
-    # temporary hackney fix until hackney max_connections bug is fixed
-    # https://git.pleroma.social/pleroma/pleroma/-/issues/2101
-    email =
-      Swoosh.Email.put_private(email, :hackney_options, ssl_options: [versions: [:"tlsv1.2"]])
-
     case enabled?() do
       true -> Swoosh.Mailer.deliver(email, parse_config(config))
       false -> {:error, :deliveries_disabled}