-
Notifications
You must be signed in to change notification settings - Fork 12
/
sendmail.erl
363 lines (316 loc) · 12.7 KB
/
sendmail.erl
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
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
%% coding: latin-1
%%
%% File : sendmail.erl
%% Author : Klacke <[email protected]>,
%% Johan Bevemyr <[email protected]>,
%% Håkan Stenholm <[email protected]>,
%% Richard Carlsson <[email protected]>
%%
%% Description : send mail using local sendmail; based on sendmail.erl
%% by Klacke and smtp.erl by Johan Bevemyr, with code for RFC1522 by
%% Håkan Stenholm. Major cleanup and rewrites by Richard Carlsson.
%%
%% Copyright (C) Johan Bevemyr 2004, Klacke <[email protected]> 2005,
%% Håkan Stenholm 2009, Richard Carlsson 2009.
%%
%% Permission is hereby granted, free of charge, to any person obtaining a
%% copy of this software and associated documentation files (the
%% "Software"), to deal in the Software without restriction, including
%% without limitation the rights to use, copy, modify, merge, publish,
%% distribute, sublicense, and/or sell copies of the Software, and to permit
%% persons to whom the Software is furnished to do so, subject to the
%% following conditions:
%%
%% The above copyright notice and this permission notice shall be included
%% in all copies or substantial portions of the Software.
%%
%% THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
%% OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
%% MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
%% NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
%% DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
%% OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
%% USE OR OTHER DEALINGS IN THE SOFTWARE.
%% TODO: allow list of recipients?
-module(sendmail).
-export([ create/4
, create/5
, send/4
, send/5
, send_data/3
, send_data/4
]).
-include_lib("eunit/include/eunit.hrl").
-define(NL, "\n"). % unix sendmail expects LF-terminated lines
%% API
create(To, From, Subject, Message) ->
create(To, From, Subject, Message, []).
create(To, From, Subject, Message, Opts) ->
data(To, From, Subject, Message, Opts).
send(To, From, Subject, Message) ->
send(To, From, Subject, Message, []).
send(To, From, Subject, Message, Opts) ->
send_data(To, From, create(From, To, Subject, Message, Opts), Opts).
%% returns {ExitCode, CmdOutput}
send_data(To, From, Data, _Opts) ->
%% should perhaps support other methods as well, such as direct SMTP
%% (in that case, this module should probably be renamed)
sendmail(From, To, Data).
%% returns {ExitCode, CmdOutput}
send_data(From, Data, _Opts) ->
sendmail(From, Data).
%% ------------------------------------------------------------------------
%% The rest is internal functionality
sendmail(From, To, Data) ->
PortCmd = port_cmd(From, shell_quote(To)),
sendmail_1(PortCmd, Data).
%% Extract recipients from the message headers instead of manually
%% specifying them.
sendmail(From, Data) ->
%% sendmail options used:
%% -t : extract recipients from message headers
PortCmd = port_cmd(From, "-t"),
sendmail_1(PortCmd, Data).
port_cmd(From, ExtraOpts) ->
%% sendmail options used:
%% -f : set envelope sender (can only be done by trusted user)
%% -bm : message on stdin
"/usr/sbin/sendmail -bm -f " ++ From ++ " " ++ ExtraOpts.
sendmail_1(PortCmd, Data) ->
%% TODO: use spawn_executable to avoid need for shell quote
P = open_port({spawn, PortCmd}, [stderr_to_stdout, exit_status, eof]),
%% sendmail reads its standard input up to a line consisting only of a
%% single dot
P ! {self(), {command, [Data, "\n.\n"]}},
sendmail_wait(P, undefined, false, []).
sendmail_wait(P, Status, true = _Eof, Ds) when Status =/= undefined ->
erlang:port_close(P),
{Status, lists:flatten(lists:reverse(Ds))};
sendmail_wait(P, Status, Eof, Ds) ->
receive
{P, eof} ->
sendmail_wait(P, Status, true, Ds);
{P, {data, D}} ->
sendmail_wait(P, Status, Eof, [D|Ds]);
{P, {exit_status, S}} ->
sendmail_wait(P, S, Eof, Ds)
after 15000 ->
erlang:port_close(P),
{undefined, "sendmail command timed out\n" ++
lists:flatten(lists:reverse(Ds))}
end.
data(From, To, Subject, Message, Opts0) ->
%% TODO: should accept additional headers as options
Opts = proplists:expand([{text, [{content_type,"text/plain"}]},
{html, [{content_type,"text/html"}]}],
Opts0),
ContentType = proplists:get_value(content_type, Opts, "text/plain"),
Attached = proplists:get_value(attached, Opts, []),
[
mk_text_header("Subject", Subject) ++ ?NL,
mk_header("From", From),
mk_header("To", To),
case Attached of
[] ->
[mk_header("Content-Type", ContentType),
mk_header("Content-Transfer-Encoding", "8bit"),
?NL,
Message
];
_ ->
Boundary = mk_boundary(),
[
mk_header("Mime-Version", "1.0"),
mk_header("Content-Type",
("Multipart/Mixed; boundary=\""
++ Boundary ++ "\"")),
mk_header("Content-Transfer-Encoding", "8bit"),
?NL,
"--", Boundary,
?NL,
mk_header("Content-Type",
ContentType ++ "; charset=us-ascii"),
mk_header("Content-Transfer-Encoding", "8bit"),
?NL,
Message,
attachments(Boundary, Attached)
]
end].
attachments(Boundary, []) ->
[?NL, "--", Boundary, "--", ?NL];
attachments(Boundary, [{FileName,ContentType,Data}|Rest]) ->
[?NL, "--", Boundary, ?NL,
mk_header("Content-Type", ContentType),
mk_header("Content-Transfer-Encoding", "base64"),
mk_header("Content-Disposition",
"attachment; filename=\"" ++ FileName ++ "\""),
?NL,
base64:encode(Data),
attachments(Boundary, Rest)
];
attachments(Boundary, [FileName|Rest]) when is_list(FileName) ->
case file:read_file(FileName) of
{ok, Data} ->
ContentType = "application/octet-stream", % safe default
attachments(Boundary,
[{filename:basename(FileName),
ContentType,
Data} | Rest]);
{error, Reason} ->
throw({attachment_error, FileName, Reason})
end.
mk_boundary() ->
{N1, N2, N3} = now(),
lists:flatten(io_lib:format("[~w:~w:~w]", [N1, N2, N3])).
%% Make an arbitrary (IO-) string safe to pass into a shell command.
%% Note that single quotes in the string are dropped.
%% (Perhaps they should be translated to '' ?)
shell_quote(String) ->
%% 1. Put single quotes around the string.
"'" ++
%% 2. Remove any single quote
[C || C <- lists:flatten(String), C =/= $' % ' emacs
]
++ "'".
%% * See RFC1522 for detail about encoding non-us-ascii in mail headers.
%% * RFC822 specifies the header layout in greater detail.
mk_header(_Key, []) -> [];
mk_header(Key, Val) -> Key ++ ": " ++ Val ++ ?NL.
-define(CONT, (?NL ++ " ")). % continues field on new line
-define(MAX_LENGTH, 76). % RFC1522 - max length of line in multiline field
%% @spec mk_text_header(Title::string(),
%% Content::deep_string()) -> string()
%%
%% @doc Title: US-ASCII, e.g. "Subject" (no control chars, SP or ':').
%% Content: Latin-1, the text after Title. Output is Q-encoded Latin-1.
%% Will split the header over multiple lines if needed.
%%
%% This is only intended for unstructured `<text>' fields like "Subject" or
%% "Comments" where all of Content should be Q-encoded. Don't use this for
%% "From" or "To" fields!
%%
%% An empty field becomes "xxx: " rather than "xxx: =?ISO-8859-1?Q??=" for
%% the sake of clarity and to avoid possible mail header parsing issues.
mk_text_header(Title, []) ->
Title ++ ": ";
mk_text_header(Title, Content) ->
%% Note: folding of text (split over lines) should generally be done at
%% LWSP or other structural item (e.g. address line) according to RFC822
%% but here we simply split when the line gets too long.
Charset = "ISO-8859-1",
Head = "=?" ++ Charset ++ "?Q?",
%% ":" would be ok according to RFC822, but ": " seams more common
%% when looking at email examples and eml files
FirstHead = Title ++ ": " ++ Head,
Tail = "?=",
Text = q_encode_latin1(Content),
%% Size of fixed elements on each line, ?CONT and ?NL are somewhat
%% conservativly added to line length.
%% 1 is added for LWSP from ?CONT on line no. 2+.
%% Counting NL on final line ensures that lines don't get too long
%% between fields
HTLen = length(Head) + 1 + length(Tail) + length(?NL),
FTLen = length(FirstHead) + length(Tail) + length(?NL),
FirstHead ++ mk_text_header(FirstHead, Head, Tail, Text,
HTLen, FTLen, FTLen).
mk_text_header(_FirstHead, _Head, Tail, [] = _Text,
_HTLen, _FTLen, _Len) ->
%% no more text
Tail;
mk_text_header(done = FirstHead, Head, Tail, [C|R] = Text,
HTLen, FTLen, Len) ->
%% 2:nd+ line
%% can we fit another (encode) letter on this line?
NewLen = Len + length(C),
case NewLen > ?MAX_LENGTH of
false -> C ++
mk_text_header(FirstHead, Head, Tail, R,
HTLen, FTLen, NewLen);
%% C must be placed on new line
true -> Tail ++ ?CONT ++ Head ++
mk_text_header(FirstHead, Head, Tail, Text,
HTLen, FTLen, HTLen)
end;
mk_text_header(FirstHead, Head, Tail, [C|R] = Text,
HTLen, FTLen, Len) ->
%% 1:st line
%% can we fit another (encode) letter on this line?
NewLen = Len + length(C),
case NewLen > ?MAX_LENGTH of
false -> C ++
mk_text_header(FirstHead, Head, Tail, R,
HTLen, FTLen, NewLen);
%% C must be placed on new line
true -> Tail ++ ?CONT ++ Head ++
mk_text_header(done, Head, Tail, Text,
HTLen, FTLen, HTLen)
end.
%% Str = deep_string(), latin-1
%% return: [string()], each entry matches a letter in Str
q_encode_latin1(Str) ->
F = fun(C) ->
case C of
%% SP characters must be encoded as "_" (or "=20")
$\s -> "_";
%% '=', '?', and '_' are used as special control
%% characters, so these must always be qhex encoded
$= -> to_qhex(C);
$? -> to_qhex(C);
$_ -> to_qhex(C);
%% NOTE: this list may be unnecessarily restrictive
%% don't qhex-encode "standard us-ascii" letters
C when
((C >= $a) and (C =< $z)) or
((C >= $A) and (C =< $Z)) or
((C >= $0) and (C =< $9)) -> [C];
%% qhex-encode all other characters
_ -> to_qhex(C)
end
end,
lists:map(F, lists:flatten(Str)).
%% return Q-encoded hex version of char C e.g. $= -> "=3D"
to_qhex(C) when C >= 0, C =< 255 ->
First = C bsr 4,
Last = C band 16#F,
[$=, to_hex_char(First), to_hex_char(Last)].
to_hex_char(N) when N >= 0, N =< 9 -> N + $0;
to_hex_char(N) when N >= 10, N =< 15 -> N + $A - 10.
%% ------------------------------------------------------------------------
%% eunit test cases
mk_text_header_test_() ->
[
%% based on Thunderbird output
?_assertEqual("Subject: =?ISO-8859-1?Q?=E5=E4=F6?=",
mk_text_header("Subject", "åäö")),
?_assertEqual(
"Subject: =?ISO-8859-1?Q?=E5=E4=F6twequiiiirrrweyqruyqitrrqw"
"eruitwqeeerwqe?=\n"
" =?ISO-8859-1?Q?urtwuietrriqweeeeeqeiu"
"urrrrrrrweuiqtruiwetriweeeeyiirrrrr?=\n"
" =?ISO-8859-1?Q?rrrrrrrruiweqtrweertwe"
"uitr?=",
mk_text_header(
"Subject",
"åäötwequiiiirrrweyqruyqitrrqw"
"eruitwqeeerwqeurtwuietrriqweeeeeqeiuurrrrrrrweuiqtruiwetriwee"
"eeyiirrrrrrrrrrrrruiweqtrweertweuitr")),
%% based on RFC 1522
%% = S? ? _ = = S? S_
?_assertEqual("XXX: =?ISO-8859-1?Q?=3D_=3F=3F=5F=3D=3D_=3F_=5F?=",
mk_text_header("XXX", "= ??_== ? _")),
?_assertEqual("XXX: ",
mk_text_header("XXX", "")),
%% 1 char on new line
?_assertEqual("Subject: =?ISO-8859-1?Q?=E5=E4=F6twequ"
"iiiirrrweyqruyqitrrqweruitwqeeerwqe?=\n"
" =?ISO-8859-1?Q?u?=",
mk_text_header(
"Subject",
"åäötwequiiiirrrweyqruyqitrrqweruitwqeeerwqeu")),
%% fits on 1 line
?_assertEqual("Subject: =?ISO-8859-1?Q?=E5=E4=F6twequ"
"iiiirrrweyqruyqitrrqweruitwqeeerwqe?=",
mk_text_header(
"Subject",
"åäötwequiiiirrrweyqruyqitrrqweruitwqeeerwqe"))
].