Improve error messages
authorMark Felder <feld@FreeBSD.org>
Tue, 14 Jul 2020 18:12:16 +0000 (13:12 -0500)
committerMark Felder <feld@FreeBSD.org>
Tue, 14 Jul 2020 18:12:16 +0000 (13:12 -0500)
lib/pleroma/application_requirements.ex

index f0f34734e88c8664aaf37dc9eb80844914f02ec1..d51160b822f49e74bc64e2f23247af16489365b8 100644 (file)
@@ -31,10 +31,10 @@ defmodule Pleroma.ApplicationRequirements do
     if Pleroma.Config.get([:instance, :account_activation_required]) &&
          not Pleroma.Config.get([Pleroma.Emails.Mailer, :enabled]) do
       Logger.error(
-        "To use confirmation an user account need to enable and setting mailer.\nIf you want to start Pleroma anyway, set\nconfig :pleroma, :instance, account_activation_required: false\nOtherwise setup and enable mailer."
+        "Account activation enabled, but no Mailer settings enabled.\nPlease set config :pleroma, :instance, account_activation_required: false\nOtherwise setup and enable Mailer."
       )
 
-      {:error, "Confirmation account: Mailer is disabled"}
+      {:error, "Account activation enabled, but Mailer is disabled. Cannot send confirmation emails."}
     else
       :ok
     end