without delivering the message anywhere. so to /dev/null is unnecessary
$res = " if(! /^X-Philter-Autoreply: $uid$/)\n" # TODO : et ne vient pas da démon
. " {\n"
- . " to \"| reformail -rt -A'X-Philter-Autoreply: $uid' \\\n"
+ . " cc \"| reformail -rt -A'X-Philter-Autoreply: $uid' \\\n"
. " | ( cat - ; echo '' ; \\\n";
foreach($text as $line)
$res .= " echo ".escapeshellarg(chop($line))."; \\\n";
$res .= $philter->config['action_plugins'][$action[0]]->to_string($action);
if($this->block)
- $res .= " to /dev/null\n"
- . " exit\n";
+ $res .= " exit\n";
return $res."}\n\n";
}