diff options
| -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); | 
