From 06564b6a5cd9f42d59d59ce7172fbc8e1be1cebb Mon Sep 17 00:00:00 2001 From: Vosjedev Date: Sun, 2 Nov 2025 18:08:38 +0100 Subject: README.md: IMAP_PASS, not IMAP_PASSWD. same for SMTP_PASS. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d99b0aa..1cae78b 100644 --- a/README.md +++ b/README.md @@ -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. -- cgit