More description improvements
This commit is contained in:
parent
227dd84f11
commit
bd828e5c9c
|
@ -237,7 +237,7 @@
|
||||||
%{
|
%{
|
||||||
key: :enabled,
|
key: :enabled,
|
||||||
type: :boolean,
|
type: :boolean,
|
||||||
description: "Allow/disallow send emails"
|
description: "Pleroma Email sending capability"
|
||||||
},
|
},
|
||||||
%{
|
%{
|
||||||
group: {:subgroup, Swoosh.Adapters.SMTP},
|
group: {:subgroup, Swoosh.Adapters.SMTP},
|
||||||
|
@ -256,36 +256,37 @@
|
||||||
group: {:subgroup, Swoosh.Adapters.SMTP},
|
group: {:subgroup, Swoosh.Adapters.SMTP},
|
||||||
key: :username,
|
key: :username,
|
||||||
type: :string,
|
type: :string,
|
||||||
description: "SMTP auth username",
|
description: "SMTP AUTH username",
|
||||||
suggestions: ["user@example.com"]
|
suggestions: ["user@example.com"]
|
||||||
},
|
},
|
||||||
%{
|
%{
|
||||||
group: {:subgroup, Swoosh.Adapters.SMTP},
|
group: {:subgroup, Swoosh.Adapters.SMTP},
|
||||||
key: :password,
|
key: :password,
|
||||||
type: :string,
|
type: :string,
|
||||||
description: "SMTP auth password",
|
description: "SMTP AUTH password",
|
||||||
suggestions: ["password"]
|
suggestions: ["password"]
|
||||||
},
|
},
|
||||||
%{
|
%{
|
||||||
group: {:subgroup, Swoosh.Adapters.SMTP},
|
group: {:subgroup, Swoosh.Adapters.SMTP},
|
||||||
key: :ssl,
|
key: :ssl,
|
||||||
label: "SSL",
|
label: "Use SSL",
|
||||||
type: :boolean,
|
type: :boolean,
|
||||||
description: "Use implicit SSL/TLS: e.g., port 465"
|
description: "Use implicit SSL/TLS. e.g. port 465"
|
||||||
},
|
},
|
||||||
%{
|
%{
|
||||||
group: {:subgroup, Swoosh.Adapters.SMTP},
|
group: {:subgroup, Swoosh.Adapters.SMTP},
|
||||||
key: :tls,
|
key: :tls,
|
||||||
label: "STARTTLS",
|
label: "STARTTLS Mode",
|
||||||
type: {:dropdown, :atom},
|
type: {:dropdown, :atom},
|
||||||
description: "Explicit TLS (STARTTLS) mode",
|
description: "Explicit TLS (STARTTLS) enforcement mode",
|
||||||
suggestions: [:if_available, :always, :never]
|
suggestions: [:if_available, :always, :never]
|
||||||
},
|
},
|
||||||
%{
|
%{
|
||||||
group: {:subgroup, Swoosh.Adapters.SMTP},
|
group: {:subgroup, Swoosh.Adapters.SMTP},
|
||||||
key: :auth,
|
key: :auth,
|
||||||
|
label: "AUTH Mode",
|
||||||
type: {:dropdown, :atom},
|
type: {:dropdown, :atom},
|
||||||
description: "SMTP authentication mode",
|
description: "SMTP AUTH enforcement mode",
|
||||||
suggestions: [:if_available, :always, :never]
|
suggestions: [:if_available, :always, :never]
|
||||||
},
|
},
|
||||||
%{
|
%{
|
||||||
|
|
Loading…
Reference in New Issue