Actions
Bug #41375
closedSwift Mail Adapter fails to handle additional Paramters
Status:
Closed
Priority:
Must have
Assignee:
-
Category:
-
Target version:
-
Start date:
2012-09-26
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
4.5
PHP Version:
Tags:
Complexity:
Is Regression:
No
Sprint Focus:
Description
t3lib_mail_SwiftMailerAdapter -> mail:
the $additionalParameters Parameter used to extract a potential return path.
This is done by the following regular expression:
/-f\s*(\S*?)/
But the subpattern returns an empty string, due to the nongreedy operator, if it matches.
This expression should be:
/-f\s*(\S*)/.
Actions