On Apr 10, 2015, at 12:14 AM, Steffen Kaiser <skdovecot at smail.inf.fh-brs.de> wrote:> pass"word > > is no atom and Dovecot should reject it.No, not passwords should be rejected.> Maybe the former version did not checked the atoms 100% RFC conform.Where is the definition that passwords have to be atomic? And if it is there, it should be changed. Nothing anywhere at anytime should care about the contents of a password once it passes basic ?not password of monkey? complexity checks. -- "You see, in this world there's two kinds of people, my friend: Those with loaded guns and those who dig. You dig."
So happy I found this discussion. I spent a day on figuring out an issue with login into IMAP. It turned out that the { character in my password was the problem. Grrr... The strange thing that I could successfully configure my IMAP connection my Outlook client. Only when I try to connect programmatically by using an ImapClient component (I tried several), then it fails by throwing that BAD invalid characters message. So I wonder how I can make the login succeed WITHOUT changing my password.... -- Sent from: http://dovecot.2317879.n4.nabble.com/
> On 31/07/2020 11:56 janvv <jan at van-veldhuizen.nl> wrote: > > > So happy I found this discussion. > I spent a day on figuring out an issue with login into IMAP. > It turned out that the { character in my password was the problem. Grrr... > > The strange thing that I could successfully configure my IMAP connection my > Outlook client. Only when I try to connect programmatically by using an > ImapClient component (I tried several), then it fails by throwing that BAD > invalid characters message. > > So I wonder how I can make the login succeed WITHOUT changing my > password.... > > > > -- > Sent from: http://dovecot.2317879.n4.nabble.com/Use AUTHENTICATE PLAIN <base64 of: \0username\0password> e.g. 01 AUTHENTICATE PLAIN AHVzZXJuYW1lAHBhc3N3b3Jk Aki