summary refs log tree commit diff stats
path: root/commands/msgview
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2020-03-03 16:20:07 -0500
committerDrew DeVault <sir@cmpwn.com>2020-03-03 16:49:52 -0500
commitf3158b36f1f210ff54febbe82b571c1379b30c98 (patch)
tree10cde839c9517609f55b8f1057b1cf84ac592632 /commands/msgview
parent89f1684ea4b5e680db7ff06a54b2d4e78212cd12 (diff)
downloadaerc-f3158b36f1f210ff54febbe82b571c1379b30c98.tar.gz
Initial support for PGP decryption & signatures
Diffstat (limited to 'commands/msgview')
-rw-r--r--commands/msgview/next.go8
1 files changed, 6 insertions, 2 deletions
diff --git a/commands/msgview/next.go b/commands/msgview/next.go
index 4dc504c..c218ad5 100644
--- a/commands/msgview/next.go
+++ b/commands/msgview/next.go
@@ -2,6 +2,7 @@ package msgview
 
 import (
 	"git.sr.ht/~sircmpwn/aerc/commands/account"
+	"git.sr.ht/~sircmpwn/aerc/lib"
 	"git.sr.ht/~sircmpwn/aerc/widgets"
 )
 
@@ -36,7 +37,10 @@ func (NextPrevMsg) Execute(aerc *widgets.Aerc, args []string) error {
 		aerc.RemoveTab(mv)
 		return nil
 	}
-	nextMv := widgets.NewMessageViewer(acct, aerc.Config(), store, nextMsg)
-	aerc.ReplaceTab(mv, nextMv, nextMsg.Envelope.Subject)
+	lib.NewMessageStoreView(nextMsg, store, aerc.DecryptKeys,
+		func(view lib.MessageView) {
+			nextMv := widgets.NewMessageViewer(acct, aerc.Config(), view)
+			aerc.ReplaceTab(mv, nextMv, nextMsg.Envelope.Subject)
+		})
 	return nil
 }
1987@gmail.com> 2015-03-09 13:52:02 +0800 committer ZhiFeng Hu <hufeng1987@gmail.com> 2015-03-09 13:52:02 +0800 Move bot url to botbuild' href='/ahoang/Nim/commit/readme.md?h=devel&id=57dc4ca22b97864e074fa2884a9e2df9bfb31737'>57dc4ca22 ^
40b611cc2 ^
57dc4ca22 ^
a16e6bd22 ^


57dc4ca22 ^
a16e6bd22 ^





a16e6bd22 ^



bc9749310 ^
22a65d12f ^
830e0c000 ^
22a65d12f ^
bc9749310 ^



a16e6bd22 ^

49d810f34 ^


a16e6bd22 ^
bc9749310 ^


a16e6bd22 ^
49d810f34 ^









a16e6bd22 ^
3ea644690 ^
45f9c5b94 ^
3ea644690 ^


a16e6bd22 ^

57dc4ca22 ^


1c9b4e5d3 ^
a16e6bd22 ^


2dfefc200 ^
da825a0fe ^
168d0fe94 ^

52d3a8239 ^

dc854f348 ^

c6d653f30 ^


52d3a8239 ^
c6d653f30 ^
52d3a8239 ^
c6d653f30 ^
52d3a8239 ^
c6d653f30 ^
52d3a8239 ^
c6d653f30 ^
52d3a8239 ^
c6d653f30 ^
52d3a8239 ^

c6d653f30 ^
52d3a8239 ^
c6d653f30 ^
52d3a8239 ^

c6d653f30 ^
52d3a8239 ^


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