tracker issue : CF-4200443

select a category, or use search below
(searches all categories and all time range)
Title:

When useSSL="true" and Failto are used in the same CFMAIL then the message is never sent

| View in Tracker

Status/Resolution/Reason: Closed/Withdrawn/CannotReproduce

Reporter/Name(from Bugbase): Anastassios Hadjicrystallis / Anastassios Hadjicrystallis ()

Created: 12/27/2017

Components: Net Protocols, MAIL

Versions: 2016

Failure Type: Non Functioning

Found In Build/Fixed In Build: - /

Priority/Frequency: Normal / All users will encounter

Locale/System: ALL / Windows 7 64-bit

Vote Count: 0

Problem Description:

When in a CFMAIL we use useSSL="true" and Failto="AnEmail" then the message is never sent, without  throwing any error message.

When we remove useSSL (keeping the FailTo) then the message is delivered just fine.

Steps to Reproduce:

<!--- test having FAILTO --->
<cfmail
server="My_SMTP_server"
port="465"
useSSL="true"
useTLS="false"
username="My_User_Name"
password="My_password"
from = "An_Email_Account"
to = "An_Email_Account"
Subject = "Test having failto"
Failto = "An_Email_Account"
type = "html"
charset = "utf-8"
timeout = "60">
<!------>
<html>
<head></head>
<body>
<p>Hello World</p>
</body>
</html>
<!------>
</cfmail>
<!------>


<!--- test NOT having FAILTO --->
<cfmail
server="My_SMTP_server"
port="465"
useSSL="true"
useTLS="false"
username="My_User_Name"
password="My_password"
from = "An_Email_Account"
to = "An_Email_Account"
Subject = "Test NOT having failto"
type = "html"
charset = "utf-8"
timeout = "60">
<!------>
<html>
<head></head>
<body>
<p>Hello World</p>
</body>
</html>
<!------>
</cfmail>
<!------>

Actual Result:
Only the second email is delivered, I mean message having
Subject = "Test NOT having failto"

Expected Result:
Both messages had to be delivered

Any Workarounds:
If we remove
- port
- useSSL
- useTLS
- username
- password

and send the same 2 CFMAIL (not as SSL), then both are delivered.

Attachments:

  1. December 27, 2017 00:00:00: mail_with_SSL.cfm
  2. December 27, 2017 00:00:00: mail_without_SSL.cfm

Comments:

I have not tested it iin case useTLS is used instead of useSSL
Comment by Anastassios H.
153 | December 27, 2017 04:04:05 AM GMT