blob: 731e35b3040fe1a4c0eac32594b51873f42769a4 (
plain)
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
60
61
62
|
package imap
import (
uidplus "github.com/emersion/go-imap-uidplus"
imapClient "github.com/emersion/go-imap/client"
"github.com/Necoro/feed2imap-go/pkg/log"
)
const numberConns = 5
type connConf struct {
host string
delimiter string
toplevel Folder
}
type Client struct {
connConf
mailboxes *mailboxes
commander *commander
connections [numberConns]*connection
nextFreeIndex int
}
func (client *Client) Disconnect() {
if client != nil {
client.stopCommander()
connected := false
for _, conn := range client.connections {
connected = conn.disconnect() || connected
}
if connected {
log.Print("Disconnected from ", client.host)
}
}
}
func (cl *Client) createConnection(c *imapClient.Client) *connection {
if cl.nextFreeIndex >= len(cl.connections) {
panic("Too many connections")
}
client := &client{c, uidplus.NewClient(c)}
conn := &connection{
connConf: &cl.connConf,
mailboxes: cl.mailboxes,
c: client,
}
cl.connections[cl.nextFreeIndex] = conn
cl.nextFreeIndex++
return conn
}
func NewClient() *Client {
return &Client{mailboxes: NewMailboxes()}
}
|