What shall we do with this? I looked at fixing it in NGinx, but that's complicated.
commit 7d2a2d135e31ad2956314eb9487543a8274e0ebb Author: Stephen R. van den Berg <[email protected]> Date: Tue Dec 8 08:55:40 2015 +0100 Compatibility fix to NGinx diff --git a/imap/imap.cpp b/imap/imap.cpp index 700f746..b515331 100644 --- a/imap/imap.cpp +++ b/imap/imap.cpp @@ -775,9 +775,11 @@ static const char * clientBugMessages[IMAP::NumClientBugs] = { void IMAP::setClientBug( ClientBug bug ) { d->clientBugs[bug] = true; +#if 0 /* NGinx does not like this */ (void)new ImapResponse( this, EString( "OK Activating workaround for: " ) + clientBugMessages[bug] ); +#endif } -- Stephen.
