forked from coop-cloud/outline
Compare commits
4 Commits
0.4.0+0.64
...
smtp
Author | SHA1 | Date | |
---|---|---|---|
3c9ea7e608 | |||
08ec0295c5
|
|||
9bc4e9855a
|
|||
0351cf3e80
|
@ -43,10 +43,6 @@ _As of 2022-03-30, this requires `abra` RC version, run `abra upgrade --rc`._
|
|||||||
|
|
||||||
Avoid the use of quotes (`"..."`) as much as possible, the NodeJS scripts flip out for some reason on some vars.
|
Avoid the use of quotes (`"..."`) as much as possible, the NodeJS scripts flip out for some reason on some vars.
|
||||||
|
|
||||||
### Multiple users logging in & generic oauth
|
|
||||||
|
|
||||||
`COMPOSE_FILE="compose.yml:compose.patch.yml"`
|
|
||||||
|
|
||||||
### Deleting a user (e.g. to fix SSO weirdness)
|
### Deleting a user (e.g. to fix SSO weirdness)
|
||||||
|
|
||||||
`abra app cmd YOURAPPNAME db delete_user <username-to-delete> <username-to-replace>`
|
`abra app cmd YOURAPPNAME db delete_user <username-to-delete> <username-to-replace>`
|
||||||
|
14
compose.smtp.yml
Normal file
14
compose.smtp.yml
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
---
|
||||||
|
version: "3.8"
|
||||||
|
|
||||||
|
services:
|
||||||
|
app:
|
||||||
|
environment:
|
||||||
|
- SMTP_HOST
|
||||||
|
- SMTP_PORT
|
||||||
|
- SMTP_USERNAME
|
||||||
|
- SMTP_PASSWORD
|
||||||
|
- SMTP_FROM_EMAIL
|
||||||
|
- SMTP_REPLY_EMAIL
|
||||||
|
- SMTP_SECURE
|
||||||
|
- SMTP_TLS_CIPHERS
|
@ -3,6 +3,7 @@ version: "3.8"
|
|||||||
|
|
||||||
services:
|
services:
|
||||||
app:
|
app:
|
||||||
|
# entrypoint: ['tail', '-f', '/dev/null']
|
||||||
networks:
|
networks:
|
||||||
- backend
|
- backend
|
||||||
- proxy
|
- proxy
|
||||||
@ -17,6 +18,7 @@ services:
|
|||||||
target: /docker-entrypoint.sh
|
target: /docker-entrypoint.sh
|
||||||
mode: 0555
|
mode: 0555
|
||||||
environment:
|
environment:
|
||||||
|
- DEBUG
|
||||||
- AWS_ACCESS_KEY_ID
|
- AWS_ACCESS_KEY_ID
|
||||||
- AWS_REGION
|
- AWS_REGION
|
||||||
- AWS_S3_ACL
|
- AWS_S3_ACL
|
||||||
|
@ -6,7 +6,8 @@ users are enjoying using it.
|
|||||||
|
|
||||||
- Additional login methods have been added e.g. Google (yep...). You now need
|
- Additional login methods have been added e.g. Google (yep...). You now need
|
||||||
to make a choice of which authentication you want to make. This can be done by
|
to make a choice of which authentication you want to make. This can be done by
|
||||||
using the usual `$AUTH_ENABLED=1` environment variable condition.
|
using the usual `$AUTH_ENABLED=1` environment variable condition. See the
|
||||||
|
recipe `.env.sample` for more.
|
||||||
|
|
||||||
- If you were using the generic OpenID Connect authentication method (e.g.
|
- If you were using the generic OpenID Connect authentication method (e.g.
|
||||||
Keycloak, Authentik) then you will now need to use
|
Keycloak, Authentik) then you will now need to use
|
Reference in New Issue
Block a user