Skip to content

Commit d92a156

Browse files
authored
fix references of imap.sasl.login.password and smpt.sasl.login.password
* Fix config reference in MIGRATION.md * Fix SASL password command sample configuration * fix typo sasl login sample --------- Co-authored-by: Clément DOUIN <soywod@users.noreply.github.com> Refs: #642
1 parent a14389e commit d92a156

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

MIGRATION.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ At IMAP level (same for SMTP):
9797
#
9898
# SASL LOGIN:
9999
imap.sasl.login.username = "login"
100-
imap.sasl.plain.password.raw = "***"
100+
imap.sasl.login.password.raw = "***"
101101
#
102102
# SASL ANONYMOUS:
103103
imap.sasl.anonymous.message = "anon"

config.sample.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ imap.sasl.mechanisms = ["plain", "login"]
5454
# SASL LOGIN
5555
# https://datatracker.ietf.org/doc/html/draft-murchison-sasl-login-00
5656
imap.sasl.login.username = "username"
57-
imap.sasl.plain.password.command = ["mimosa", "password", "read", "example"]
57+
imap.sasl.login.password.command = ["mimosa", "password", "read", "example"]
5858
#imap.sasl.plain.password.raw = "***"
5959

6060
# SASL PLAIN
@@ -94,8 +94,8 @@ smtp.sasl.mechanisms = ["plain", "login"]
9494
# SASL LOGIN
9595
# https://datatracker.ietf.org/doc/html/draft-murchison-sasl-login-00
9696
smtp.sasl.login.username = "username"
97-
smtp.sasl.plain.password.command = ["mimosa", "password", "read", "example"]
98-
#smtp.sasl.plain.password.raw = "***"
97+
smtp.sasl.login.password.command = ["mimosa", "password", "read", "example"]
98+
#smtp.sasl.login.password.raw = "***"
9999

100100
# SASL PLAIN
101101
# https://datatracker.ietf.org/doc/html/rfc4616

0 commit comments

Comments
 (0)