summaryrefslogtreecommitdiff
path: root/models
diff options
context:
space:
mode:
authorReto Brunner <reto@labrat.space>2020-11-03 07:39:36 +0100
committerReto Brunner <reto@labrat.space>2020-11-14 15:40:13 +0100
commit3ad3a5ede07c1248ae8176bdc19a623731c64056 (patch)
tree08a847d6f398c09f789dd0a9b587c21ada8f8c17 /models
parente7d450c61df85b16917444fc2c6ea6c11e3c5b44 (diff)
downloadaerc-3ad3a5ede07c1248ae8176bdc19a623731c64056.zip
models: add RFC822 headers to OriginalMail
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
}