Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Deploying Email Approval

Prerequisites

  • A dedicated mailbox for receiving task approval email and the credentials to log on the mailbox.

  • IMAP server host name and port;

Add service in the docker-compose.yaml file

  • Download the emailapproval.yml file

View file
nameemailapproval.yml

  • Open the docker-compose.yml file;

  • Copy the emailapproval service from the emailapproal.yml and insert it at the end of the services section of the docker-compose.yml file. Make sure its indentation is aligned with other services;

  • Save the updated docker-compose.yml file.

Update the .env file

Add the following variables and their value to the .env file:

imap_host=<The IMAP server name>
imap_port=<The IMAP service port>
imap_username=<The mailbox log on user name>
imap_password=<The mailbox log on password>

Restart OneList application

Run the following command to restart OneList:

...