about summary refs log tree commit diff stats
path: root/commands/account
diff options
context:
space:
mode:
authorReto Brunner <reto@labrat.space>2020-04-23 20:55:18 +0200
committerDrew DeVault <sir@cmpwn.com>2020-04-24 12:59:21 -0400
commitacf69b7490f4848066f2df4b3c2f675a8d57661a (patch)
treeb3442983879619331b753c4edfc2dcbdd8c746b6 /commands/account
parent3fa9ae3edb0c2193ef333a77b710ccbe54ee4368 (diff)
downloadaerc-acf69b7490f4848066f2df4b3c2f675a8d57661a.tar.gz
Remove ability to specify headers in the editor
Due to headers being essentially free text, we constantly run into issues
with parts of the body being interpreted as headers.

Remove the ability to overwrite headers to avoid that, while keeping the ability
to specify headers in the template files.

Fixes #383
Diffstat (limited to 'commands/account')
-rw-r--r--commands/account/compose.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/commands/account/compose.go b/commands/account/compose.go
index c214441..8115faa 100644
--- a/commands/account/compose.go
+++ b/commands/account/compose.go
@@ -46,7 +46,7 @@ func (Compose) Execute(aerc *widgets.Aerc, args []string) error {
 		}
 		tab.Content.Invalidate()
 	})
-	go composer.PrependContents(strings.NewReader(body))
+	go composer.AppendContents(strings.NewReader(body))
 	return nil
 }
 
cgen: render symbols between modules' href='/ahoang/Nim/commit/compiler/nimblecmd.nim?h=devel&id=86556ebfdbbd4b8e9edc9d3085ea21d6c0bae2e2'>86556ebfd ^
3c4ceea42 ^

1dc362dcd ^
9b465a236 ^
02ff5f596 ^
5e6680406 ^
9b465a236 ^
02ff5f596 ^
9b465a236 ^
02ff5f596 ^
9b465a236 ^






0181253ee ^

93ced3135 ^





0181253ee ^
02ff5f596 ^
9b465a236 ^
93ced3135 ^
9b465a236 ^











7e747d11c ^
9b465a236 ^











1dc362dcd ^
5e6680406 ^

















d8944b93c ^
5e6680406 ^












0181253ee ^
5e6680406 ^
d8944b93c ^
5e6680406 ^


0181253ee ^

5e6680406 ^
0181253ee ^
5e6680406 ^



0181253ee ^
61e57cfa1 ^
1dc362dcd ^
5e6680406 ^
1dc362dcd ^
5e6680406 ^






1dc362dcd ^

61e57cfa1 ^
90fa64501 ^










86556ebfd ^
61e57cfa1 ^
86556ebfd ^
c98696d74 ^
61e57cfa1 ^
93ced3135 ^
1dc362dcd ^



61e57cfa1 ^
1dc362dcd ^
61e57cfa1 ^
1dc362dcd ^
86556ebfd ^


010067f3c ^



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