Documentation ¶
Overview ¶
Package storage handles all database actions
Index ¶
- Variables
- func AddMessageTag(id, name string) error
- func BroadcastMailboxStats()
- func Close()
- func CountRead() int
- func CountTotal() int
- func CountUnread() int
- func DeleteAllMessageTags(id string) error
- func DeleteAllMessages() error
- func DeleteMessageTag(id, name string) error
- func DeleteOneMessage(id string) error
- func DeleteSearch(search string) error
- func GetAllTags() []string
- func GetAllTagsCount() map[string]int64
- func GetAttachmentPart(id, partID string) (*enmime.Part, error)
- func GetMessageRaw(id string) ([]byte, error)
- func InitDB() error
- func IsUnread(id string) bool
- func LatestID(r *http.Request) (string, error)
- func MarkAllRead() error
- func MarkAllUnread() error
- func MarkRead(id string) error
- func MarkUnread(id string) error
- func MessageIDExists(id string) bool
- func ReindexAll()
- func SetMessageTags(id string, tags []string) error
- func SettingGet(k string) string
- func SettingPut(k, v string) error
- func Store(body *[]byte) (string, error)
- type Attachment
- type DBMailSummary
- type ListUnsubscribe
- type MailboxStats
- type Message
- type MessageSummary
Constants ¶
This section is empty.
Variables ¶
var ( // StatsDeleted for counting the number of messages deleted StatsDeleted int )
Functions ¶
func AddMessageTag ¶ added in v1.12.0
AddMessageTag adds a tag to a message
func BroadcastMailboxStats ¶
func BroadcastMailboxStats()
BroadcastMailboxStats broadcasts the total number of messages displayed to the web UI, as well as the total unread messages. The lookup is very fast (< 10ms / 100k messages under load). Rate limited to 4x per second.
func CountRead ¶
func CountRead() int
CountRead returns the number of emails in the database that are read.
func CountUnread ¶
func CountUnread() int
CountUnread returns the number of emails in the database that are unread.
func DeleteAllMessageTags ¶ added in v1.12.0
DeleteAllMessageTags deleted all tags from a message
func DeleteAllMessages ¶
func DeleteAllMessages() error
DeleteAllMessages will delete all messages from a mailbox
func DeleteMessageTag ¶ added in v1.12.0
DeleteMessageTag deleted a tag from a message
func DeleteOneMessage ¶
DeleteOneMessage will delete a single message from a mailbox
func DeleteSearch ¶
DeleteSearch will delete all messages for search terms. The search is broken up by segments (exact phrases can be quoted), and interprets specific terms such as: is:read, is:unread, has:attachment, to:<term>, from:<term> & subject:<term> Negative searches also also included by prefixing the search term with a `-` or `!`
func GetAllTagsCount ¶ added in v1.12.0
GetAllTagsCount returns all used tags with their total messages
func GetAttachmentPart ¶
GetAttachmentPart returns an *enmime.Part (attachment or inline) from a message
func GetMessageRaw ¶
GetMessageRaw returns an []byte of the full message
func IsUnread ¶
IsUnread returns the number of emails in the database that are unread. If an ID is supplied, then it is just limited to that message.
func LatestID ¶ added in v1.11.0
LatestID returns the latest message ID
If a query argument is set in the request the function will return the latest message matching the search
func MessageIDExists ¶
MessageIDExists checks whether a Message-ID exists in the DB
func ReindexAll ¶ added in v1.9.5
func ReindexAll()
ReindexAll will regenerate the search text and snippet for a message and update the database.
func SetMessageTags ¶ added in v1.12.0
SetMessageTags will set the tags for a given database ID
func SettingGet ¶ added in v1.14.0
SettingGet returns a setting string value, blank is it does not exist
func SettingPut ¶ added in v1.14.0
SettingPut sets a setting string value, inserting if new
Types ¶
type Attachment ¶
type Attachment struct { // Attachment part ID PartID string // File name FileName string // Content type ContentType string // Content ID ContentID string // Size in bytes Size int }
Attachment struct for inline and attachments
swagger:model Attachment
func AttachmentSummary ¶
func AttachmentSummary(a *enmime.Part) Attachment
AttachmentSummary returns a summary of the attachment without any binary data
type DBMailSummary ¶
type DBMailSummary struct { From *mail.Address To []*mail.Address Cc []*mail.Address Bcc []*mail.Address ReplyTo []*mail.Address }
DBMailSummary struct for storing mail summary
type ListUnsubscribe ¶ added in v1.13.0
type ListUnsubscribe struct { // List-Unsubscribe header value Header string // Detected links, maximum one email and one HTTP(S) Links []string // Validation errors if any Errors string // List-Unsubscribe-Post value if set HeaderPost string }
ListUnsubscribe contains a summary of List-Unsubscribe & List-Unsubscribe-Post headers including validation of the link structure
type MailboxStats ¶
MailboxStats struct for quick mailbox total/read lookups
func StatsGet ¶
func StatsGet() MailboxStats
StatsGet returns the total/unread statistics for a mailbox
type Message ¶
type Message struct { // Database ID ID string // Message ID MessageID string // From address From *mail.Address // To addresses To []*mail.Address // Cc addresses Cc []*mail.Address // Bcc addresses Bcc []*mail.Address // ReplyTo addresses ReplyTo []*mail.Address // Return-Path ReturnPath string // Message subject Subject string // List-Unsubscribe header information // swagger:ignore ListUnsubscribe ListUnsubscribe // Message date if set, else date received Date time.Time // Message tags Tags []string // Message body text Text string // Message body HTML HTML string // Message size in bytes Size int // Inline message attachments Inline []Attachment // Message attachments Attachments []Attachment }
Message data excluding physical attachments
swagger:model Message
func GetMessage ¶
GetMessage returns a Message generated from the mailbox_data collection. If the message lacks a date header, then the received datetime is used.
type MessageSummary ¶
type MessageSummary struct { // Database ID ID string // Message ID MessageID string // Read status Read bool // From address From *mail.Address // To address To []*mail.Address // Cc addresses Cc []*mail.Address // Bcc addresses Bcc []*mail.Address // Reply-To address ReplyTo []*mail.Address // Email subject Subject string // Created time Created time.Time // Message tags Tags []string // Message size in bytes (total) Size int // Whether the message has any attachments Attachments int // Message snippet includes up to 250 characters Snippet string }
MessageSummary struct for frontend messages
swagger:model MessageSummary
func List ¶
func List(start, limit int) ([]MessageSummary, error)
List returns a subset of messages from the mailbox, sorted latest to oldest
func Search ¶
func Search(search string, start, limit int) ([]MessageSummary, int, error)
Search will search a mailbox for search terms. The search is broken up by segments (exact phrases can be quoted), and interprets specific terms such as: is:read, is:unread, has:attachment, to:<term>, from:<term> & subject:<term> Negative searches also also included by prefixing the search term with a `-` or `!`