Actions
Bug #14759
closedSet Errors-To header to value of Return-Path
Start date:
2005-05-27
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
3.8.0-dev
PHP Version:
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
Postfix uses Errors-To instead of Return-Path, so this header should be set to the value of the Return-Path header.
see t3lib_htmlmail->setHeaders():
if ($this->returnPath) {
$this->add_header("Return-Path: ".$this->returnPath);
$this->add_header("Errors-To: ".$this->returnPath);
}
(issue imported from #M1114)
Updated by Christian Kuhn over 15 years ago
Resolved as duplicate of #14817
The proposed solution has been commited with revision 775 on 2005-07-06: "Fixed bug 1197, and added a new header to the email: Errors-To."
Actions