1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/nextcloud_ynh.git synced 2024-09-03 19:55:57 +02:00

Provide proper mail configuration

This commit is contained in:
orhtej2 2023-10-10 22:50:57 +02:00 committed by GitHub
parent cae89b069c
commit 263b17638c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -15,11 +15,21 @@
"localstorage.allowsymlinks": true, "localstorage.allowsymlinks": true,
"simpleSignUpLink.shown": false, "simpleSignUpLink.shown": false,
"mail_smtpmode": "smtp", "mail_smtpmode": "smtp",
"mail_smtphost": "smtp://__APP__:__MAIL_PWD__@localhost:587/?tls=True", "mail_smtpport": "25",
"mail_smtpport": 587, "mail_smtpauth": 1,
"mail_smtpauth": true,
"mail_smtpname": "__APP__", "mail_smtpname": "__APP__",
"mail_smtppassword": "__MAIL_PWD__" "mail_smtppassword": "__MAIL_PWD__",
"mail_sendmailmode": "smtp",
"mail_from_address": "__APP__",
"mail_domain": "__DOMAIN__",
"mail_smtphost": "localhost",
"mail_smtpstreamoptions": {
"ssl": {
"allow_self_signed": true,
"verify_peer": false,
"verify_peer_name": false
}
}
}, },
"apps": { "apps": {
"user_ldap": { "user_ldap": {