From 152033f5b443e151a997a62a097e37d3a4efba25 Mon Sep 17 00:00:00 2001
From: Bob Vincent <bobvin@pillars.net>
Date: Fri, 22 Apr 2011 12:51:11 -0400
Subject: [PATCH] Issue #1057954 by andrewechidna, bfroehle: There should be no space between the "-f" flag and the return-path address.

---
 modules/system/system.mail.inc |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/modules/system/system.mail.inc b/modules/system/system.mail.inc
index ef50642c55a9db8c36ceb9a976f5f0d78096a3fc..d57bfe726f3f45288439a15df734fcbc25f73255 100644
--- a/modules/system/system.mail.inc
+++ b/modules/system/system.mail.inc
@@ -72,7 +72,7 @@ class DefaultMailSystem implements MailSystemInterface {
         $mail_body,
         $mail_headers,
         // Pass the Return-Path via sendmail's -f command.
-        '-f ' . $message['Return-Path']
+        '-f' . $message['Return-Path']
       );
     }
     else {
-- 
1.7.1

