summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xmaildaemon.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/maildaemon.php b/maildaemon.php
index 334877ccb..24f590189 100755
--- a/maildaemon.php
+++ b/maildaemon.php
@@ -205,11 +205,11 @@ class MailerDaemon {
{
break;
}
- $output .= $line;
+ $output .= ' ' . $line;
}
preg_replace('/\s+/', ' ', $output);
- return $output;
+ return trim($output);
}
}