From 5f7caae62c6a33845be6e2202d054b5ebfb33dca Mon Sep 17 00:00:00 2001 From: "C. McEnroe" Date: Thu, 9 Apr 2020 20:51:44 -0400 Subject: Use replyTo for mailto URL --- html.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/html.c b/html.c index 3ebf9c3..9067450 100644 --- a/html.c +++ b/html.c @@ -41,8 +41,8 @@ static const char *Envelope = TEMPLATE( int htmlEnvelope(FILE *file, const struct Envelope *envelope) { struct Variable mailtoVars[] = { - { "mailbox", envelope->from.mailbox }, - { "host", envelope->from.host }, + { "mailbox", envelope->replyTo.mailbox }, + { "host", envelope->replyTo.host }, { "re", (strncmp(envelope->subject, "Re: ", 4) ? "Re: " : "") }, { "subject", envelope->subject }, { "messageID", envelope->messageID }, -- cgit 1.4.1