Because Gmail and Google Workspace have disabled basic authentication in SMTP/POP/IMAP services, if you have a legacy email application that doesn’t support modern authentication (OAUTH), then you cannot use it to send and retrieve email from Gmail and Google Workspace account anymore.
For developers, you can add new codes to support OAUTH. However, if your code is too complex or out of
maintenance, and you don’t want to change anything in your source codes, then EA Oauth Service
can help the
application to implement OAUTH.
This tutorial gives you a quick overview of how to use EA Oauth Service
which can help the legacy email application to
connect Gmail and Google Workspace without changing any codes.
"EA Oauth Service"
on your machine."EA Oauth Service Manager"
, and add a mapped Gmail or Google Workspace user access token.localhost
, and use local user and password in your application to login local SMTP/POP/IMAP services."EA Oauth Service"
accepts the connection from local user, it connects Gmail server by the associated access token in background."EA Oauth Service"
transfers data between the email application and Gmail server under SSL/TLS encryption."EA Oauth Service"
automatically.You just need to change the server address, user and password in the email application, then the application can connect Gmail/Google Workspace without changing other things.
You can download EA Oauth Service Installer and install it on your machine.
Double click the installer file and the installation will be executed automatically. The installer requires .NET framework 4.5 or later version to be installed. If no corresponding .NET framework is detected in your operating system, Setup will be aborted.
After the installation is completed, click “EA Oauth Service Manager” from Windows
Start menu
-> All Programs
-> “EA Oauth Service”
to begin the setup.
Note
Installation Permission
An account with Administrative Privileges is required to run the installer for installing “EA Oauth Service” on the machine.
After EA Oauth Service is installed, it provides SMTP/POP/IMAP services on the local machine. You can open
EA Oauth Service Manager
-> Services
to check the service status.
By default, the following inbound ports is used:
Note
If the service is failed to start, it is likely that other application on the machine used the port, you should change the listening port and start the service again.
Now you need to create a local user in EA Oauth Service Manager
-> Users
:
Now you need to add a mapped Gmail/Google Workspace email account access token. There are two options:
With this option, you need to create a project and OAUTH client in Google Developer Console. This option can work with both Gmail personal account and Google Workspace account.
Please click the following link to learn how to create the project and OAUTH client in Google Developer Console:
Create project and OAUTH client in Google Developer Console
After you input the created client id, client secret, then click Save
,
Then you will be asked to login your Gmail/Google Workspace account by web browser.
Please have the following option checked, by default it is not checked due to Google security policy.
After the access token is retrieved successfully, you can see the token creation time and expiration time.
Note
It requires you re-login the Gmail/Google Workspace account before the refresh token is expired (about every 3 months).
With this option, you need to create a project and service account in Google Developer Console.
This option only works with Google Workspace account, personal Gmail acount is not supported.
Please click the following link to learn how to create the project and service account in Google Developer Console:
Create project and service account in Google Developer Console
After you input the service account (you can import the json file by clicking Service Account), private key id, private key and the mappded Gmail/Google Workspace email address, then click Save
,
a new access token will be retrieved automatically.
Note
You don’t have to re-login the Google Workspace account until the client secret is expired. The maximum lifetime of client secret value is 24 months.
After you create the local user and get the associated access token, the next step is changing your server settings in the application.
Use the following server address and port in the email application:
Protocol | Server Address | Port | Encryption |
SMTP | localhost | 25 | None/STARTTLS/Auto |
SMTP | localhost | 465 | SSL/TLS |
POP | localhost | 110 | None/STARTTLS/Auto |
POP | localhost | 995 | SSL/TLS |
IMAP | localhost | 143 | None/STARTTLS/Auto |
IMAP | localhost | 993 | SSL/TLS |
Here is the example setting in Outlook:
Then use the local user
and local password
(not your Gmail/Google Workspace password) for user authentication in the email application.
After the application connects local SMTP/POP/IMAP service successfully provided by EA Oauth Service
, the service will connect Gmail server
by associated access token, and transfer data back to the application under SSL/TLS encryption.
Now the email application can send and retrieve email from Gmail/Google Workspace even it doesn’t support OAUTH.
Here is an example code for sending email using System.NET.Mail with OAUTH service:
using System;
using System.Net.Mail;
public static void SendEmail()
{
var mailMessage = new MailMessage();
// local user
string office365OrGmailAddress = "test@o365orgmail.com";
mailMessage.From = new MailAddress(office365OrGmailAddress);
mailMessage.To.Add(new MailAddress("support@emailarchitect.net"));
mailMessage.Subject = "Test from Oauth Service";
mailMessage.IsBodyHtml = false;
mailMessage.Body = "This is a test";
var basicCredential = new System.Net.NetworkCredential(office365OrGmailAddress, "local password");
var smtp = new SmtpClient("localhost");
smtp.Port = 25;
smtp.DeliveryFormat = SmtpDeliveryFormat.International;
smtp.EnableSsl = true;
smtp.DeliveryMethod = SmtpDeliveryMethod.Network;
smtp.UseDefaultCredentials = false;
smtp.Credentials = basicCredential;
smtp.Send(mailMessage);
}
The legacy email application also can access the SMTP/POP/IMAP service from a remote machine.
EA Oauth Service
installed a self-signed certificate for SSL/TLS connection, the certificate is issued to localhost.
If the application accesses the service from a remote machine, a certificate error will be reported.
You can use other SSL certificate by selecting certificate from EA Oauth Service Manager
-> SMTP/POP/IMAP service
-> Ssl Certificate
.
If you get error about “Authentication”:
EA Oauth Service Manager
-> Users -> Check if there is any token error.If there is token error, edit this user and try to:
If the email application cannot connect local SMTP/POP/IMAP service, you can enable full debug log like this:
EA Oauth Service Manager
-> Journal
-> change Log Level
to Full Debug
.Please check if EAOauth Service
is running from Administrative Tools -> Services, if this service is not running, start it.
EAOauth background service can be restarted from Administrative Tools -> Services or use the following cmdlet in PowerShell:
Restart-Service "EAOauthSvc"
Not enough? Please contact our technical support team.
Remarks
We usually reply emails within 24hours. The reason for getting no response is likely that your SMTP server bounced our reply. In this case, please try to use another email address to contact us. Your Gmail, Hotmail or Office 365 email account is recommended.