1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/gotosocial_ynh.git synced 2024-09-03 19:16:06 +02:00

Merge pull request #8 from YunoHost-Apps/smtp

SMTP
This commit is contained in:
OniriCorpe 2022-03-24 21:49:05 +01:00 committed by GitHub
commit 84fe33ee94
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -372,12 +372,12 @@ oidc-scopes:
# If this is not set, smtp will not be used to send emails, and you can ignore the other settings. # If this is not set, smtp will not be used to send emails, and you can ignore the other settings.
# Examples: ["mail.example.org", "localhost"] # Examples: ["mail.example.org", "localhost"]
# Default: "" # Default: ""
smtp-host: "" smtp-host: "localhost"
# Int. Port to use to connect to the smtp server. # Int. Port to use to connect to the smtp server.
# Examples: [] # Examples: []
# Default: 0 # Default: 0
smtp-port: 0 smtp-port: 25
# String. Username to use when authenticating with the smtp server. # String. Username to use when authenticating with the smtp server.
# This should have been provided to you by your smtp host. # This should have been provided to you by your smtp host.
@ -395,7 +395,7 @@ smtp-password: ""
# String. 'From' address for sent emails. # String. 'From' address for sent emails.
# Examples: ["mail@example.org"] # Examples: ["mail@example.org"]
# Default: "" # Default: ""
smtp-from: "" smtp-from: "GoToSocial@__DOMAIN__"
######################### #########################
##### SYSLOG CONFIG ##### ##### SYSLOG CONFIG #####