From 38c07ded99dfa921c8ce410024b72db98aa6c268 Mon Sep 17 00:00:00 2001 From: tyrolyean Date: Fri, 1 May 2020 02:24:34 +0200 Subject: [PATCH] Again patched attachment message Signed-off-by: tyrolyean --- src/attach.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/attach.c b/src/attach.c index ef9685d..d117b4d 100644 --- a/src/attach.c +++ b/src/attach.c @@ -433,12 +433,12 @@ int replace_files(struct email_t* mail, const char* dirname, bool* created){ static const char* html_filler_pref = "

MAIL ATTACHED

The following attachment of this mail has " "been remotely stored:
\r\n" - "

File %s of Type %s as %s%s

\r\n"; + "

File \"%s of type \"%s\" as %s%s

\r\n"; static const char* text_filler_pref = " --- MAIL ATTACHED ---\r\n The following attachment of this mail has " "been remotely stored:\r\n" - "File %s of Type %s as %s%s\r\n"; + "File \"%s\" of type \"%s\" as %s%s\r\n"; size_t directory_len = strlen(directory); size_t url_len = strlen(url_base);