some more scrubbing
darcs-hash:20080721050508-84dde-5e6d8121b403e9b81f8f46a2f5c7de5908b9593a.gz
This commit is contained in:
parent
2b6ca7b292
commit
9e8ef3bce1
|
@ -199,12 +199,25 @@ class MailerDaemon {
|
||||||
if (preg_match('/^\s*On.*wrote:\s*$/', $line)) {
|
if (preg_match('/^\s*On.*wrote:\s*$/', $line)) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
// probably interesting to someone, not us
|
||||||
|
if (preg_match('/^\s*Sent via/', $line)) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
// skip everything after a sig
|
// skip everything after a sig
|
||||||
if (preg_match('/^\s*--+\s*$/', $line) ||
|
if (preg_match('/^\s*--+\s*$/', $line) ||
|
||||||
preg_match('/^\s*__+\s*$/', $line))
|
preg_match('/^\s*__+\s*$/', $line))
|
||||||
{
|
{
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
// skip everything after Outlook quote
|
||||||
|
if (preg_match('/^\s*-+\s*Original Message\s*-+\s*$/', $line)) {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
// skip everything after weird forward
|
||||||
|
if (preg_match('/^\s*Begin\s+forward/', $line)) {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
$output .= ' ' . $line;
|
$output .= ' ' . $line;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user