stg mail: don't parse To/Cc/Bcc in --git mode
[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'
54239abf 31usage = [' [options] [--] [<patch1>] [<patch2>] [<patch3>..<patch4>]']
575bbdae 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
6c8a90e1
KH
96args = [argparse.patch_range(argparse.applied_patches,
97 argparse.unapplied_patches,
98 argparse.hidden_patches)]
575bbdae
KH
99options = [
100 opt('-a', '--all', action = 'store_true',
101 short = 'E-mail all the applied patches'),
102 opt('--to', action = 'append',
103 short = 'Add TO to the To: list'),
104 opt('--cc', action = 'append',
105 short = 'Add CC to the Cc: list'),
106 opt('--bcc', action = 'append',
107 short = 'Add BCC to the Bcc: list'),
108 opt('--auto', action = 'store_true',
109 short = 'Automatically cc the patch signers'),
110 opt('--noreply', action = 'store_true',
111 short = 'Do not send subsequent messages as replies'),
112 opt('--unrelated', action = 'store_true',
113 short = 'Send patches without sequence numbering'),
114 opt('--attach', action = 'store_true',
115 short = 'Send a patch as attachment'),
116 opt('-v', '--version', metavar = 'VERSION',
117 short = 'Add VERSION to the [PATCH ...] prefix'),
118 opt('--prefix', metavar = 'PREFIX',
119 short = 'Add PREFIX to the [... PATCH ...] prefix'),
120 opt('-t', '--template', metavar = 'FILE',
121 short = 'Use FILE as the message template'),
122 opt('-c', '--cover', metavar = 'FILE',
123 short = 'Send FILE as the cover message'),
124 opt('-e', '--edit-cover', action = 'store_true',
125 short = 'Edit the cover message before sending'),
126 opt('-E', '--edit-patches', action = 'store_true',
127 short = 'Edit each patch before sending'),
128 opt('-s', '--sleep', type = 'int', metavar = 'SECONDS',
129 short = 'Sleep for SECONDS between e-mails sending'),
130 opt('--refid',
131 short = 'Use REFID as the reference id'),
132 opt('--smtp-server', metavar = 'HOST[:PORT] or "/path/to/sendmail -t -i"',
133 short = 'SMTP server or command to use for sending mail'),
134 opt('-u', '--smtp-user', metavar = 'USER',
135 short = 'Username for SMTP authentication'),
136 opt('-p', '--smtp-password', metavar = 'PASSWORD',
137 short = 'Password for SMTP authentication'),
138 opt('-T', '--smtp-tls', action = 'store_true',
139 short = 'Use SMTP with TLS encryption'),
6c8a90e1 140 opt('-b', '--branch', args = [argparse.stg_branches],
575bbdae
KH
141 short = 'Use BRANCH instead of the default branch'),
142 opt('-m', '--mbox', action = 'store_true',
97ccbbbc
AC
143 short = 'Generate an mbox file instead of sending'),
144 opt('--git', action = 'store_true',
145 short = 'Use git send-email (EXPERIMENTAL)')
575bbdae
KH
146 ] + argparse.diff_opts_option()
147
117ed129 148directory = DirectoryHasRepository(log = False)
b4bddc06 149
901288c2 150def __get_sender():
dae0f0be
CM
151 """Return the 'authname <authemail>' string as read from the
152 configuration file
153 """
c73e63b7
YD
154 sender=config.get('stgit.sender')
155 if not sender:
9e3f506f
KH
156 try:
157 sender = str(git.user())
158 except git.GitException:
ea09f8ce
GH
159 try:
160 sender = str(git.author())
161 except git.GitException:
162 pass
9e3f506f 163 if not sender:
ea09f8ce
GH
164 raise CmdException, ('Unknown sender name and e-mail; you should'
165 ' for example set git config user.name and'
166 ' user.email')
cd74a041
CM
167 sender = email.Utils.parseaddr(sender)
168
169 return email.Utils.formataddr(address_or_alias(sender))
dae0f0be 170
cd74a041
CM
171def __addr_list(msg, header):
172 return [addr for name, addr in
173 email.Utils.getaddresses(msg.get_all(header, []))]
9e3f506f 174
d650d6ed 175def __parse_addresses(msg):
b4bddc06
CM
176 """Return a two elements tuple: (from, [to])
177 """
d650d6ed 178 from_addr_list = __addr_list(msg, 'From')
24aadb3f 179 if len(from_addr_list) == 0:
b4bddc06 180 raise CmdException, 'No "From" address'
d650d6ed
CM
181
182 to_addr_list = __addr_list(msg, 'To') + __addr_list(msg, 'Cc') \
183 + __addr_list(msg, 'Bcc')
b4bddc06
CM
184 if len(to_addr_list) == 0:
185 raise CmdException, 'No "To/Cc/Bcc" addresses'
186
cd74a041 187 return (from_addr_list[0], set(to_addr_list))
b4bddc06 188
a0fe60a2
CM
189def __send_message_sendmail(sendmail, msg):
190 """Send the message using the sendmail command.
191 """
192 cmd = sendmail.split()
193 Run(*cmd).raw_input(msg).discard_output()
194
89d7ec43 195def __send_message_smtp(smtpserver, from_addr, to_addr_list, msg, options):
b4bddc06
CM
196 """Send the message using the given SMTP server
197 """
89d7ec43
AC
198 smtppassword = options.smtp_password or config.get('stgit.smtppassword')
199 smtpuser = options.smtp_user or config.get('stgit.smtpuser')
200 smtpusetls = options.smtp_tls or config.get('stgit.smtptls') == 'yes'
201
202 if (smtppassword and not smtpuser):
203 raise CmdException('SMTP password supplied, username needed')
204 if (smtpusetls and not smtpuser):
205 raise CmdException('SMTP over TLS requested, username needed')
206 if (smtpuser and not smtppassword):
207 smtppassword = getpass.getpass("Please enter SMTP password: ")
208
b4bddc06
CM
209 try:
210 s = smtplib.SMTP(smtpserver)
211 except Exception, err:
212 raise CmdException, str(err)
213
214 s.set_debuglevel(0)
215 try:
eb026d93
B
216 if smtpuser and smtppassword:
217 s.ehlo()
89d7ec43 218 if smtpusetls:
fc44c2ca
PR
219 if not hasattr(socket, 'ssl'):
220 raise CmdException, "cannot use TLS - no SSL support in Python"
221 s.starttls()
222 s.ehlo()
eb026d93
B
223 s.login(smtpuser, smtppassword)
224
0bc1343c
YD
225 result = s.sendmail(from_addr, to_addr_list, msg)
226 if len(result):
227 print "mail server refused delivery for the following recipients: %s" % result
b4bddc06
CM
228 except Exception, err:
229 raise CmdException, str(err)
230
231 s.quit()
232
97ccbbbc
AC
233def __send_message_git(msg, options):
234 """Send the message using git send-email
235 """
236 from subprocess import call
237 from tempfile import mkstemp
238
239 cmd = ["git", "send-email", "--from=%s" % msg['From']]
240 cmd.append("--quiet")
241 cmd.append("--suppress-cc=self")
242 if not options.auto:
243 cmd.append("--suppress-cc=body")
244
245 # We only support To/Cc/Bcc in git send-email for now.
246 for x in ['to', 'cc', 'bcc']:
247 if getattr(options, x):
248 cmd.extend('--%s=%s' % (x, a) for a in getattr(options, x))
249
97ccbbbc
AC
250 (fd, path) = mkstemp()
251 os.write(fd, msg.as_string(options.mbox))
252 os.close(fd)
253
254 try:
255 try:
256 cmd.append(path)
257 call(cmd)
258 except Exception, err:
259 raise CmdException, str(err)
260 finally:
261 os.unlink(path)
262
9cb369d4 263def __send_message(type, tmpl, options, *args):
a0fe60a2
CM
264 """Message sending dispatcher.
265 """
9cb369d4
AC
266 (build, outstr) = {'cover': (__build_cover, 'the cover message'),
267 'patch': (__build_message, 'patch "%s"' % args[0])}[type]
268 if type == 'patch':
269 (patch_nr, total_nr) = (args[1], args[2])
270
271 msg_id = email.Utils.make_msgid('stgit')
272 msg = build(tmpl, msg_id, options, *args)
273
9cb369d4
AC
274 msg_str = msg.as_string(options.mbox)
275 if options.mbox:
276 out.stdout_raw(msg_str + '\n')
277 return msg_id
278
97ccbbbc 279 if not options.git:
e2a3c618 280 from_addr, to_addrs = __parse_addresses(msg)
97ccbbbc 281 out.start('Sending ' + outstr)
89d7ec43 282
9cb369d4 283 smtpserver = options.smtp_server or config.get('stgit.smtpserver')
97ccbbbc
AC
284 if options.git:
285 __send_message_git(msg, options)
286 elif smtpserver.startswith('/'):
a0fe60a2 287 # Use the sendmail tool
9cb369d4 288 __send_message_sendmail(smtpserver, msg_str)
a0fe60a2
CM
289 else:
290 # Use the SMTP server (we have host and port information)
9cb369d4
AC
291 __send_message_smtp(smtpserver, from_addr, to_addrs, msg_str, options)
292
293 # give recipients a chance of receiving related patches in correct order
294 if type == 'cover' or (type == 'patch' and patch_nr < total_nr):
295 sleep = options.sleep or config.getint('stgit.smtpdelay')
296 time.sleep(sleep)
97ccbbbc
AC
297 if not options.git:
298 out.done()
9cb369d4 299 return msg_id
a0fe60a2 300
c28b8841 301def __update_header(msg, header, addr = '', ignore = ()):
cd74a041
CM
302 def __addr_pairs(msg, header, extra):
303 pairs = email.Utils.getaddresses(msg.get_all(header, []) + extra)
304 # remove pairs without an address and resolve the aliases
305 return [address_or_alias(p) for p in pairs if p[1]]
306
c28b8841
AC
307 addr_pairs = __addr_pairs(msg, header, [addr])
308 del msg[header]
309 # remove the duplicates and filter the addresses
310 addr_dict = dict((addr, email.Utils.formataddr((name, addr)))
311 for name, addr in addr_pairs if addr not in ignore)
312 if addr_dict:
313 msg[header] = ', '.join(addr_dict.itervalues())
314 return set(addr_dict.iterkeys())
f8d1cf65 315
c28b8841
AC
316def __build_address_headers(msg, options, extra_cc = []):
317 """Build the address headers and check existing headers in the
318 template.
319 """
f8d1cf65
CM
320 to_addr = ''
321 cc_addr = ''
cd74a041 322 extra_cc_addr = ''
f8d1cf65
CM
323 bcc_addr = ''
324
c73e63b7 325 autobcc = config.get('stgit.autobcc') or ''
d884c4d8 326
e83b3149 327 if options.to:
61eed152 328 to_addr = ', '.join(options.to)
e83b3149 329 if options.cc:
cd74a041
CM
330 cc_addr = ', '.join(options.cc)
331 if extra_cc:
332 extra_cc_addr = ', '.join(extra_cc)
e83b3149 333 if options.bcc:
61eed152 334 bcc_addr = ', '.join(options.bcc + [autobcc])
d884c4d8
CM
335 elif autobcc:
336 bcc_addr = autobcc
f8d1cf65 337
cd74a041 338 # if an address is on a header, ignore it from the rest
c28b8841
AC
339 to_set = __update_header(msg, 'To', to_addr)
340 cc_set = __update_header(msg, 'Cc', cc_addr, to_set)
341 bcc_set = __update_header(msg, 'Bcc', bcc_addr, to_set.union(cc_set))
cd74a041
CM
342
343 # --auto generated addresses, don't include the sender
c28b8841
AC
344 from_set = __update_header(msg, 'From')
345 __update_header(msg, 'Cc', extra_cc_addr,
346 to_set.union(bcc_set).union(from_set))
f8d1cf65
CM
347
348def __get_signers_list(msg):
349 """Return the address list generated from signed-off-by and
350 acked-by lines in the message.
351 """
352 addr_list = []
de41ecc8
DW
353 tags = '%s|%s|%s|%s|%s|%s|%s' % (
354 'signed-off-by',
355 'acked-by',
356 'cc',
357 'reviewed-by',
358 'reported-by',
359 'tested-by',
360 'reported-and-tested-by')
361 regex = '^(%s):\s+(.+)$' % tags
362
363 r = re.compile(regex, re.I)
f8d1cf65
CM
364 for line in msg.split('\n'):
365 m = r.match(line)
366 if m:
367 addr_list.append(m.expand('\g<2>'))
368
369 return addr_list
e83b3149 370
61eed152
CM
371def __build_extra_headers(msg, msg_id, ref_id = None):
372 """Build extra email headers and encoding
19a56fa1 373 """
61eed152
CM
374 del msg['Date']
375 msg['Date'] = email.Utils.formatdate(localtime = True)
376 msg['Message-ID'] = msg_id
377 if ref_id:
00375337
CM
378 # make sure the ref id has the angle brackets
379 ref_id = '<%s>' % ref_id.strip(' \t\n<>')
61eed152
CM
380 msg['In-Reply-To'] = ref_id
381 msg['References'] = ref_id
d5214f56 382 msg['User-Agent'] = 'StGit/%s' % version.version
61eed152 383
c28b8841
AC
384 # update other address headers
385 __update_header(msg, 'Reply-To')
386 __update_header(msg, 'Mail-Reply-To')
387 __update_header(msg, 'Mail-Followup-To')
388
389
61eed152
CM
390def __encode_message(msg):
391 # 7 or 8 bit encoding
392 charset = email.Charset.Charset('utf-8')
393 charset.body_encoding = None
394
395 # encode headers
396 for header, value in msg.items():
397 words = []
398 for word in value.split(' '):
399 try:
400 uword = unicode(word, 'utf-8')
401 except UnicodeDecodeError:
402 # maybe we should try a different encoding or report
403 # the error. At the moment, we just ignore it
404 pass
405 words.append(email.Header.Header(uword).encode())
406 new_val = ' '.join(words)
407 msg.replace_header(header, new_val)
408
409 # encode the body and set the MIME and encoding headers
e5c32acf
CM
410 if msg.is_multipart():
411 for p in msg.get_payload():
412 p.set_charset(charset)
413 else:
414 msg.set_charset(charset)
19a56fa1 415
58c61f10 416def __edit_message(msg):
0ba13ee9
KH
417 fname = '.stgitmail.txt'
418
419 # create the initial file
420 f = file(fname, 'w')
421 f.write(msg)
422 f.close()
423
83bb4e4c 424 call_editor(fname)
0ba13ee9
KH
425
426 # read the message back
427 f = file(fname)
428 msg = f.read()
429 f.close()
430
431 return msg
432
c18d3a36 433def __build_cover(tmpl, msg_id, options, patches):
e3e05587 434 """Build the cover message (series description) to be sent via SMTP
b4bddc06 435 """
901288c2 436 sender = __get_sender()
dae0f0be 437
d0d139a3
CM
438 if options.version:
439 version_str = ' %s' % options.version
ed5de0cc
CM
440 else:
441 version_str = ''
d0d139a3 442
d323b5da
RR
443 if options.prefix:
444 prefix_str = options.prefix + ' '
445 else:
a7e0d4ee
YD
446 confprefix = config.get('stgit.mail.prefix')
447 if confprefix:
448 prefix_str = confprefix + ' '
449 else:
450 prefix_str = ''
d323b5da 451
99c4a4c5 452 total_nr_str = str(len(patches))
b8d258e5 453 patch_nr_str = '0'.zfill(len(total_nr_str))
99c4a4c5 454 if len(patches) > 1:
b8d258e5
CM
455 number_str = ' %s/%s' % (patch_nr_str, total_nr_str)
456 else:
457 number_str = ''
b4bddc06 458
901288c2
CM
459 tmpl_dict = {'sender': sender,
460 # for backward template compatibility
461 'maintainer': sender,
61eed152
CM
462 # for backward template compatibility
463 'endofheaders': '',
464 # for backward template compatibility
465 'date': '',
d0d139a3 466 'version': version_str,
d323b5da 467 'prefix': prefix_str,
b8d258e5
CM
468 'patchnr': patch_nr_str,
469 'totalnr': total_nr_str,
99c4a4c5 470 'number': number_str,
27827959 471 'shortlog': stack.shortlog(crt_series.get_patch(p)
c9379a15 472 for p in reversed(patches)),
ef954fe6 473 'diffstat': gitlib.diffstat(git.diff(
e4560d7e 474 rev1 = git_id(crt_series, '%s^' % patches[0]),
baf8241d
CM
475 rev2 = git_id(crt_series, '%s' % patches[-1]),
476 diff_flags = options.diff_flags))}
b4bddc06
CM
477
478 try:
61eed152 479 msg_string = tmpl % tmpl_dict
b4bddc06
CM
480 except KeyError, err:
481 raise CmdException, 'Unknown patch template variable: %s' \
482 % err
483 except TypeError:
484 raise CmdException, 'Only "%(name)s" variables are ' \
485 'supported in the patch template'
486
58c61f10
CM
487 if options.edit_cover:
488 msg_string = __edit_message(msg_string)
489
61eed152
CM
490 # The Python email message
491 try:
492 msg = email.message_from_string(msg_string)
493 except Exception, ex:
494 raise CmdException, 'template parsing error: %s' % str(ex)
495
e2a3c618
AC
496 if not options.git:
497 __build_address_headers(msg, options)
61eed152
CM
498 __build_extra_headers(msg, msg_id, options.refid)
499 __encode_message(msg)
500
d650d6ed 501 return msg
b4bddc06 502
c18d3a36 503def __build_message(tmpl, msg_id, options, patch, patch_nr, total_nr, ref_id):
b4bddc06
CM
504 """Build the message to be sent via SMTP
505 """
506 p = crt_series.get_patch(patch)
507
c897c87c
AS
508 if p.get_description():
509 descr = p.get_description().strip()
510 else:
511 # provide a place holder and force the edit message option on
512 descr = '<empty message>'
513 options.edit_patches = True
b4bddc06 514
c897c87c 515 descr_lines = descr.split('\n')
42857cbe
ST
516 short_descr = descr_lines[0].strip()
517 long_descr = '\n'.join(l.rstrip() for l in descr_lines[1:]).lstrip('\n')
b4bddc06 518
1d1485c3
CM
519 authname = p.get_authname();
520 authemail = p.get_authemail();
521 commname = p.get_commname();
522 commemail = p.get_commemail();
523
901288c2 524 sender = __get_sender()
1d1485c3
CM
525
526 fromauth = '%s <%s>' % (authname, authemail)
901288c2 527 if fromauth != sender:
1d1485c3
CM
528 fromauth = 'From: %s\n\n' % fromauth
529 else:
530 fromauth = ''
dae0f0be 531
d0d139a3
CM
532 if options.version:
533 version_str = ' %s' % options.version
ed5de0cc
CM
534 else:
535 version_str = ''
d0d139a3 536
d323b5da
RR
537 if options.prefix:
538 prefix_str = options.prefix + ' '
539 else:
a7e0d4ee
YD
540 confprefix = config.get('stgit.mail.prefix')
541 if confprefix:
542 prefix_str = confprefix + ' '
543 else:
544 prefix_str = ''
0d219030 545
b4bddc06
CM
546 total_nr_str = str(total_nr)
547 patch_nr_str = str(patch_nr).zfill(len(total_nr_str))
c2a8af1d 548 if not options.unrelated and total_nr > 1:
b8d258e5
CM
549 number_str = ' %s/%s' % (patch_nr_str, total_nr_str)
550 else:
551 number_str = ''
b4bddc06 552
e4560d7e
CM
553 diff = git.diff(rev1 = git_id(crt_series, '%s^' % patch),
554 rev2 = git_id(crt_series, '%s' % patch),
a45cea15 555 diff_flags = options.diff_flags)
b4bddc06 556 tmpl_dict = {'patch': patch,
901288c2
CM
557 'sender': sender,
558 # for backward template compatibility
559 'maintainer': sender,
b4bddc06
CM
560 'shortdescr': short_descr,
561 'longdescr': long_descr,
61eed152
CM
562 # for backward template compatibility
563 'endofheaders': '',
a45cea15 564 'diff': diff,
ef954fe6 565 'diffstat': gitlib.diffstat(diff),
61eed152
CM
566 # for backward template compatibility
567 'date': '',
d0d139a3 568 'version': version_str,
d323b5da 569 'prefix': prefix_str,
b4bddc06
CM
570 'patchnr': patch_nr_str,
571 'totalnr': total_nr_str,
b8d258e5 572 'number': number_str,
1d1485c3
CM
573 'fromauth': fromauth,
574 'authname': authname,
575 'authemail': authemail,
b4bddc06 576 'authdate': p.get_authdate(),
1d1485c3
CM
577 'commname': commname,
578 'commemail': commemail}
61eed152 579 # change None to ''
b4bddc06
CM
580 for key in tmpl_dict:
581 if not tmpl_dict[key]:
582 tmpl_dict[key] = ''
583
584 try:
61eed152 585 msg_string = tmpl % tmpl_dict
b4bddc06
CM
586 except KeyError, err:
587 raise CmdException, 'Unknown patch template variable: %s' \
588 % err
589 except TypeError:
590 raise CmdException, 'Only "%(name)s" variables are ' \
591 'supported in the patch template'
592
58c61f10
CM
593 if options.edit_patches:
594 msg_string = __edit_message(msg_string)
595
61eed152
CM
596 # The Python email message
597 try:
598 msg = email.message_from_string(msg_string)
599 except Exception, ex:
600 raise CmdException, 'template parsing error: %s' % str(ex)
601
602 if options.auto:
603 extra_cc = __get_signers_list(descr)
604 else:
605 extra_cc = []
606
e2a3c618
AC
607 if not options.git:
608 __build_address_headers(msg, options, extra_cc)
61eed152
CM
609 __build_extra_headers(msg, msg_id, ref_id)
610 __encode_message(msg)
611
d650d6ed 612 return msg
b4bddc06 613
b4bddc06
CM
614def func(parser, options, args):
615 """Send the patches by e-mail using the patchmail.tmpl file as
616 a template
617 """
b4bddc06 618 applied = crt_series.get_applied()
b4bddc06 619
6b1e0111
CM
620 if options.all:
621 patches = applied
622 elif len(args) >= 1:
b4f656f0
CM
623 unapplied = crt_series.get_unapplied()
624 patches = parse_patches(args, applied + unapplied, len(applied))
b4bddc06 625 else:
9a316368 626 raise CmdException, 'Incorrect options. Unknown patches to send'
b4bddc06 627
ea09f8ce
GH
628 # early test for sender identity
629 __get_sender()
630
3c04f430
CM
631 out.start('Checking the validity of the patches')
632 for p in patches:
633 if crt_series.empty_patch(p):
634 raise CmdException, 'Cannot send empty patch "%s"' % p
635 out.done()
636
b4bddc06 637 total_nr = len(patches)
9a316368
CM
638 if total_nr == 0:
639 raise CmdException, 'No patches to send'
b4bddc06 640
c2a8af1d
CM
641 if options.refid:
642 if options.noreply or options.unrelated:
643 raise CmdException, \
644 '--refid option not allowed with --noreply or --unrelated'
d1ed3a12 645 ref_id = options.refid
c2a8af1d
CM
646 else:
647 ref_id = None
b4bddc06 648
b4bddc06 649
e3e05587 650 # send the cover message (if any)
0ba13ee9 651 if options.cover or options.edit_cover:
c2a8af1d
CM
652 if options.unrelated:
653 raise CmdException, 'cover sending not allowed with --unrelated'
654
e3e05587
CM
655 # find the template file
656 if options.cover:
16fee874 657 tmpl = file(options.cover).read()
e3e05587 658 else:
1f3bb017
CM
659 tmpl = templates.get_template('covermail.tmpl')
660 if not tmpl:
661 raise CmdException, 'No cover message template file found'
b4bddc06 662
9cb369d4 663 msg_id = __send_message('cover', tmpl, options, patches)
d650d6ed 664
b4bddc06 665 # subsequent e-mails are seen as replies to the first one
d1ed3a12
CM
666 if not options.noreply:
667 ref_id = msg_id
b4bddc06 668
b4bddc06
CM
669 # send the patches
670 if options.template:
1f3bb017 671 tmpl = file(options.template).read()
b4bddc06 672 else:
e5c32acf
CM
673 if options.attach:
674 tmpl = templates.get_template('mailattch.tmpl')
675 else:
676 tmpl = templates.get_template('patchmail.tmpl')
1f3bb017
CM
677 if not tmpl:
678 raise CmdException, 'No e-mail template file found'
b4bddc06 679
9cb369d4
AC
680 for (p, n) in zip(patches, range(1, total_nr + 1)):
681 msg_id = __send_message('patch', tmpl, options, p, n, total_nr, ref_id)
d650d6ed 682
b4bddc06 683 # subsequent e-mails are seen as replies to the first one
c2a8af1d 684 if not options.noreply and not options.unrelated and not ref_id:
b4bddc06 685 ref_id = msg_id