Actions
Bug #17475
closedforceReturnPath in class.t3lib_htmlmail ignored
Start date:
2007-07-16
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
4.1
PHP Version:
5.2
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
If you set forceReturnPath in localconf.php
$TYPO3_CONF_VARS['SYS']['forceReturnPath'] = 'foo@bar.org';
it has no influence to the Return-Path-Header in the mail.
Only the class variable forceReturnPath is set but never used. It is always returnPath used. I added an line (see diff-file) to solve this issue.
(issue imported from #M5978)
Files
Updated by Martin Kutschker over 17 years ago
$TYPO3_CONF_VARS['SYS']['forceReturnPath'] is a switch. If set the return path may be forced (re-read the code!).
But it will use $this->returnPath as return path which must be set programmatically by the calling function. This means you may set it as extension developer, but not as a site admin.
Updated by Daniel Chabrol over 17 years ago
Oops thanks for your hint and clarifying this!
Actions