diff options
Diffstat (limited to 'html.c')
-rw-r--r-- | html.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/html.c b/html.c index 24cdf1a..bbc9662 100644 --- a/html.c +++ b/html.c @@ -81,7 +81,7 @@ static char *htmlReply(const struct Envelope *envelope) { struct Variable vars[] = { { "mailbox", envelope->replyTo.mailbox }, { "host", envelope->replyTo.host }, - { "cc", baseAddress }, + { "cc", baseMailto }, { "re", (strncmp(envelope->subject, "Re: ", 4) ? "Re: " : "") }, { "subject", envelope->subject }, { "messageID", envelope->messageID }, @@ -515,7 +515,7 @@ static int htmlIndexNav(FILE *file) { if (error) return error; } return 0 - || htmlNavItem(file, "write", "mailto:", baseAddress) + || htmlNavItem(file, "write", "mailto:", baseMailto) || templateRender(file, TEMPLATE(</ul></nav>), NULL, NULL); } |