diff options
author | Folker Bernitt <fbernitt@thoughtworks.com> | 2016-01-28 10:45:52 +0100 |
---|---|---|
committer | Folker Bernitt <fbernitt@thoughtworks.com> | 2016-01-28 10:47:02 +0100 |
commit | 36a9354b49062a8eb8c2737d8580f38d17391642 (patch) | |
tree | 843f981b1017babbcd29329043a4d593e4f874d4 /web-ui/app | |
parent | 8f07c10b906b5736a7330ba8eb42af6259e0797a (diff) |
Add original attachments to forwared mails
- Issue #579
Diffstat (limited to 'web-ui/app')
-rw-r--r-- | web-ui/app/js/mail_view/ui/forward_box.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/web-ui/app/js/mail_view/ui/forward_box.js b/web-ui/app/js/mail_view/ui/forward_box.js index 2f848430..a1b8dc41 100644 --- a/web-ui/app/js/mail_view/ui/forward_box.js +++ b/web-ui/app/js/mail_view/ui/forward_box.js @@ -40,6 +40,7 @@ define( this.setupForwardBox = function() { var mail = this.attr.mail; this.attr.subject = fwd(mail.header.subject); + this.attr.attachments = mail.attachments; this.renderInlineCompose('forward-box', { subject: this.attr.subject, |