Google Mail requires OAUTH2 for authentication (for more information : [https://developers.google.com/gmail/imap/imap-smtp]).\\
\\
It requires several steps to configure.\\
You will start at Google API's and Service:\\
[https://console.developers.google.com/projectselector/apis/credentials]\\
\\
Setup Oauth Consent (if was not yet created), make an internal one: \\
\\
[attachments|create_consent.png]\\
\\
Set the support emails, the application domain and save it. 
\\
[attachments|consent_settings_1.png]\\
[attachments|consent_settings_2.png]\\		
\\
Go to the Credentials menu and create new credentials, choose OAuth client ID:
[attachments|create_credentials.png]\\
\\
Choose Web application:
\\
[attachments|credential_config.png]\\
\\
It is required to set up the Authorized Redirect URIs. You can domain (where your CrushFTP is available), or localhost. The URI needs to end with:\\
{{{
?command=register_google_mail_api
}}}\\
\\
After Credentials are created copy the Client ID and Secret.\\ 
\\
Now if your credentials are setup, and your redirect domains are configured, you can use the credentials in CrushFTP to get your google auth token and get access.\\
In the Preferences -> General Settings -> SMTP Settings, at "SMTP Server Username :" input field put the client_id and secret separated with tilda.
Take your google client_id and secret and combine them together with a tilda as separator:\\
{{{
client_id: 725111111110-7kaimtXXXXXXXXXXXXXXXXXXXXX64m4k.apps.googleusercontent.com
secret: fEsXXXXXXXXXXXXXXXXPggg7
}}}
results in:
{{{
725111111110-7kaimtXXXXXXXXXXXXXXXXXXXXX64m4k.apps.googleusercontent.com~fEsXXXXXXXXXXXXXXXXPggg7
}}}\\
\\
That whole long string becomes your smtp user name. Copy and paste it into the "SMTP Server Username :" input field. Then click "Get mail refresh token" to get the "SMTP Server Password".\\
\\
If your domain is not verified you will get a warning message, click on Advanced and proceed further:\\ 
\\
[attachments|not_verified_domain.png]\\
\\
Click on allow:\\
\\
[attachments|allow_form.png]\\
\\
Once it is finished the "SMTP Server Password" input field will be filled with the refresh token.\\
\\
!!"From email address :" is also required. Put your google email address there. It will be used as smtp username for the authentication process.\\
\\
[attachments|smtp_config.png]\\
\\