Removed old sendmail_wrapper.php script

This commit is contained in:
Daniel Winzen
2020-01-07 19:43:30 +01:00
parent b09aa25d88
commit 9ba305da60
2 changed files with 1 additions and 13 deletions

View File

@ -1,12 +0,0 @@
<?php
$head=true;
while($line=fgets(STDIN)){
if($head && stripos(ltrim($line), 'FROM')===0){
continue;
}
if($head && ($line==="\r\n" || $line==="\n")){
$head=false;
echo "From: $argv[1]\r\n";
}
echo $line;
}