diff options
author | 2018-04-25 07:48:59 +0000 | |
---|---|---|
committer | 2018-04-25 07:48:59 +0000 | |
commit | 4ddc25d95b61f9fbe50b91599629f3b624b4c653 (patch) | |
tree | b13a290fa480f69f9a8f5ec5229cc9952ca66df3 | |
parent | Fix capitalization of data. Pointed out by jsing and forgotten in (diff) | |
download | wireguard-openbsd-4ddc25d95b61f9fbe50b91599629f3b624b4c653.tar.xz wireguard-openbsd-4ddc25d95b61f9fbe50b91599629f3b624b4c653.zip |
Return-Path should be in brackets as per RFC5322
diff from Leo Gaspard, ok eric@ and I
-rw-r--r-- | usr.sbin/smtpd/mda.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/smtpd/mda.c b/usr.sbin/smtpd/mda.c index ea536eb02ef..9621f621244 100644 --- a/usr.sbin/smtpd/mda.c +++ b/usr.sbin/smtpd/mda.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mda.c,v 1.128 2017/11/21 12:20:34 eric Exp $ */ +/* $OpenBSD: mda.c,v 1.129 2018/04/25 07:48:59 gilles Exp $ */ /* * Copyright (c) 2008 Gilles Chehade <gilles@poolp.org> @@ -261,7 +261,7 @@ mda_imsg(struct mproc *p, struct imsg *imsg) * if any */ n = io_printf(s->io, - "Return-Path: %s\n" + "Return-Path: <%s>\n" "Delivered-To: %s\n", e->sender, e->rcpt ? e->rcpt : e->dest); |