Initial commit

This commit is contained in:
Daniel Winzen
2017-04-30 19:32:42 +02:00
commit e0b35fb943
222 changed files with 8816 additions and 0 deletions

View File

@ -0,0 +1,12 @@
<?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;
}