chiark / gitweb /
Refactor stgit.commands.edit
[stgit] / stgit / commands / mail.py
CommitLineData
b4bddc06
CM
1__copyright__ = """
2Copyright (C) 2005, Catalin Marinas <catalin.marinas@gmail.com>
3
4This program is free software; you can redistribute it and/or modify
5it under the terms of the GNU General Public License version 2 as
6published by the Free Software Foundation.
7
8This program is distributed in the hope that it will be useful,
9but WITHOUT ANY WARRANTY; without even the implied warranty of
10MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11GNU General Public License for more details.
12
13You should have received a copy of the GNU General Public License
14along with this program; if not, write to the Free Software
15Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16"""
17
6cf5ec9b 18import sys, os, re, time, datetime, socket, smtplib, getpass
61eed152 19import email, email.Utils, email.Header
575bbdae 20from stgit.argparse import opt
b4bddc06
CM
21from stgit.commands.common import *
22from stgit.utils import *
5e888f30 23from stgit.out import *
20a52e06 24from stgit import argparse, stack, git, version, templates
b4bddc06 25from stgit.config import config
a0fe60a2 26from stgit.run import Run
ef954fe6 27from stgit.lib import git as gitlib
b4bddc06 28
575bbdae 29help = 'Send a patch or series of patches by e-mail'
33ff9cdd 30kind = 'patch'
575bbdae
KH
31usage = [' [options] [<patch1>] [<patch2>] [<patch3>..<patch4>]']
32description = r"""
cec913c4
KH
33Send a patch or a range of patches by e-mail using the SMTP server
34specified by the 'stgit.smtpserver' configuration option, or the
a0fe60a2
CM
35'--smtp-server' command line option. This option can also be an
36absolute path to 'sendmail' followed by command line arguments.
37
38The From address and the e-mail format are generated from the template
39file passed as argument to '--template' (defaulting to
40'.git/patchmail.tmpl' or '~/.stgit/templates/patchmail.tmpl' or
e5c32acf 41'/usr/share/stgit/templates/patchmail.tmpl'). A patch can be sent as
a0fe60a2
CM
42attachment using the --attach option in which case the
43'mailattch.tmpl' template will be used instead of 'patchmail.tmpl'.
79df2f0d
CM
44
45The To/Cc/Bcc addresses can either be added to the template file or
46passed via the corresponding command line options. They can be e-mail
47addresses or aliases which are automatically expanded to the values
48stored in the [mail "alias"] section of GIT configuration files.
2bb96902 49
0ba13ee9
KH
50A preamble e-mail can be sent using the '--cover' and/or
51'--edit-cover' options. The first allows the user to specify a file to
52be used as a template. The latter option will invoke the editor on the
53specified file (defaulting to '.git/covermail.tmpl' or
94d18868
YD
54'~/.stgit/templates/covermail.tmpl' or
55'/usr/share/stgit/templates/covermail.tmpl').
e3e05587
CM
56
57All the subsequent e-mails appear as replies to the first e-mail sent
58(either the preamble or the first patch). E-mails can be seen as
59replies to a different e-mail by using the '--refid' option.
26aab5b0
CM
60
61SMTP authentication is also possible with '--smtp-user' and
62'--smtp-password' options, also available as configuration settings:
fc44c2ca
PR
63'smtpuser' and 'smtppassword'. TLS encryption can be enabled by
64'--smtp-tls' option and 'smtptls' setting.
26aab5b0 65
27827959
KH
66The following variables are accepted by both the preamble and the
67patch e-mail templates:
26aab5b0 68
26aab5b0 69 %(diffstat)s - diff statistics
27827959 70 %(number)s - empty if only one patch is sent or ' patchnr/totalnr'
26aab5b0 71 %(patchnr)s - patch number
27827959 72 %(sender)s - 'sender' or 'authname <authemail>' as per the config file
26aab5b0 73 %(totalnr)s - total number of patches to be sent
27827959
KH
74 %(version)s - ' version' string passed on the command line (or empty)
75
76In addition to the common variables, the preamble e-mail template
77accepts the following:
78
79 %(shortlog)s - first line of each patch description, listed by author
80
81In addition to the common variables, the patch e-mail template accepts
82the following:
83
26aab5b0 84 %(authdate)s - patch creation date
27827959
KH
85 %(authemail)s - author's email
86 %(authname)s - author's name
26aab5b0 87 %(commemail)s - committer's e-mail
27827959
KH
88 %(commname)s - committer's name
89 %(diff)s - unified diff of the patch
77eeb7f4 90 %(fromauth)s - 'From: author\n\n' if different from sender
27827959
KH
91 %(longdescr)s - the rest of the patch description, after the first line
92 %(patch)s - patch name
93 %(prefix)s - 'prefix ' string passed on the command line
94 %(shortdescr)s - the first line of the patch description"""
b4bddc06 95
575bbdae
KH
96options = [
97 opt('-a', '--all', action = 'store_true',
98 short = 'E-mail all the applied patches'),
99 opt('--to', action = 'append',
100 short = 'Add TO to the To: list'),
101 opt('--cc', action = 'append',
102 short = 'Add CC to the Cc: list'),
103 opt('--bcc', action = 'append',
104 short = 'Add BCC to the Bcc: list'),
105 opt('--auto', action = 'store_true',
106 short = 'Automatically cc the patch signers'),
107 opt('--noreply', action = 'store_true',
108 short = 'Do not send subsequent messages as replies'),
109 opt('--unrelated', action = 'store_true',
110 short = 'Send patches without sequence numbering'),
111 opt('--attach', action = 'store_true',
112 short = 'Send a patch as attachment'),
113 opt('-v', '--version', metavar = 'VERSION',
114 short = 'Add VERSION to the [PATCH ...] prefix'),
115 opt('--prefix', metavar = 'PREFIX',
116 short = 'Add PREFIX to the [... PATCH ...] prefix'),
117 opt('-t', '--template', metavar = 'FILE',
118 short = 'Use FILE as the message template'),
119 opt('-c', '--cover', metavar = 'FILE',
120 short = 'Send FILE as the cover message'),
121 opt('-e', '--edit-cover', action = 'store_true',
122 short = 'Edit the cover message before sending'),
123 opt('-E', '--edit-patches', action = 'store_true',
124 short = 'Edit each patch before sending'),
125 opt('-s', '--sleep', type = 'int', metavar = 'SECONDS',
126 short = 'Sleep for SECONDS between e-mails sending'),
127 opt('--refid',
128 short = 'Use REFID as the reference id'),
129 opt('--smtp-server', metavar = 'HOST[:PORT] or "/path/to/sendmail -t -i"',
130 short = 'SMTP server or command to use for sending mail'),
131 opt('-u', '--smtp-user', metavar = 'USER',
132 short = 'Username for SMTP authentication'),
133 opt('-p', '--smtp-password', metavar = 'PASSWORD',
134 short = 'Password for SMTP authentication'),
135 opt('-T', '--smtp-tls', action = 'store_true',
136 short = 'Use SMTP with TLS encryption'),
137 opt('-b', '--branch',
138 short = 'Use BRANCH instead of the default branch'),
139 opt('-m', '--mbox', action = 'store_true',
140 short = 'Generate an mbox file instead of sending')
141 ] + argparse.diff_opts_option()
142
117ed129 143directory = DirectoryHasRepository(log = False)
b4bddc06 144
901288c2 145def __get_sender():
dae0f0be
CM
146 """Return the 'authname <authemail>' string as read from the
147 configuration file
148 """
c73e63b7
YD
149 sender=config.get('stgit.sender')
150 if not sender:
9e3f506f
KH
151 try:
152 sender = str(git.user())
153 except git.GitException:
154 sender = str(git.author())
155
156 if not sender:
901288c2 157 raise CmdException, 'unknown sender details'
dae0f0be 158
79df2f0d 159 return address_or_alias(sender)
9e3f506f 160
d650d6ed 161def __parse_addresses(msg):
b4bddc06
CM
162 """Return a two elements tuple: (from, [to])
163 """
d650d6ed
CM
164 def __addr_list(msg, header):
165 return [name_addr[1] for name_addr in
166 email.Utils.getaddresses(msg.get_all(header, []))]
b4bddc06 167
d650d6ed 168 from_addr_list = __addr_list(msg, 'From')
24aadb3f 169 if len(from_addr_list) == 0:
b4bddc06 170 raise CmdException, 'No "From" address'
d650d6ed
CM
171
172 to_addr_list = __addr_list(msg, 'To') + __addr_list(msg, 'Cc') \
173 + __addr_list(msg, 'Bcc')
b4bddc06
CM
174 if len(to_addr_list) == 0:
175 raise CmdException, 'No "To/Cc/Bcc" addresses'
176
177 return (from_addr_list[0], to_addr_list)
178
a0fe60a2
CM
179def __send_message_sendmail(sendmail, msg):
180 """Send the message using the sendmail command.
181 """
182 cmd = sendmail.split()
183 Run(*cmd).raw_input(msg).discard_output()
184
185def __send_message_smtp(smtpserver, from_addr, to_addr_list, msg,
186 smtpuser, smtppassword, use_tls):
b4bddc06
CM
187 """Send the message using the given SMTP server
188 """
189 try:
190 s = smtplib.SMTP(smtpserver)
191 except Exception, err:
192 raise CmdException, str(err)
193
194 s.set_debuglevel(0)
195 try:
eb026d93
B
196 if smtpuser and smtppassword:
197 s.ehlo()
fc44c2ca
PR
198 if use_tls:
199 if not hasattr(socket, 'ssl'):
200 raise CmdException, "cannot use TLS - no SSL support in Python"
201 s.starttls()
202 s.ehlo()
eb026d93
B
203 s.login(smtpuser, smtppassword)
204
0bc1343c
YD
205 result = s.sendmail(from_addr, to_addr_list, msg)
206 if len(result):
207 print "mail server refused delivery for the following recipients: %s" % result
b4bddc06
CM
208 except Exception, err:
209 raise CmdException, str(err)
210
211 s.quit()
212
a0fe60a2
CM
213def __send_message(smtpserver, from_addr, to_addr_list, msg,
214 sleep, smtpuser, smtppassword, use_tls):
215 """Message sending dispatcher.
216 """
217 if smtpserver.startswith('/'):
218 # Use the sendmail tool
219 __send_message_sendmail(smtpserver, msg)
220 else:
221 # Use the SMTP server (we have host and port information)
222 __send_message_smtp(smtpserver, from_addr, to_addr_list, msg,
223 smtpuser, smtppassword, use_tls)
224 # give recipients a chance of receiving patches in the correct order
225 time.sleep(sleep)
226
61eed152 227def __build_address_headers(msg, options, extra_cc = []):
f8d1cf65
CM
228 """Build the address headers and check existing headers in the
229 template.
230 """
61eed152
CM
231 def __replace_header(header, addr):
232 if addr:
233 crt_addr = msg[header]
234 del msg[header]
f8d1cf65 235
61eed152 236 if crt_addr:
79df2f0d 237 msg[header] = address_or_alias(', '.join([crt_addr, addr]))
61eed152 238 else:
79df2f0d 239 msg[header] = address_or_alias(addr)
f8d1cf65 240
f8d1cf65
CM
241 to_addr = ''
242 cc_addr = ''
243 bcc_addr = ''
244
c73e63b7 245 autobcc = config.get('stgit.autobcc') or ''
d884c4d8 246
e83b3149 247 if options.to:
61eed152 248 to_addr = ', '.join(options.to)
e83b3149 249 if options.cc:
61eed152 250 cc_addr = ', '.join(options.cc + extra_cc)
e5c32acf 251 cc_addr = ', '.join(options.cc + extra_cc)
f8d1cf65 252 elif extra_cc:
61eed152 253 cc_addr = ', '.join(extra_cc)
e83b3149 254 if options.bcc:
61eed152 255 bcc_addr = ', '.join(options.bcc + [autobcc])
d884c4d8
CM
256 elif autobcc:
257 bcc_addr = autobcc
f8d1cf65 258
61eed152
CM
259 __replace_header('To', to_addr)
260 __replace_header('Cc', cc_addr)
261 __replace_header('Bcc', bcc_addr)
f8d1cf65
CM
262
263def __get_signers_list(msg):
264 """Return the address list generated from signed-off-by and
265 acked-by lines in the message.
266 """
267 addr_list = []
268
769cd397 269 r = re.compile('^(signed-off-by|acked-by|cc):\s+(.+)$', re.I)
f8d1cf65
CM
270 for line in msg.split('\n'):
271 m = r.match(line)
272 if m:
273 addr_list.append(m.expand('\g<2>'))
274
275 return addr_list
e83b3149 276
61eed152
CM
277def __build_extra_headers(msg, msg_id, ref_id = None):
278 """Build extra email headers and encoding
19a56fa1 279 """
61eed152
CM
280 del msg['Date']
281 msg['Date'] = email.Utils.formatdate(localtime = True)
282 msg['Message-ID'] = msg_id
283 if ref_id:
00375337
CM
284 # make sure the ref id has the angle brackets
285 ref_id = '<%s>' % ref_id.strip(' \t\n<>')
61eed152
CM
286 msg['In-Reply-To'] = ref_id
287 msg['References'] = ref_id
288 msg['User-Agent'] = 'StGIT/%s' % version.version
289
290def __encode_message(msg):
291 # 7 or 8 bit encoding
292 charset = email.Charset.Charset('utf-8')
293 charset.body_encoding = None
294
295 # encode headers
296 for header, value in msg.items():
297 words = []
298 for word in value.split(' '):
299 try:
300 uword = unicode(word, 'utf-8')
301 except UnicodeDecodeError:
302 # maybe we should try a different encoding or report
303 # the error. At the moment, we just ignore it
304 pass
305 words.append(email.Header.Header(uword).encode())
306 new_val = ' '.join(words)
307 msg.replace_header(header, new_val)
308
309 # encode the body and set the MIME and encoding headers
e5c32acf
CM
310 if msg.is_multipart():
311 for p in msg.get_payload():
312 p.set_charset(charset)
313 else:
314 msg.set_charset(charset)
19a56fa1 315
58c61f10 316def __edit_message(msg):
0ba13ee9
KH
317 fname = '.stgitmail.txt'
318
319 # create the initial file
320 f = file(fname, 'w')
321 f.write(msg)
322 f.close()
323
83bb4e4c 324 call_editor(fname)
0ba13ee9
KH
325
326 # read the message back
327 f = file(fname)
328 msg = f.read()
329 f.close()
330
331 return msg
332
99c4a4c5 333def __build_cover(tmpl, patches, msg_id, options):
e3e05587 334 """Build the cover message (series description) to be sent via SMTP
b4bddc06 335 """
901288c2 336 sender = __get_sender()
dae0f0be 337
d0d139a3
CM
338 if options.version:
339 version_str = ' %s' % options.version
ed5de0cc
CM
340 else:
341 version_str = ''
d0d139a3 342
d323b5da
RR
343 if options.prefix:
344 prefix_str = options.prefix + ' '
345 else:
a7e0d4ee
YD
346 confprefix = config.get('stgit.mail.prefix')
347 if confprefix:
348 prefix_str = confprefix + ' '
349 else:
350 prefix_str = ''
d323b5da 351
99c4a4c5 352 total_nr_str = str(len(patches))
b8d258e5 353 patch_nr_str = '0'.zfill(len(total_nr_str))
99c4a4c5 354 if len(patches) > 1:
b8d258e5
CM
355 number_str = ' %s/%s' % (patch_nr_str, total_nr_str)
356 else:
357 number_str = ''
b4bddc06 358
901288c2
CM
359 tmpl_dict = {'sender': sender,
360 # for backward template compatibility
361 'maintainer': sender,
61eed152
CM
362 # for backward template compatibility
363 'endofheaders': '',
364 # for backward template compatibility
365 'date': '',
d0d139a3 366 'version': version_str,
d323b5da 367 'prefix': prefix_str,
b8d258e5
CM
368 'patchnr': patch_nr_str,
369 'totalnr': total_nr_str,
99c4a4c5 370 'number': number_str,
27827959
KH
371 'shortlog': stack.shortlog(crt_series.get_patch(p)
372 for p in patches),
ef954fe6 373 'diffstat': gitlib.diffstat(git.diff(
e4560d7e
CM
374 rev1 = git_id(crt_series, '%s^' % patches[0]),
375 rev2 = git_id(crt_series, '%s' % patches[-1])))}
b4bddc06
CM
376
377 try:
61eed152 378 msg_string = tmpl % tmpl_dict
b4bddc06
CM
379 except KeyError, err:
380 raise CmdException, 'Unknown patch template variable: %s' \
381 % err
382 except TypeError:
383 raise CmdException, 'Only "%(name)s" variables are ' \
384 'supported in the patch template'
385
58c61f10
CM
386 if options.edit_cover:
387 msg_string = __edit_message(msg_string)
388
61eed152
CM
389 # The Python email message
390 try:
391 msg = email.message_from_string(msg_string)
392 except Exception, ex:
393 raise CmdException, 'template parsing error: %s' % str(ex)
394
395 __build_address_headers(msg, options)
396 __build_extra_headers(msg, msg_id, options.refid)
397 __encode_message(msg)
398
d650d6ed 399 return msg
b4bddc06 400
2bb96902 401def __build_message(tmpl, patch, patch_nr, total_nr, msg_id, ref_id, options):
b4bddc06
CM
402 """Build the message to be sent via SMTP
403 """
404 p = crt_series.get_patch(patch)
405
c897c87c
AS
406 if p.get_description():
407 descr = p.get_description().strip()
408 else:
409 # provide a place holder and force the edit message option on
410 descr = '<empty message>'
411 options.edit_patches = True
b4bddc06 412
c897c87c 413 descr_lines = descr.split('\n')
42857cbe
ST
414 short_descr = descr_lines[0].strip()
415 long_descr = '\n'.join(l.rstrip() for l in descr_lines[1:]).lstrip('\n')
b4bddc06 416
1d1485c3
CM
417 authname = p.get_authname();
418 authemail = p.get_authemail();
419 commname = p.get_commname();
420 commemail = p.get_commemail();
421
901288c2 422 sender = __get_sender()
1d1485c3
CM
423
424 fromauth = '%s <%s>' % (authname, authemail)
901288c2 425 if fromauth != sender:
1d1485c3
CM
426 fromauth = 'From: %s\n\n' % fromauth
427 else:
428 fromauth = ''
dae0f0be 429
d0d139a3
CM
430 if options.version:
431 version_str = ' %s' % options.version
ed5de0cc
CM
432 else:
433 version_str = ''
d0d139a3 434
d323b5da
RR
435 if options.prefix:
436 prefix_str = options.prefix + ' '
437 else:
a7e0d4ee
YD
438 confprefix = config.get('stgit.mail.prefix')
439 if confprefix:
440 prefix_str = confprefix + ' '
441 else:
442 prefix_str = ''
0d219030 443
b4bddc06
CM
444 total_nr_str = str(total_nr)
445 patch_nr_str = str(patch_nr).zfill(len(total_nr_str))
c2a8af1d 446 if not options.unrelated and total_nr > 1:
b8d258e5
CM
447 number_str = ' %s/%s' % (patch_nr_str, total_nr_str)
448 else:
449 number_str = ''
b4bddc06 450
e4560d7e
CM
451 diff = git.diff(rev1 = git_id(crt_series, '%s^' % patch),
452 rev2 = git_id(crt_series, '%s' % patch),
a45cea15 453 diff_flags = options.diff_flags)
b4bddc06 454 tmpl_dict = {'patch': patch,
901288c2
CM
455 'sender': sender,
456 # for backward template compatibility
457 'maintainer': sender,
b4bddc06
CM
458 'shortdescr': short_descr,
459 'longdescr': long_descr,
61eed152
CM
460 # for backward template compatibility
461 'endofheaders': '',
a45cea15 462 'diff': diff,
ef954fe6 463 'diffstat': gitlib.diffstat(diff),
61eed152
CM
464 # for backward template compatibility
465 'date': '',
d0d139a3 466 'version': version_str,
d323b5da 467 'prefix': prefix_str,
b4bddc06
CM
468 'patchnr': patch_nr_str,
469 'totalnr': total_nr_str,
b8d258e5 470 'number': number_str,
1d1485c3
CM
471 'fromauth': fromauth,
472 'authname': authname,
473 'authemail': authemail,
b4bddc06 474 'authdate': p.get_authdate(),
1d1485c3
CM
475 'commname': commname,
476 'commemail': commemail}
61eed152 477 # change None to ''
b4bddc06
CM
478 for key in tmpl_dict:
479 if not tmpl_dict[key]:
480 tmpl_dict[key] = ''
481
482 try:
61eed152 483 msg_string = tmpl % tmpl_dict
b4bddc06
CM
484 except KeyError, err:
485 raise CmdException, 'Unknown patch template variable: %s' \
486 % err
487 except TypeError:
488 raise CmdException, 'Only "%(name)s" variables are ' \
489 'supported in the patch template'
490
58c61f10
CM
491 if options.edit_patches:
492 msg_string = __edit_message(msg_string)
493
61eed152
CM
494 # The Python email message
495 try:
496 msg = email.message_from_string(msg_string)
497 except Exception, ex:
498 raise CmdException, 'template parsing error: %s' % str(ex)
499
500 if options.auto:
501 extra_cc = __get_signers_list(descr)
502 else:
503 extra_cc = []
504
505 __build_address_headers(msg, options, extra_cc)
506 __build_extra_headers(msg, msg_id, ref_id)
507 __encode_message(msg)
508
d650d6ed 509 return msg
b4bddc06 510
b4bddc06
CM
511def func(parser, options, args):
512 """Send the patches by e-mail using the patchmail.tmpl file as
513 a template
514 """
cec913c4 515 smtpserver = options.smtp_server or config.get('stgit.smtpserver')
eb026d93 516
b4bddc06 517 applied = crt_series.get_applied()
b4bddc06 518
6b1e0111
CM
519 if options.all:
520 patches = applied
521 elif len(args) >= 1:
b4f656f0
CM
522 unapplied = crt_series.get_unapplied()
523 patches = parse_patches(args, applied + unapplied, len(applied))
b4bddc06 524 else:
9a316368 525 raise CmdException, 'Incorrect options. Unknown patches to send'
b4bddc06 526
3c04f430
CM
527 out.start('Checking the validity of the patches')
528 for p in patches:
529 if crt_series.empty_patch(p):
530 raise CmdException, 'Cannot send empty patch "%s"' % p
531 out.done()
532
c73e63b7
YD
533 smtppassword = options.smtp_password or config.get('stgit.smtppassword')
534 smtpuser = options.smtp_user or config.get('stgit.smtpuser')
fc44c2ca 535 smtpusetls = options.smtp_tls or config.get('stgit.smtptls') == 'yes'
eb026d93
B
536
537 if (smtppassword and not smtpuser):
538 raise CmdException, 'SMTP password supplied, username needed'
fc44c2ca
PR
539 if (smtpusetls and not smtpuser):
540 raise CmdException, 'SMTP over TLS requested, username needed'
6cf5ec9b
PR
541 if (smtpuser and not smtppassword):
542 smtppassword = getpass.getpass("Please enter SMTP password: ")
eb026d93 543
b4bddc06 544 total_nr = len(patches)
9a316368
CM
545 if total_nr == 0:
546 raise CmdException, 'No patches to send'
b4bddc06 547
c2a8af1d
CM
548 if options.refid:
549 if options.noreply or options.unrelated:
550 raise CmdException, \
551 '--refid option not allowed with --noreply or --unrelated'
d1ed3a12 552 ref_id = options.refid
c2a8af1d
CM
553 else:
554 ref_id = None
b4bddc06 555
c73e63b7 556 sleep = options.sleep or config.getint('stgit.smtpdelay')
b4bddc06 557
e3e05587 558 # send the cover message (if any)
0ba13ee9 559 if options.cover or options.edit_cover:
c2a8af1d
CM
560 if options.unrelated:
561 raise CmdException, 'cover sending not allowed with --unrelated'
562
e3e05587
CM
563 # find the template file
564 if options.cover:
16fee874 565 tmpl = file(options.cover).read()
e3e05587 566 else:
1f3bb017
CM
567 tmpl = templates.get_template('covermail.tmpl')
568 if not tmpl:
569 raise CmdException, 'No cover message template file found'
b4bddc06
CM
570
571 msg_id = email.Utils.make_msgid('stgit')
99c4a4c5 572 msg = __build_cover(tmpl, patches, msg_id, options)
2bb96902 573 from_addr, to_addr_list = __parse_addresses(msg)
b4bddc06 574
d650d6ed
CM
575 msg_string = msg.as_string(options.mbox)
576
b4bddc06 577 # subsequent e-mails are seen as replies to the first one
d1ed3a12
CM
578 if not options.noreply:
579 ref_id = msg_id
b4bddc06 580
29f00589 581 if options.mbox:
27ac2b7e 582 out.stdout_raw(msg_string + '\n')
29f00589 583 else:
27ac2b7e 584 out.start('Sending the cover message')
d650d6ed 585 __send_message(smtpserver, from_addr, to_addr_list, msg_string,
fc44c2ca 586 sleep, smtpuser, smtppassword, smtpusetls)
27ac2b7e 587 out.done()
b4bddc06
CM
588
589 # send the patches
590 if options.template:
1f3bb017 591 tmpl = file(options.template).read()
b4bddc06 592 else:
e5c32acf
CM
593 if options.attach:
594 tmpl = templates.get_template('mailattch.tmpl')
595 else:
596 tmpl = templates.get_template('patchmail.tmpl')
1f3bb017
CM
597 if not tmpl:
598 raise CmdException, 'No e-mail template file found'
b4bddc06
CM
599
600 for (p, patch_nr) in zip(patches, range(1, len(patches) + 1)):
601 msg_id = email.Utils.make_msgid('stgit')
2bb96902
CM
602 msg = __build_message(tmpl, p, patch_nr, total_nr, msg_id, ref_id,
603 options)
604 from_addr, to_addr_list = __parse_addresses(msg)
605
d650d6ed
CM
606 msg_string = msg.as_string(options.mbox)
607
b4bddc06 608 # subsequent e-mails are seen as replies to the first one
c2a8af1d 609 if not options.noreply and not options.unrelated and not ref_id:
b4bddc06
CM
610 ref_id = msg_id
611
29f00589 612 if options.mbox:
27ac2b7e 613 out.stdout_raw(msg_string + '\n')
29f00589 614 else:
27ac2b7e 615 out.start('Sending patch "%s"' % p)
d650d6ed 616 __send_message(smtpserver, from_addr, to_addr_list, msg_string,
fc44c2ca 617 sleep, smtpuser, smtppassword, smtpusetls)
27ac2b7e 618 out.done()