Issues
- Mail-server details are stored (plain-text) inside each mail-task, making it impossible to change smtp settings for unsent mailsLDEV-1905
- lsParseDateTime() produces different results in Lucee vs ACFLDEV-1653
- parseDateTime() can't parse a valid string when using a patternLDEV-1652Resolved issue: LDEV-1652Michael Offner
- RamCache grows without limits, eventually filling the heapLDEV-1643Resolved issue: LDEV-1643Michael Offner
- Java heap memory exhaustion, pegged CPU, and unresponsive serverLDEV-1640Resolved issue: LDEV-1640Igal Sapir
- cfc extend a non existed cfcLDEV-1614Michael Offner
- Scheduler executes root Application.cfm instead of current folder's Application.cfmLDEV-1588Resolved issue: LDEV-1588Pothys - MitrahSoft
- Lucee 5/Tomcat fails to deploy more than one hostLDEV-1581
- cffile - mimetype of MS Office files incorrect in 5.2.2.71+LDEV-1549Resolved issue: LDEV-1549Michael Offner
- getFileInfo reports the wrong file sizeLDEV-1533Resolved issue: LDEV-1533Igal Sapir
- Elvis Operator fails with result from FunctionLDEV-1522Michael Offner
- Dumping getComponentStaticScope() of component with remote static function causes java.lang.NullPointerExceptionLDEV-1513Resolved issue: LDEV-1513Pothys - MitrahSoft
- GetHTTPRequestData() can take an argument in ACF; argument causes error in Lucee 5LDEV-1481Resolved issue: LDEV-1481Michael Offner
- SQL Server driver versionLDEV-1465Pothys - MitrahSoft
- Memory leak?LDEV-1457Resolved issue: LDEV-1457Pothys - MitrahSoft
- Missing hibernate.extension-3.5.5.65.jarLDEV-1456Resolved issue: LDEV-1456
- queryExecute try/catch changes output within cfimported tagsLDEV-1449Michael Offner
- datasource connections not reliably returned to connection poolLDEV-1447Michael Offner
- serializejson(QUERY, 'struct') - Can't cast String [struct] to a booleanLDEV-1446Resolved issue: LDEV-1446Pothys - MitrahSoft
- connectionLimit is not set to default (-1) via AdminAPI <CFADMIN>LDEV-1445Resolved issue: LDEV-1445Pothys - MitrahSoft
- java.lang.NullPointerException ErrorLDEV-1444Resolved issue: LDEV-1444Michael Offner
- Scope.log Errors NonstopLDEV-1443Resolved issue: LDEV-1443
22 of 22
Mail-server details are stored (plain-text) inside each mail-task, making it impossible to change smtp settings for unsent mails
Description
Details
Assignee
UnassignedUnassignedReporter
Paul KlinkenbergPaul KlinkenbergNew Issue warning screen
Before you create a new Issue, please post to the mailing list first https://dev.lucee.org
Once the issue has been verified, one of the Lucee team will ask you to file an issue
Affects versions
Priority
New
Details
Details
Assignee
Unassigned
UnassignedReporter
Paul Klinkenberg
Paul KlinkenbergNew Issue warning screen
Before you create a new Issue, please post to the mailing list first https://dev.lucee.org
Once the issue has been verified, one of the Lucee team will ask you to file an issue
Affects versions
Priority
Created 2 July 2018 at 09:43
Updated 14 May 2020 at 08:34
Activity
Show:
When a mail is sent with cfmail, internally a mail task is created. This task is written as a .tsk file in {web-config}/remote-client/open/00012345.tsk
Inside the .tsk file, the smtp details of the configured mailserver are stored.
There are 2 things wrong with that:
1. the smtp password is stored as plain text
2. the task will never notice a change in configured mailserver settings.
The real-life problem here, is trying to fix wrong mailserver settings on a Lucee server (e.g. changed or wrong password or username)
Even after changing the mailserver settings, and then retrying the mail tasks, they will continue to give an error. Logical, once you find out the mailserver settings are stored within each .tsk file, but untill then, totally confusing and frustrating.
So, my suggestion is, to not save smtp details inb the task files, but instead use the settings given in the lucee administrator.