test edit

This commit is contained in:
Erik Winter 2022-09-27 08:42:36 +02:00
parent f4e7838564
commit aee6f6f70b
1 changed files with 14 additions and 15 deletions

View File

@ -14,18 +14,17 @@ In the past it has run as a systemd service, but now there is a simple Docker co
The Dockerfile is configured with the following environment variables:
* `IMAP_URL` IMAP hostname including port number, for instance: `imap.example.com:993`
* `IMAP_USER`
* `IMAP_PASSWORD`
* `IMAP_FOLDER_PREFIX` To be used if combined with a normal email account, see https://ewintr.nl/gte/basic-flow/[basic flow], for instance `GTE/`
* `SMTP_URL` SMTP hostname, including port number, for instance: `smtp.example.com:465`
* `SMTP_USER`
* `SMTP_PASSWORD`
* `GTE_TO_NAME` Name of recipient when sending mails for tasks, for instance `gte`
* `GTE_TO_ADDRESS` Address of recipient when sending mails for tasks, for instance: `gte@example.com`
* `GTE_FROM_NAME` Name of sender when sending mails for tasks, fot instance: `gte`
* `GTE_FROM_ADDRESS` Address of recipient when sending mails for tasks, for instance: `gte@example.com`
* `GTE_DAYS_AHEAD` Number of days in the future for which recurring tasks must be instantiated, for example: `6`
----
IMAP_URL # IMAP hostname including port number, for instance: imap.example.com:993
IMAP_USER
IMAP_PASSWORD
IMAP_FOLDER_PREFIX # To be used if combined with a normal email account, for instance: GTE/
SMTP_URL # SMTP hostname, including port number, for instance: smtp.example.com:465
SMTP_USER
SMTP_PASSWORD
GTE_TO_NAME # Name of recipient when sending mails for tasks, for instance: gte
GTE_TO_ADDRESS # Address of recipient when sending mails for tasks, for instance: gte@example.com
GTE_FROM_NAME # Name of sender when sending mails for tasks, fot instance: gte
GTE_FROM_ADDRESS # Address of recipient when sending mails for tasks, for instance: gte@example.com
GTE_DAYS_AHEAD # Number of days in the future for which recurring tasks must be instantiated, for example: 6
----