summary refs log tree commit diff stats
path: root/models
diff options
context:
space:
mode:
Diffstat (limited to 'models')
-rw-r--r--models/models.go9
1 files changed, 5 insertions, 4 deletions
diff --git a/models/models.go b/models/models.go
index bfe0ff3..45f3b9d 100644
--- a/models/models.go
+++ b/models/models.go
@@ -134,8 +134,9 @@ type Envelope struct {
 
 // OriginalMail is helper struct used for reply/forward
 type OriginalMail struct {
-	Date     time.Time
-	From     string
-	Text     string
-	MIMEType string
+	Date          time.Time
+	From          string
+	Text          string
+	MIMEType      string
+	RFC822Headers *mail.Header
 }