1
0
mirror of https://github.com/jhillyerd/inbucket.git synced 2026-01-08 04:01:55 +00:00

Migrate from pkg go.enmime to enmime

This commit is contained in:
James Hillyerd
2016-11-17 18:35:01 -08:00
parent 145e71dc43
commit 1906a147f0
7 changed files with 19 additions and 19 deletions

View File

@@ -6,7 +6,7 @@ import (
"net/mail"
"time"
"github.com/jhillyerd/go.enmime"
"github.com/jhillyerd/enmime"
)
var (
@@ -41,7 +41,7 @@ type Message interface {
Subject() string
RawReader() (reader io.ReadCloser, err error)
ReadHeader() (msg *mail.Message, err error)
ReadBody() (body *enmime.MIMEBody, err error)
ReadBody() (body *enmime.Envelope, err error)
ReadRaw() (raw *string, err error)
Append(data []byte) error
Close() error

View File

@@ -12,7 +12,7 @@ import (
"sync"
"time"
"github.com/jhillyerd/go.enmime"
"github.com/jhillyerd/enmime"
"github.com/jhillyerd/inbucket/config"
"github.com/jhillyerd/inbucket/log"
)
@@ -385,7 +385,7 @@ func (m *FileMessage) ReadHeader() (msg *mail.Message, err error) {
}
// ReadBody opens the .raw portion of a Message and returns a MIMEBody object
func (m *FileMessage) ReadBody() (body *enmime.MIMEBody, err error) {
func (m *FileMessage) ReadBody() (body *enmime.Envelope, err error) {
file, err := os.Open(m.rawPath())
if err != nil {
return nil, err
@@ -401,7 +401,7 @@ func (m *FileMessage) ReadBody() (body *enmime.MIMEBody, err error) {
if err != nil {
return nil, err
}
mime, err := enmime.ParseMIMEBody(msg)
mime, err := enmime.EnvelopeFromMessage(msg)
if err != nil {
return nil, err
}

View File

@@ -7,7 +7,7 @@ import (
"testing"
"time"
"github.com/jhillyerd/go.enmime"
"github.com/jhillyerd/enmime"
"github.com/stretchr/testify/mock"
)
@@ -146,9 +146,9 @@ func (m *MockMessage) ReadHeader() (msg *mail.Message, err error) {
return args.Get(0).(*mail.Message), args.Error(1)
}
func (m *MockMessage) ReadBody() (body *enmime.MIMEBody, err error) {
func (m *MockMessage) ReadBody() (body *enmime.Envelope, err error) {
args := m.Called()
return args.Get(0).(*enmime.MIMEBody), args.Error(1)
return args.Get(0).(*enmime.Envelope), args.Error(1)
}
func (m *MockMessage) ReadRaw() (raw *string, err error) {