Compare commits

...

2 Commits

Author SHA1 Message Date
0133114aac Merge pull request 'feat: add default settings to stalwart' (#68) from benvin/stalwart_default_settings into master
All checks were successful
Deploy / deploy-8 (push) Successful in 5s
Deploy / deploy-9 (push) Successful in 7s
Reviewed-on: #68
2025-10-19 20:54:15 +11:00
6813eb84ce feat: add default settings to stalwart
All checks were successful
Build / build-8 (pull_request) Successful in 1m51s
Build / build-9 (pull_request) Successful in 1m59s
- bump release
- add default admin user/pass
- change http service to listen on all interfaces
2025-10-19 20:44:04 +11:00
4 changed files with 12 additions and 4 deletions

View File

@ -1 +1 @@
1 2

View File

@ -23,7 +23,7 @@ bind = ["127.0.0.1:143"]
protocol = "imap" protocol = "imap"
[server.listener.http] [server.listener.http]
bind = ["127.0.0.1:8080"] bind = ["[::]:8080"]
protocol = "http" protocol = "http"
[storage] [storage]
@ -44,6 +44,10 @@ path = "/var/lib/stalwart/blobs"
[directory."internal"] [directory."internal"]
type = "internal" type = "internal"
store = "foundationdb" store = "foundationdb"
[authentication.fallback-admin]
user = "admin"
secret = "$6$PAEtTGE/jbt9B/FQ$lYXn/whSh7rzegMdA6W8vuw2E/3IDFjpb0edXRqrl1d8i2KQF6Qm.ESmZ3j5jIHCTPSIH3JYBvIgvIbk9sH3p1"
EOF EOF
chown stalwart:stalwart /opt/stalwart/etc/config.toml chown stalwart:stalwart /opt/stalwart/etc/config.toml

View File

@ -1 +1 @@
1 2

View File

@ -23,7 +23,7 @@ bind = ["127.0.0.1:143"]
protocol = "imap" protocol = "imap"
[server.listener.http] [server.listener.http]
bind = ["127.0.0.1:8080"] bind = ["[::]:8080"]
protocol = "http" protocol = "http"
[storage] [storage]
@ -44,6 +44,10 @@ path = "/var/lib/stalwart/blobs"
[directory."internal"] [directory."internal"]
type = "internal" type = "internal"
store = "sqlite" store = "sqlite"
[authentication.fallback-admin]
user = "admin"
secret = "$6$PAEtTGE/jbt9B/FQ$lYXn/whSh7rzegMdA6W8vuw2E/3IDFjpb0edXRqrl1d8i2KQF6Qm.ESmZ3j5jIHCTPSIH3JYBvIgvIbk9sH3p1"
EOF EOF
chown stalwart:stalwart /opt/stalwart/etc/config.toml chown stalwart:stalwart /opt/stalwart/etc/config.toml