Following some discussions on the git list, it looks like the
committer's e-mail address doesn't have to be a valid one. The
above variable is generated from the author details defined in
the stgitrc file and is placed on the From: line in the default
e-mail template.
Signed-off-by: Catalin Marinas <catalin.marinas@gmail.com>
the following variables:
%(patch)s - patch name
the following variables:
%(patch)s - patch name
+ %(maintainer)s - 'authname <authemail>' as read from the config file
%(shortdescr)s - the first line of the patch description
%(longdescr)s - the rest of the patch description, after the first line
%(endofheaders)s - delimiter between e-mail headers and body
%(shortdescr)s - the first line of the patch description
%(longdescr)s - the rest of the patch description, after the first line
%(endofheaders)s - delimiter between e-mail headers and body
%(commname)s - committer's name
%(commemail)s - committer's e-mail
%(commname)s - committer's name
%(commemail)s - committer's e-mail
-For the preamble e-mail template, only the %(date)s, %(endofheaders)s
-and %(totalnr)s variables are supported."""
+For the preamble e-mail template, only the %(maintainer)s, %(date)s,
+%(endofheaders)s and %(totalnr)s variables are supported."""
options = [make_option('-a', '--all',
help = 'e-mail all the applied patches',
options = [make_option('-a', '--all',
help = 'e-mail all the applied patches',
help = 'username for SMTP authentication')]
help = 'username for SMTP authentication')]
+def __get_maintainer():
+ """Return the 'authname <authemail>' string as read from the
+ configuration file
+ """
+ if config.has_option('stgit', 'authname') \
+ and config.has_option('stgit', 'authemail'):
+ return '%s <%s>' % (config.get('stgit', 'authname'),
+ config.get('stgit', 'authemail'))
+ else:
+ return None
+
def __parse_addresses(string):
"""Return a two elements tuple: (from, [to])
"""
def __parse_addresses(string):
"""Return a two elements tuple: (from, [to])
"""
def __build_first(tmpl, total_nr, msg_id, options):
"""Build the first message (series description) to be sent via SMTP
"""
def __build_first(tmpl, total_nr, msg_id, options):
"""Build the first message (series description) to be sent via SMTP
"""
+ maintainer = __get_maintainer()
+ if not maintainer:
+ maintainer = ''
+
headers_end = ''
if options.to:
headers_end += 'To: %s\n' % options.to
headers_end = ''
if options.to:
headers_end += 'To: %s\n' % options.to
total_nr_str = str(total_nr)
total_nr_str = str(total_nr)
- tmpl_dict = {'endofheaders': headers_end,
+ tmpl_dict = {'maintainer': maintainer,
+ 'endofheaders': headers_end,
'date': email.Utils.formatdate(localtime = True),
'totalnr': total_nr_str}
'date': email.Utils.formatdate(localtime = True),
'totalnr': total_nr_str}
def __build_message(tmpl, patch, patch_nr, total_nr, msg_id, ref_id, options):
"""Build the message to be sent via SMTP
"""
def __build_message(tmpl, patch, patch_nr, total_nr, msg_id, ref_id, options):
"""Build the message to be sent via SMTP
"""
long_descr = reduce(lambda x, y: x + '\n' + y,
descr_lines[1:], '').lstrip()
long_descr = reduce(lambda x, y: x + '\n' + y,
descr_lines[1:], '').lstrip()
+ maintainer = __get_maintainer()
+ if not maintainer:
+ maintainer = '%s <%s>' % (p.get_commname(), p.get_commemail())
+
headers_end = ''
if options.to:
headers_end += 'To: %s\n' % options.to
headers_end = ''
if options.to:
headers_end += 'To: %s\n' % options.to
patch_nr_str = str(patch_nr).zfill(len(total_nr_str))
tmpl_dict = {'patch': patch,
patch_nr_str = str(patch_nr).zfill(len(total_nr_str))
tmpl_dict = {'patch': patch,
+ 'maintainer': maintainer,
'shortdescr': short_descr,
'longdescr': long_descr,
'endofheaders': headers_end,
'shortdescr': short_descr,
'longdescr': long_descr,
'endofheaders': headers_end,
def func(parser, options, args):
"""Send the patches by e-mail using the patchmail.tmpl file as
a template
def func(parser, options, args):
"""Send the patches by e-mail using the patchmail.tmpl file as
a template
-From: %(commname)s <%(commemail)s>
Subject: [PATCH %(patchnr)s/%(totalnr)s] %(shortdescr)s
Date: %(date)s
%(endofheaders)s
Subject: [PATCH %(patchnr)s/%(totalnr)s] %(shortdescr)s
Date: %(date)s
%(endofheaders)s