diff options
author | Maksim Pechnikov <parallel588@gmail.com> | 2020-07-22 15:34:47 +0300 |
---|---|---|
committer | Maksim Pechnikov <parallel588@gmail.com> | 2020-07-22 15:34:47 +0300 |
commit | 5879d3685425bebaece3ecfe1e090654c91f44b1 (patch) | |
tree | f927f882c771d1eb50eeae97e251126f09b3f162 /config/description.exs | |
parent | b620290dd98d29a20afa86b116d1299d97ce222b (diff) | |
download | pleroma-5879d3685425bebaece3ecfe1e090654c91f44b1.tar.gz pleroma-5879d3685425bebaece3ecfe1e090654c91f44b1.zip |
fix sender for welcome email
Diffstat (limited to 'config/description.exs')
-rw-r--r-- | config/description.exs | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/config/description.exs b/config/description.exs index 3786a608d..e012040f5 100644 --- a/config/description.exs +++ b/config/description.exs @@ -990,11 +990,12 @@ config :pleroma, :config_description, [ description: "Enables sends direct message for new user after registration" }, %{ - key: :sender_nickname, - type: :string, - description: "The nickname of the local user that sends the welcome email", + key: :sender, + type: [:string, :tuple], + description: + "The email address or tuple with `{nickname, email}` that will use as sender to the welcome email.", suggestions: [ - "lain" + {"Pleroma App", "welcome@pleroma.app"} ] }, %{ |