Merge pull request #1186 from slingamn/loginviapass

enable login-via-pass-command by default
This commit is contained in:
Shivaram Lingamneni 2020-07-09 19:42:30 -07:00 committed by GitHub
commit 640ff77ccd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -336,7 +336,7 @@ accounts:
skip-server-password: false skip-server-password: false
# enable login to accounts via the PASS command, e.g., PASS account:password # enable login to accounts via the PASS command, e.g., PASS account:password
# this is sometimes useful for compatibility with old clients that don't support SASL # this is useful for compatibility with old clients that don't support SASL
login-via-pass-command: false login-via-pass-command: false
# require-sasl controls whether clients are required to have accounts # require-sasl controls whether clients are required to have accounts

View File

@ -362,8 +362,8 @@ accounts:
skip-server-password: false skip-server-password: false
# enable login to accounts via the PASS command, e.g., PASS account:password # enable login to accounts via the PASS command, e.g., PASS account:password
# this is sometimes useful for compatibility with old clients that don't support SASL # this is useful for compatibility with old clients that don't support SASL
login-via-pass-command: false login-via-pass-command: true
# require-sasl controls whether clients are required to have accounts # require-sasl controls whether clients are required to have accounts
# (and sign into them using SASL) to connect to the server # (and sign into them using SASL) to connect to the server