about summary refs log tree commit diff stats
path: root/commands/compose
diff options
context:
space:
mode:
authorSimon Ser <contact@emersion.fr>2020-03-03 16:55:06 +0000
committerDrew DeVault <sir@cmpwn.com>2020-03-03 16:48:35 -0500
commit89f1684ea4b5e680db7ff06a54b2d4e78212cd12 (patch)
treec795dd97478c62bd02c24f14e5328398f47dcc4a /commands/compose
parentf3535703b0b92ff88d7a7fb6837078a21967c832 (diff)
downloadaerc-89f1684ea4b5e680db7ff06a54b2d4e78212cd12.tar.gz
Update dependencies
This brings in some bug fixes.
Diffstat (limited to 'commands/compose')
-rw-r--r--commands/compose/send.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/commands/compose/send.go b/commands/compose/send.go
index 9136ce8..c8f7cc5 100644
--- a/commands/compose/send.go
+++ b/commands/compose/send.go
@@ -167,7 +167,7 @@ func (Send) Execute(aerc *widgets.Aerc, args []string) error {
 			}
 		}
 		// TODO: the user could conceivably want to use a different From and sender
-		if err = conn.Mail(from.Address); err != nil {
+		if err = conn.Mail(from.Address, nil); err != nil {
 			return 0, errors.Wrap(err, "conn.Mail")
 		}
 		aerc.Logger().Printf("rcpt to: %v", rcpts)
uel@gmail.com> 2013-02-02 00:34:17 +0100 ext: add img_display' href='/akspecs/ranger/commit/ranger/ext/img_display.py?h=v1.8.0&id=5795f388c6abe00538030ff597ee6ed69456ecec'>5795f388 ^
d1a1173d ^




5795f388 ^
d1a1173d ^

5795f388 ^
d1a1173d ^
5795f388 ^
323d2742 ^
d1a1173d ^
323d2742 ^
d1a1173d ^




f2cc4916 ^
a9bd6171 ^
d1a1173d ^





















323d2742 ^
d1a1173d ^




323d2742 ^








72cfaec1 ^

d1a1173d ^











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