+1 vote

Hello,

when I disable "Access for less secure apps" on this page: https://www.google.com/settings/u/1/security/lesssecureapps , then I can no longer use Mail.dll to connect to my Gmail account. An exception is thrown:

[ALERT] Please log in via your web browser: http://support.google.com/mail/accounts/bin/answer.py?answer=78754 (Failure)

When I enable that access, I can successfully log in to Gmail.

I use SSL: ImapConnection.ConnectSSL() and then ImapConnection.UseBestLogin()

I have no idea what exactly they mean by "less secure apps"

related to an answer for: Gmail "less secure apps" setting and IMAP
by

1 Answer

0 votes
 
Best answer

This setting affects IMAP access (even with SSL/TLS turned on). Using login methods, that require a knowledge about user's password (e.g. Login, UseBestLogin) fails, when this setting is off.

Mail.dll uses IMAP over SSL/TLS to access Gmail. This is secure and safe way of accessing an email server. It relies on .NET framework security model.
Workarounds:

Google support page you pointed to doesn't make much sense. It doesn't say what do they mean by 'less secure' exactly? What makes Microsoft Outlook and Mozilla Thunderbird 'less secure'? Which versions? 'Less secure' than what?

It seems it is not an issue of whether or not client application is implementing the latest version of SSL/TLS etc., Google simply tries to limit places that store users' passwords.

by (297k points)
edited by
...