about summary refs log tree commit diff stats
path: root/widgets
diff options
context:
space:
mode:
authorReto Brunner <reto@labrat.space>2019-06-12 08:31:51 +0200
committerDrew DeVault <sir@cmpwn.com>2019-06-14 10:42:24 -0400
commit626f91c4832c097b7036d5063b2f0491397a9c70 (patch)
tree786310a326cf120e1d4f630fe8ce74405579a9bb /widgets
parentd3b5a76b4a8ad839991cb686711a0c0d24536d5e (diff)
downloadaerc-626f91c4832c097b7036d5063b2f0491397a9c70.tar.gz
imap: respect the folder config option
Diffstat (limited to 'widgets')
-rw-r--r--widgets/account.go2
-rw-r--r--widgets/dirlist.go42
2 files changed, 32 insertions, 12 deletions
diff --git a/widgets/account.go b/widgets/account.go
index 72874b0..397cccd 100644
--- a/widgets/account.go
+++ b/widgets/account.go
@@ -141,7 +141,7 @@ func (acct *AccountView) connected(msg types.WorkerMessage) {
 					break
 				}
 			}
-			if dir == "" {
+			if dir == "" && len(dirs) > 0 {
 				dir = dirs[0]
 			}
 			acct.dirlist.Select(dir)
diff --git a/widgets/dirlist.go b/widgets/dirlist.go
index 1240e56..d7c4874 100644
--- a/widgets/dirlist.go
+++ b/widgets/dirlist.go
@@ -47,17 +47,6 @@ func (dirlist *DirectoryList) UpdateList(done func(dirs []string)) {
 			case *types.Directory:
 				dirs = append(dirs, msg.Name)
 			case *types.Done:
-				// There is always an INBOX, RFC-guaranteed
-				// However, for some reason Dovecot doesn't always send it.
-				inbox := false
-				for _, dir := range dirs {
-					if dir == "INBOX" {
-						inbox = true
-					}
-				}
-				if !inbox {
-					dirs = append(dirs, "INBOX")
-				}
 				sort.Strings(dirs)
 				dirlist.dirs = dirs
 				dirlist.spinner.Stop()
@@ -78,6 +67,18 @@ func (dirlist *DirectoryList) Select(name string) {
 				dirlist.selecting = ""
 			case *types.Done:
 				dirlist.selected = dirlist.selecting
+				dirlist.filterDirsByFoldersConfig()
+				hasSelected := false
+				for _, d := range dirlist.dirs {
+					if d == dirlist.selected {
+						hasSelected = true
+						break
+					}
+				}
+				if !hasSelected && dirlist.selected != "" {
+					dirlist.dirs = append(dirlist.dirs, dirlist.selected)
+				}
+				sort.Strings(dirlist.dirs)
 			}
 			dirlist.Invalidate()
 		})
@@ -158,3 +159,22 @@ func (dirlist *DirectoryList) Next() {
 func (dirlist *DirectoryList) Prev() {
 	dirlist.nextPrev(-1)
 }
+
+// filterDirsByFoldersConfig filters a folders list to only contain folders
+// present in the account.folders config option
+func (dirlist *DirectoryList) filterDirsByFoldersConfig() {
+	// config option defaults to show all if unset
+	if len(dirlist.conf.Folders) == 0 {
+		return
+	}
+	var filtered []string
+	for _, folder := range dirlist.dirs {
+		for _, cfgfolder := range dirlist.conf.Folders {
+			if folder == cfgfolder {
+				filtered = append(filtered, folder)
+				break
+			}
+		}
+	}
+	dirlist.dirs = filtered
+}
r James Booth <boothj5@gmail.com> 2016-07-30 23:00:45 +0100 Update plugins API docs' href='/danisanti/profani-tty/commit/apidocs/c/profhooks.h?id=43b1d7f7cd4e753effe3c15f0724798077638ff3'>43b1d7f7 ^
a1dc3d12 ^
9d782fa6 ^
5d6b2d0b ^
9d782fa6 ^

43b1d7f7 ^

5d6b2d0b ^
43b1d7f7 ^
9d782fa6 ^
5d6b2d0b ^
9d782fa6 ^

43b1d7f7 ^


83385cdb ^
9d782fa6 ^
30e96b2d ^
9d782fa6 ^

43b1d7f7 ^


9d782fa6 ^
30e96b2d ^
9d782fa6 ^

43b1d7f7 ^
a948d741 ^
43b1d7f7 ^

a1dc3d12 ^
9d782fa6 ^
a948d741 ^
9d782fa6 ^

43b1d7f7 ^
a948d741 ^
a1dc3d12 ^
43b1d7f7 ^
9d782fa6 ^
a948d741 ^
9d782fa6 ^

43b1d7f7 ^
a948d741 ^
43b1d7f7 ^
83385cdb ^
9d782fa6 ^
a948d741 ^
9d782fa6 ^

43b1d7f7 ^
a948d741 ^
43b1d7f7 ^
9d782fa6 ^
a948d741 ^
9d782fa6 ^

43b1d7f7 ^
a948d741 ^
43b1d7f7 ^



a948d741 ^
43b1d7f7 ^


a948d741 ^
43b1d7f7 ^

a1dc3d12 ^
9d782fa6 ^
a948d741 ^
9d782fa6 ^

43b1d7f7 ^
a948d741 ^
a1dc3d12 ^
43b1d7f7 ^
9d782fa6 ^
a948d741 ^
9d782fa6 ^

43b1d7f7 ^
a948d741 ^
43b1d7f7 ^

83385cdb ^
9d782fa6 ^
a948d741 ^
9d782fa6 ^

43b1d7f7 ^
a948d741 ^
43b1d7f7 ^

9d782fa6 ^
a948d741 ^
43b1d7f7 ^





























































d64e7976 ^
43b1d7f7 ^




d64e7976 ^
a948d741 ^
43b1d7f7 ^
a948d741 ^
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220