Nowadays, most email servers require TLS 1.2 encryption for secure connection. If your legacy email application doesn’t support TLS 1.2, it cannot connect to the email server.
For developers, you can add new codes to support TLS 1.2. 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 email server without changing any codes.
"EA Oauth Service"
on your machine."EA Oauth Service Manager"
.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 by plain TCP or legacy SSL/TLS, it connects the remote server by TLS 1.2."EA Oauth Service"
transfers data between the email application and remote server under SSL/TLS encryption.You just need to change the server address in the email application, then the application can connect the remote server 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
:
After you create the local user, 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
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 the remote server
by same user and password, and transfer data back to the application under SSL/TLS encryption.
Now the email application can send and retrieve email from the remote server even it doesn’t support TLS 1.2.
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 user = "test@emailarchitect.com";
mailMessage.From = new MailAddress(user);
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(user, "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 the email application cannot connect local SMTP/POP/IMAP serivce, 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.