diff options
| author | Vosjedev <vosje@vosjedev.net> | 2025-11-02 18:08:38 +0100 |
|---|---|---|
| committer | Vosjedev <vosje@vosjedev.net> | 2025-11-02 18:08:38 +0100 |
| commit | 06564b6a5cd9f42d59d59ce7172fbc8e1be1cebb (patch) | |
| tree | fe7ba0778e2007720e04265ad7c5956c29c64b32 | |
| parent | 79d561e88d0be8d625a8535c9538f15c245080d7 (diff) | |
| download | acit-06564b6a5cd9f42d59d59ce7172fbc8e1be1cebb.tar.gz acit-06564b6a5cd9f42d59d59ce7172fbc8e1be1cebb.tar.bz2 acit-06564b6a5cd9f42d59d59ce7172fbc8e1be1cebb.tar.xz | |
README.md: IMAP_PASS, not IMAP_PASSWD. same for SMTP_PASS.
| -rw-r--r-- | README.md | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -19,7 +19,7 @@ To configure acit, use environment variables. Here's an overview of them, includ # ---------- # set this to the IMAP login values of your email server ACIT_IMAP_USER="bugs@example.com" - ACIT_IMAP_PASSWD="SuperSecurePassword" + ACIT_IMAP_PASS="SuperSecurePassword" ACIT_IMAP_SERVER="mail.example.com" ACIT_IMAP_PORT=993 # note we only support IMAP with Implicit TLS. @@ -32,7 +32,7 @@ To configure acit, use environment variables. Here's an overview of them, includ # ---------- # set this to the SMTP login values of your email server ACIT_SMTP_USER="bugs@example.com" - ACIT_SMTP_PASSWD="SuperSecurePassword" + ACIT_SMTP_PASS="SuperSecurePassword" ACIT_SMTP_SERVER="mail.example.com" ACIT_SMTP_PORT=0 # SMTP port to connect to. If set to 0, uses port 465 # note only SMTP using Implicit TLS is supported. |
