From: Tim Vaughan Date: Thu, 5 Sep 2019 06:55:39 +0000 (+0200) Subject: Fixed another "received:" mistake. X-Git-Url: https://thelambdalab.xyz/gitweb/index.cgi?p=lambdamail.git;a=commitdiff_plain;h=d31b138361c915a5e13c4a38064b37db19fd2df3 Fixed another "received:" mistake. Omg. --- diff --git a/lambdamail.scm b/lambdamail.scm index 6061d3e..6a4d608 100644 --- a/lambdamail.scm +++ b/lambdamail.scm @@ -141,7 +141,7 @@ (smtp-session 'send "354 intermediate") (let text-loop ((text (conc "Received: from " (smtp-session 'helo) "\n" "\tby " (config-host config) "\n" - "\tfor " (message-from msg) ";\n" + "\tfor " (message-to msg) ";\n" "\t" (time-stamp) "\n"))) (let ((text-line (smtp-session 'get-line))) (if (string=? "." text-line)