diff options
-rw-r--r-- | templates/forward_as_body | 4 | ||||
-rw-r--r-- | templates/new_message | 4 | ||||
-rw-r--r-- | templates/quoted_reply | 4 |
3 files changed, 9 insertions, 3 deletions
diff --git a/templates/forward_as_body b/templates/forward_as_body index b29c3976..5155fab2 100644 --- a/templates/forward_as_body +++ b/templates/forward_as_body @@ -2,5 +2,7 @@ X-Mailer: aerc {{version}} Forwarded message from {{(index .OriginalFrom 0).Name}} on {{dateFormat .OriginalDate "Mon Jan 2, 2006 at 3:04 PM"}}: {{.OriginalText}} +{{- with .Signature }} -{{.Signature}} +{{.}} +{{- end }} diff --git a/templates/new_message b/templates/new_message index 34f80bc0..270f6d44 100644 --- a/templates/new_message +++ b/templates/new_message @@ -1,3 +1,5 @@ X-Mailer: aerc {{version}} +{{- with .Signature }} -{{.Signature}} +{{.}} +{{- end }} diff --git a/templates/quoted_reply b/templates/quoted_reply index 147a4fa5..c08a44d8 100644 --- a/templates/quoted_reply +++ b/templates/quoted_reply @@ -2,5 +2,7 @@ X-Mailer: aerc {{version}} On {{dateFormat (.OriginalDate | toLocal) "Mon Jan 2, 2006 at 3:04 PM MST"}}, {{(index .OriginalFrom 0).Name}} wrote: {{trimSignature .OriginalText | quote}} +{{- with .Signature }} -{{.Signature}} +{{.}} +{{- end }} |