Sidebar

What client does QIE use to send email?

0 votes
642 views
asked Jun 4, 2019 by ben-s-7515 (12,640 points)
What client does QIE use to send email via the SMTP server?  What type of security protocols does it support?
commented May 11, 2020 by scott-b-8720 (560 points)
Is there a particular way to determine which version of TLS is being used.

1 Answer

0 votes

QIE uses the standard java mail libraries to send email.  These libraries ship with the java runtime and are available for use on any server that has java installed. 

These libraries use STARTTLS for establishing a secure connection.  STARTTLS is different than a regular TLS wrapper connection in that the java client will connect to the SMTP server on the non-secure port (usually 25 or 587), then after the connection is made, the connection is upgraded to a secure connection using the STARTTLS command. 

If the SMTP server does not support the STARTTLS command, then the java client (QIE) will throw an exception that it could not secure the connection to the SMTP server, and the email will not be sent.

More information can be found on STARTTLS's wiki page here.

 

Information on configuring the following popular SMTP servers in QIE can be found in the following articles:

Amazon SES

Google

Yahoo

 

answered Jun 4, 2019 by ben-s-7515 (12,640 points)
...