blob: ae57c3fbebd73aca870cd8ddcbee381173ee825f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
package models
import (
"time"
"github.com/emersion/go-message/mail"
)
// This interface needs to be implemented for compliance with aerc-templates(7)
type TemplateData interface {
Account() string
Folder() string
To() []*mail.Address
Cc() []*mail.Address
Bcc() []*mail.Address
From() []*mail.Address
Peer() []*mail.Address
ReplyTo() []*mail.Address
Date() time.Time
DateAutoFormat(date time.Time) string
Header(name string) string
ThreadPrefix() string
Subject() string
SubjectBase() string
Number() int
Labels() []string
Flags() []string
IsReplied() bool
HasAttachment() bool
IsFlagged() bool
IsRecent() bool
IsUnread() bool
IsMarked() bool
MessageId() string
Role() string
Size() int
OriginalText() string
OriginalDate() time.Time
OriginalFrom() []*mail.Address
OriginalMIMEType() string
OriginalHeader(name string) string
Recent(folders ...string) int
Unread(folders ...string) int
Exists(folders ...string) int
RUE(folders ...string) string
Connected() bool
ConnectionInfo() string
ContentInfo() string
StatusInfo() string
TrayInfo() string
PendingKeys() string
Style(string, string) string
StyleSwitch(string, ...Case) string
}
type Case interface {
Matches(string) bool
Value() string
}
|