Can someone help me translate a line from this code to C++ Builder:
http://blog.onkeysoft.com/2011/04/20/how-to-prepare-a-connection-to-pop3-server-with-indy-tidpop3/
I was doing good until this line:
POP3Client.SASLMechanisms.Add.SASL := tidsasl(con_sasl_anonymous);
Additional question - is there a "good" order of SASL mechanisms to try out - from most secure to least secure? In other words, what would be a good order of them? I would try with SHA1 first, then MD5 then... something here... and PlainText as last one.