Patches applied:
* opensource@polytechnique.org--2005/platal--release--0.9.4--patch-17
make falco happy : [NewsLetter] retpath ---> setting for return path
git-archimport-id: opensource@polytechnique.org--2005/platal--mainline--0.9--patch-430
{
var $from = "Lettre Mensuelle <null@example.org>";
var $replyto = "";
+ var $retpath = "";
}
// }}}
if (!empty($globals->newsletter->replyto)) {
$mailer->addHeader('Reply-To',$globals->newsletter->replyto);
}
+ if (!empty($globals->newsletter->retpath)) {
+ $mailer->addHeader('Return-Path',$globals->newsletter->retpath);
+ }
$mailer->setTxtBody($this->toText($prenom,$nom,$sex));
if ($html) {
$mailer->setHTMLBody($this->toHtml($prenom,$nom,$sex,true));