1
0
mirror of https://github.com/jhillyerd/inbucket.git synced 2026-09-14 07:38:51 +00:00

storage: Store addresses as mail.Address for #69

This commit is contained in:
James Hillyerd
2018-03-11 16:56:09 -07:00
parent 487e491d6f
commit 3bc66d2788
9 changed files with 49 additions and 33 deletions
+2 -2
View File
@@ -36,8 +36,8 @@ type Store interface {
type StoreMessage interface {
Mailbox() string
ID() string
From() string
To() []string
From() *mail.Address
To() []*mail.Address
Date() time.Time
Subject() string
RawReader() (reader io.ReadCloser, err error)