diff options
author | Rob Funk <rfunk@funknet.net> | 2004-07-21 17:05:58 +0000 |
---|---|---|
committer | Rob Funk <rfunk@funknet.net> | 2004-07-21 17:05:58 +0000 |
commit | 8697f0ab99257fde99c3fc560b3a1cdb10e49f2b (patch) | |
tree | ce29a6021fb023986ef5d8230f2981852671522a /sink.c | |
parent | 6c554f0224fdbb205e3ed245485af3e3d91648d3 (diff) | |
download | fetchmail-8697f0ab99257fde99c3fc560b3a1cdb10e49f2b.tar.gz fetchmail-8697f0ab99257fde99c3fc560b3a1cdb10e49f2b.tar.bz2 fetchmail-8697f0ab99257fde99c3fc560b3a1cdb10e49f2b.zip |
Remove space after "MAIL FROM:" (patch from Phil Endecott)
svn path=/trunk/; revision=3925
Diffstat (limited to 'sink.c')
-rw-r--r-- | sink.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -721,7 +721,7 @@ static int open_bsmtp_sink(struct query *ctl, struct msgblk *msg, /* see the ap computation under the SMTP branch */ fprintf(sinkfp, - "MAIL FROM: %s", (msg->return_path[0]) ? msg->return_path : user); + "MAIL FROM:%s", (msg->return_path[0]) ? msg->return_path : user); if (ctl->pass8bits || (ctl->mimemsg & MSG_IS_8BIT)) fputs(" BODY=8BITMIME", sinkfp); |