diff options
| author | Sam Varshavchik | 2022-03-03 21:46:12 -0500 |
|---|---|---|
| committer | Sam Varshavchik | 2022-03-03 21:46:12 -0500 |
| commit | 4c4693e3497b7723446d360a04522de9cee8b063 (patch) | |
| tree | 684a615c5711cc117691ff1bbfc4a03d4ae60924 | |
| parent | 12836a6b6fa2466054991ab9946cfeb9637e3cc1 (diff) | |
| download | courier-libs-4c4693e3497b7723446d360a04522de9cee8b063.tar.bz2 | |
Fix broken IMAP SASL authentication
| -rw-r--r-- | imap/ChangeLog | 4 | ||||
| -rw-r--r-- | imap/authenticate_auth.c | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/imap/ChangeLog b/imap/ChangeLog index 687ce8e..b2c7d20 100644 --- a/imap/ChangeLog +++ b/imap/ChangeLog @@ -1,3 +1,7 @@ +2022-03-03 Sam Varshavchik <mrsam@courier-mta.com> + + * imap/authenticate_auth.c: Fix broken SASL authentication. + 2022-01-23 Sam Varshavchik <mrsam@courier-mta.com> * Adjust behavior of inherited ACLs. After deleting and recreating diff --git a/imap/authenticate_auth.c b/imap/authenticate_auth.c index 60334e9..41249e6 100644 --- a/imap/authenticate_auth.c +++ b/imap/authenticate_auth.c @@ -102,6 +102,7 @@ int rc; switch (tok->tokentype) { case IT_ATOM: case IT_NUMBER: + case IT_QUOTED_STRING: break; default: return (0); |
