mirror of
https://github.com/jhillyerd/inbucket.git
synced 2025-12-17 17:47:03 +00:00
- impl Store.AddMessage - file: Use AddMessage() in tests - smtp: Switch to AddMessage - storage: Remove NewMessage, Append, Close methods
101 lines
2.3 KiB
Go
101 lines
2.3 KiB
Go
package file
|
|
|
|
import (
|
|
"bufio"
|
|
"io"
|
|
"net/mail"
|
|
"os"
|
|
"path/filepath"
|
|
"time"
|
|
|
|
"github.com/jhillyerd/inbucket/pkg/log"
|
|
)
|
|
|
|
// Message implements Message and contains a little bit of data about a
|
|
// particular email message, and methods to retrieve the rest of it from disk.
|
|
type Message struct {
|
|
mailbox *mbox
|
|
// Stored in GOB
|
|
Fid string
|
|
Fdate time.Time
|
|
Ffrom *mail.Address
|
|
Fto []*mail.Address
|
|
Fsubject string
|
|
Fsize int64
|
|
// These are for creating new messages only
|
|
writable bool
|
|
writerFile *os.File
|
|
writer *bufio.Writer
|
|
}
|
|
|
|
// newMessage creates a new FileMessage object and sets the Date and ID fields.
|
|
// It will also delete messages over messageCap if configured.
|
|
func (mb *mbox) newMessage() (*Message, error) {
|
|
// Load index
|
|
if !mb.indexLoaded {
|
|
if err := mb.readIndex(); err != nil {
|
|
return nil, err
|
|
}
|
|
}
|
|
// Delete old messages over messageCap
|
|
if mb.store.messageCap > 0 {
|
|
for len(mb.messages) >= mb.store.messageCap {
|
|
log.Infof("Mailbox %q over configured message cap", mb.name)
|
|
if err := mb.removeMessage(mb.messages[0].ID()); err != nil {
|
|
log.Errorf("Error deleting message: %s", err)
|
|
}
|
|
}
|
|
}
|
|
date := time.Now()
|
|
id := generateID(date)
|
|
return &Message{mailbox: mb, Fid: id, Fdate: date, writable: true}, nil
|
|
}
|
|
|
|
// Mailbox returns the name of the mailbox this message resides in.
|
|
func (m *Message) Mailbox() string {
|
|
return m.mailbox.name
|
|
}
|
|
|
|
// ID gets the ID of the Message
|
|
func (m *Message) ID() string {
|
|
return m.Fid
|
|
}
|
|
|
|
// Date returns the date/time this Message was received by Inbucket
|
|
func (m *Message) Date() time.Time {
|
|
return m.Fdate
|
|
}
|
|
|
|
// From returns the value of the Message From header
|
|
func (m *Message) From() *mail.Address {
|
|
return m.Ffrom
|
|
}
|
|
|
|
// To returns the value of the Message To header
|
|
func (m *Message) To() []*mail.Address {
|
|
return m.Fto
|
|
}
|
|
|
|
// Subject returns the value of the Message Subject header
|
|
func (m *Message) Subject() string {
|
|
return m.Fsubject
|
|
}
|
|
|
|
// Size returns the size of the Message on disk in bytes
|
|
func (m *Message) Size() int64 {
|
|
return m.Fsize
|
|
}
|
|
|
|
func (m *Message) rawPath() string {
|
|
return filepath.Join(m.mailbox.path, m.Fid+".raw")
|
|
}
|
|
|
|
// RawReader opens the .raw portion of a Message as an io.ReadCloser
|
|
func (m *Message) RawReader() (reader io.ReadCloser, err error) {
|
|
file, err := os.Open(m.rawPath())
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return file, nil
|
|
}
|