mirror of
https://github.com/YunoHost-Apps/listmonk_ynh.git
synced 2024-09-03 19:36:15 +02:00
Enable allow_email and add post install doc
This commit is contained in:
parent
0ae16f056f
commit
218e87db0a
2 changed files with 24 additions and 4 deletions
16
doc/POST_INSTALL.md
Normal file
16
doc/POST_INSTALL.md
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
You have to configure SMTP from the web interface at https://__DOMAIN__/admin
|
||||||
|
|
||||||
|
Visit Settings -> General and replace these values:
|
||||||
|
|
||||||
|
- Root URL: https://__DOMAIN__
|
||||||
|
- Default from email: listmonk <__APP__@__DOMAIN__>
|
||||||
|
|
||||||
|
Visit Settings -> SMTP and replace with these values:
|
||||||
|
|
||||||
|
- Host: 127.0.0.1
|
||||||
|
- Port: 25
|
||||||
|
- Auth protocol: PLAIN
|
||||||
|
- User: __APP__
|
||||||
|
- Password: __MAIL_PWD__
|
||||||
|
|
||||||
|
Then, test the connection
|
|
@ -34,9 +34,6 @@ ram.runtime = "50M"
|
||||||
type = "group"
|
type = "group"
|
||||||
default = "visitors"
|
default = "visitors"
|
||||||
|
|
||||||
[install.admin]
|
|
||||||
type = "user"
|
|
||||||
|
|
||||||
[resources]
|
[resources]
|
||||||
|
|
||||||
[resources.sources]
|
[resources.sources]
|
||||||
|
@ -50,7 +47,13 @@ ram.runtime = "50M"
|
||||||
arm64.sha256 = "832c5a34ed78446c179ed5423cdbce51d3e51333c1ea6cf11c74b63e0776193a"
|
arm64.sha256 = "832c5a34ed78446c179ed5423cdbce51d3e51333c1ea6cf11c74b63e0776193a"
|
||||||
in_subdir = false
|
in_subdir = false
|
||||||
|
|
||||||
|
autoupdate.strategy = "latest_github_release"
|
||||||
|
autoupdate.asset.amd64 = ".*_linux_amd64.tar.gz"
|
||||||
|
autoupdate.asset.armhf = ".*_linux_armv7.tar.gz"
|
||||||
|
autoupdate.asset.arm64 = ".*_linux_arm64.tar.gz"
|
||||||
|
|
||||||
[resources.system_user]
|
[resources.system_user]
|
||||||
|
allow_email = true
|
||||||
|
|
||||||
[resources.ports]
|
[resources.ports]
|
||||||
|
|
||||||
|
@ -65,10 +68,11 @@ ram.runtime = "50M"
|
||||||
admin.auth_header = false
|
admin.auth_header = false
|
||||||
admin.allowed = "admins"
|
admin.allowed = "admins"
|
||||||
|
|
||||||
|
# internal API, should not be allowed to visitors
|
||||||
api.url = "/api"
|
api.url = "/api"
|
||||||
api.show_tile = false
|
api.show_tile = false
|
||||||
api.auth_header = false
|
api.auth_header = false
|
||||||
api.allowed = "visitors"
|
api.allowed = "admins"
|
||||||
|
|
||||||
[resources.apt]
|
[resources.apt]
|
||||||
packages = "postgresql"
|
packages = "postgresql"
|
||||||
|
|
Loading…
Add table
Reference in a new issue