patchbomb.py
507 lines
| 18.7 KiB
| text/x-python
|
PythonLexer
/ hgext / patchbomb.py
Martin Geisler
|
r8252 | # patchbomb.py - sending Mercurial changesets as patch emails | ||
# | ||||
# Copyright 2005-2009 Matt Mackall <mpm@selenic.com> and others | ||||
# | ||||
# This software may be used and distributed according to the terms of the | ||||
# GNU General Public License version 2, incorporated herein by reference. | ||||
Dirkjan Ochtman
|
r6666 | '''sending Mercurial changesets as a series of patch emails | ||
Martin Geisler
|
r7997 | The series is started off with a "[PATCH 0 of N]" introduction, which | ||
describes the series as a whole. | ||||
Dirkjan Ochtman
|
r6666 | |||
Martin Geisler
|
r7997 | Each patch email has a Subject line of "[PATCH M of N] ...", using the | ||
first line of the changeset description as the subject text. The | ||||
message contains two or three body parts: | ||||
Dirkjan Ochtman
|
r6666 | |||
Cédric Duval
|
r8471 | The changeset description. | ||
Dirkjan Ochtman
|
r6666 | |||
Alexander Solovyov
|
r7547 | [Optional] The result of running diffstat on the patch. | ||
Dirkjan Ochtman
|
r6666 | |||
The patch itself, as generated by "hg export". | ||||
Cédric Duval
|
r8510 | Each message refers to the first in the series using the In-Reply-To | ||
Martin Geisler
|
r7997 | and References headers, so they will show up as a sequence in threaded | ||
mail and news readers, and in mail archives. | ||||
Dirkjan Ochtman
|
r6666 | |||
Cédric Duval
|
r8511 | With the -d/--diffstat option, you will be prompted for each changeset | ||
with a diffstat summary and the changeset summary, so you can be sure | ||||
you are sending the right changes. | ||||
Dirkjan Ochtman
|
r6666 | |||
Martin Geisler
|
r7997 | To configure other defaults, add a section like this to your hgrc | ||
file: | ||||
Dirkjan Ochtman
|
r6666 | |||
[email] | ||||
from = My Name <my@email> | ||||
to = recipient1, recipient2, ... | ||||
cc = cc1, cc2, ... | ||||
bcc = bcc1, bcc2, ... | ||||
Then you can use the "hg email" command to mail a series of changesets | ||||
as a patchbomb. | ||||
To avoid sending patches prematurely, it is a good idea to first run | ||||
Martin Geisler
|
r7983 | the "email" command with the "-n" option (test only). You will be | ||
Cédric Duval
|
r8512 | prompted for an email recipient address, a subject and an introductory | ||
Martin Geisler
|
r7983 | message describing the patches of your patchbomb. Then when all is | ||
Cédric Duval
|
r8512 | done, patchbomb messages are displayed. If the PAGER environment | ||
variable is set, your pager will be fired up once for each patchbomb | ||||
message, so you can verify everything is alright. | ||||
Dirkjan Ochtman
|
r6666 | |||
Martin Geisler
|
r8076 | The -m/--mbox option is also very useful. Instead of previewing each | ||
Martin Geisler
|
r7997 | patchbomb message in a pager or sending the messages directly, it will | ||
create a UNIX mailbox file with the patch emails. This mailbox file | ||||
can be previewed with any mail user agent which supports UNIX mbox | ||||
files, e.g. with mutt: | ||||
Dirkjan Ochtman
|
r6666 | |||
% mutt -R -f mbox | ||||
When you are previewing the patchbomb messages, you can use `formail' | ||||
Martin Geisler
|
r7997 | (a utility that is commonly installed as part of the procmail | ||
package), to send each message out: | ||||
Dirkjan Ochtman
|
r6666 | |||
% formail -s sendmail -bm -t < mbox | ||||
Bill Barry
|
r7694 | That should be all. Now your patchbomb is on its way out. | ||
You can also either configure the method option in the email section | ||||
Cédric Duval
|
r8512 | to be a sendmail compatible mailer or fill out the [smtp] section so | ||
Martin Geisler
|
r7997 | that the patchbomb extension can automatically send patchbombs | ||
directly from the commandline. See the [email] and [smtp] sections in | ||||
hgrc(5) for details.''' | ||||
Vadim Gelfer
|
r1669 | |||
Christian Ebert
|
r6478 | import os, errno, socket, tempfile, cStringIO | ||
Christian Ebert
|
r7192 | import email.MIMEMultipart, email.MIMEBase | ||
Benoit Boissinot
|
r6447 | import email.Utils, email.Encoders, email.Generator | ||
Martin Geisler
|
r7685 | from mercurial import cmdutil, commands, hg, mail, patch, util | ||
Matt Mackall
|
r3891 | from mercurial.i18n import _ | ||
Joel Rosdahl
|
r6211 | from mercurial.node import bin | ||
Vadim Gelfer
|
r1669 | |||
Dirkjan Ochtman
|
r7354 | def prompt(ui, prompt, default=None, rest=': ', empty_ok=False): | ||
Matt Mackall
|
r8208 | if not ui.interactive(): | ||
Dirkjan Ochtman
|
r7354 | return default | ||
if default: | ||||
prompt += ' [%s]' % default | ||||
prompt += rest | ||||
while True: | ||||
r = ui.prompt(prompt, default=default) | ||||
if r: | ||||
return r | ||||
if default is not None: | ||||
return default | ||||
if empty_ok: | ||||
return r | ||||
ui.warn(_('Please enter a valid value.\n')) | ||||
def cdiffstat(ui, summary, patchlines): | ||||
s = patch.diffstat(patchlines) | ||||
Alexander Solovyov
|
r7547 | if summary: | ||
ui.write(summary, '\n') | ||||
ui.write(s, '\n') | ||||
Martin Geisler
|
r7600 | ans = prompt(ui, _('does the diffstat above look okay? '), 'y') | ||
Alexander Solovyov
|
r7547 | if not ans.lower().startswith('y'): | ||
raise util.Abort(_('diffstat rejected')) | ||||
Dirkjan Ochtman
|
r7354 | return s | ||
def makepatch(ui, repo, patch, opts, _charsets, idx, total, patchname=None): | ||||
desc = [] | ||||
node = None | ||||
body = '' | ||||
for line in patch: | ||||
if line.startswith('#'): | ||||
if line.startswith('# Node ID'): | ||||
node = line.split()[-1] | ||||
continue | ||||
if line.startswith('diff -r') or line.startswith('diff --git'): | ||||
break | ||||
desc.append(line) | ||||
if not patchname and not node: | ||||
raise ValueError | ||||
if opts.get('attach'): | ||||
body = ('\n'.join(desc[1:]).strip() or | ||||
'Patch subject is complete summary.') | ||||
body += '\n\n\n' | ||||
if opts.get('plain'): | ||||
while patch and patch[0].startswith('# '): | ||||
patch.pop(0) | ||||
if patch: | ||||
patch.pop(0) | ||||
while patch and not patch[0].strip(): | ||||
patch.pop(0) | ||||
if opts.get('diffstat'): | ||||
body += cdiffstat(ui, '\n'.join(desc), patch) + '\n\n' | ||||
if opts.get('attach') or opts.get('inline'): | ||||
msg = email.MIMEMultipart.MIMEMultipart() | ||||
if body: | ||||
msg.attach(mail.mimeencode(ui, body, _charsets, opts.get('test'))) | ||||
p = mail.mimetextpatch('\n'.join(patch), 'x-patch', opts.get('test')) | ||||
binnode = bin(node) | ||||
timeless
|
r8761 | # if node is mq patch, it will have the patch file's name as a tag | ||
Dirkjan Ochtman
|
r7354 | if not patchname: | ||
patchtags = [t for t in repo.nodetags(binnode) | ||||
if t.endswith('.patch') or t.endswith('.diff')] | ||||
if patchtags: | ||||
patchname = patchtags[0] | ||||
elif total > 1: | ||||
patchname = cmdutil.make_filename(repo, '%b-%n.patch', | ||||
Peter Arrenbrecht
|
r7359 | binnode, seqno=idx, total=total) | ||
Dirkjan Ochtman
|
r7354 | else: | ||
patchname = cmdutil.make_filename(repo, '%b.patch', binnode) | ||||
disposition = 'inline' | ||||
if opts.get('attach'): | ||||
disposition = 'attachment' | ||||
p['Content-Disposition'] = disposition + '; filename=' + patchname | ||||
msg.attach(p) | ||||
else: | ||||
body += '\n'.join(patch) | ||||
msg = mail.mimetextpatch(body, display=opts.get('test')) | ||||
subj = desc[0].strip().rstrip('. ') | ||||
Chris Winter
|
r7360 | if total == 1 and not opts.get('intro'): | ||
Dirkjan Ochtman
|
r7354 | subj = '[PATCH] ' + (opts.get('subject') or subj) | ||
else: | ||||
tlen = len(str(total)) | ||||
subj = '[PATCH %0*d of %d] %s' % (tlen, idx, total, subj) | ||||
msg['Subject'] = mail.headencode(ui, subj, _charsets, opts.get('test')) | ||||
msg['X-Mercurial-Node'] = node | ||||
return msg, subj | ||||
Vadim Gelfer
|
r1669 | def patchbomb(ui, repo, *revs, **opts): | ||
John Goerzen
|
r4283 | '''send changesets by email | ||
Vadim Gelfer
|
r1669 | |||
John Goerzen
|
r4283 | By default, diffs are sent in the format generated by hg export, | ||
Martin Geisler
|
r7983 | one per message. The series starts with a "[PATCH 0 of N]" | ||
John Goerzen
|
r4283 | introduction, which describes the series as a whole. | ||
Vadim Gelfer
|
r1672 | |||
Each patch email has a Subject line of "[PATCH M of N] ...", using | ||||
the first line of the changeset description as the subject text. | ||||
Cédric Duval
|
r8471 | The message contains two or three parts. First, the changeset | ||
description. Next, (optionally) if the diffstat program is | ||||
Cédric Duval
|
r8473 | installed and -d/--diffstat is used, the result of running | ||
diffstat on the patch. Finally, the patch itself, as generated by | ||||
"hg export". | ||||
Brendan Cully
|
r4262 | |||
Martin Geisler
|
r8472 | By default the patch is included as text in the email body for | ||
easy reviewing. Using the -a/--attach option will instead create | ||||
an attachment for the patch. With -i/--inline an inline attachment | ||||
will be created. | ||||
Martin Geisler
|
r8076 | With -o/--outgoing, emails will be generated for patches not found | ||
in the destination repository (or only those which are ancestors | ||||
of the specified revisions if any are provided) | ||||
John Goerzen
|
r4280 | |||
Martin Geisler
|
r8076 | With -b/--bundle, changesets are selected as for --outgoing, but a | ||
Martin Geisler
|
r7997 | single email containing a binary Mercurial bundle as an attachment | ||
will be sent. | ||||
John Goerzen
|
r4280 | |||
Examples: | ||||
hg email -r 3000 # send patch 3000 only | ||||
hg email -r 3000 -r 3001 # send patches 3000 and 3001 | ||||
hg email -r 3000:3005 # send patches 3000 through 3005 | ||||
hg email 3000 # send patch 3000 (deprecated) | ||||
hg email -o # send all patches not in default | ||||
hg email -o DEST # send all patches not in DEST | ||||
hg email -o -r 3000 # send all ancestors of 3000 not in default | ||||
hg email -o -r 3000 DEST # send all ancestors of 3000 not in DEST | ||||
hg email -b # send bundle of all patches not in default | ||||
hg email -b DEST # send bundle of all patches not in DEST | ||||
hg email -b -r 3000 # bundle of all ancestors of 3000 not in default | ||||
hg email -b -r 3000 DEST # bundle of all ancestors of 3000 not in DEST | ||||
Martin Geisler
|
r7997 | Before using this command, you will need to enable email in your | ||
hgrc. See the [email] section in hgrc(5) for details. | ||||
Brendan Cully
|
r4262 | ''' | ||
Christian Ebert
|
r7115 | _charsets = mail._charsets(ui) | ||
Brendan Cully
|
r4262 | def outgoing(dest, revs): | ||
'''Return the revisions present locally but not in dest''' | ||||
dest = ui.expandpath(dest or 'default-push', dest or 'default') | ||||
revs = [repo.lookup(rev) for rev in revs] | ||||
Matt Mackall
|
r8188 | other = hg.repository(cmdutil.remoteui(repo, opts), dest) | ||
Brendan Cully
|
r4262 | ui.status(_('comparing with %s\n') % dest) | ||
o = repo.findoutgoing(other) | ||||
if not o: | ||||
ui.status(_("no changes found\n")) | ||||
return [] | ||||
o = repo.changelog.nodesbetween(o, revs or None)[0] | ||||
return [str(repo.changelog.rev(r)) for r in o] | ||||
Benoit Boissinot
|
r7615 | def getpatches(revs): | ||
for r in cmdutil.revrange(repo, revs): | ||||
output = cStringIO.StringIO() | ||||
Peter Arrenbrecht
|
r7874 | patch.export(repo, [r], fp=output, | ||
opts=patch.diffopts(ui, opts)) | ||||
Benoit Boissinot
|
r7615 | yield output.getvalue().split('\n') | ||
John Goerzen
|
r4279 | def getbundle(dest): | ||
John Goerzen
|
r4278 | tmpdir = tempfile.mkdtemp(prefix='hg-email-bundle-') | ||
tmpfn = os.path.join(tmpdir, 'bundle') | ||||
try: | ||||
John Goerzen
|
r4279 | commands.bundle(ui, repo, tmpfn, dest, **opts) | ||
Patrick Mezard
|
r5752 | return open(tmpfn, 'rb').read() | ||
John Goerzen
|
r4278 | finally: | ||
try: | ||||
os.unlink(tmpfn) | ||||
except: | ||||
pass | ||||
os.rmdir(tmpdir) | ||||
Christian Ebert
|
r5818 | if not (opts.get('test') or opts.get('mbox')): | ||
Christian Ebert
|
r5472 | # really sending | ||
Bryan O'Sullivan
|
r4489 | mail.validateconfig(ui) | ||
Christian Ebert
|
r5643 | if not (revs or opts.get('rev') | ||
Peter Arrenbrecht
|
r7353 | or opts.get('outgoing') or opts.get('bundle') | ||
or opts.get('patches')): | ||||
Bryan O'Sullivan
|
r4493 | raise util.Abort(_('specify at least one changeset with -r or -o')) | ||
Bryan O'Sullivan
|
r4492 | if opts.get('outgoing') and opts.get('bundle'): | ||
Christian Ebert
|
r5746 | raise util.Abort(_("--outgoing mode always on with --bundle;" | ||
" do not re-specify --outgoing")) | ||||
John Goerzen
|
r4278 | |||
if opts.get('outgoing') or opts.get('bundle'): | ||||
Brendan Cully
|
r4262 | if len(revs) > 1: | ||
raise util.Abort(_("too many destinations")) | ||||
dest = revs and revs[0] or None | ||||
revs = [] | ||||
if opts.get('rev'): | ||||
if revs: | ||||
raise util.Abort(_('use only one form to specify the revision')) | ||||
revs = opts.get('rev') | ||||
if opts.get('outgoing'): | ||||
revs = outgoing(dest, opts.get('rev')) | ||||
John Goerzen
|
r4279 | if opts.get('bundle'): | ||
opts['revs'] = revs | ||||
Brendan Cully
|
r4262 | |||
# start | ||||
Bryan O'Sullivan
|
r4566 | if opts.get('date'): | ||
Christian Ebert
|
r5818 | start_time = util.parsedate(opts.get('date')) | ||
Bryan O'Sullivan
|
r4566 | else: | ||
start_time = util.makedate() | ||||
Vadim Gelfer
|
r1669 | |||
def genmsgid(id): | ||||
Christian Ebert
|
r4027 | return '<%s.%s@%s>' % (id[:20], int(start_time[0]), socket.getfqdn()) | ||
Vadim Gelfer
|
r1669 | |||
Patrick Mezard
|
r5753 | def getdescription(body, sender): | ||
Christian Ebert
|
r5818 | if opts.get('desc'): | ||
body = open(opts.get('desc')).read() | ||||
Patrick Mezard
|
r5753 | else: | ||
ui.write(_('\nWrite the introductory message for the ' | ||||
'patch series.\n\n')) | ||||
body = ui.edit(body, sender) | ||||
return body | ||||
Peter Arrenbrecht
|
r7353 | def getpatchmsgs(patches, patchnames=None): | ||
John Goerzen
|
r4278 | jumbo = [] | ||
msgs = [] | ||||
Vadim Gelfer
|
r1669 | |||
Christian Ebert
|
r5746 | ui.write(_('This patch series consists of %d patches.\n\n') | ||
% len(patches)) | ||||
John Goerzen
|
r4278 | |||
Peter Arrenbrecht
|
r7353 | name = None | ||
Benoit Boissinot
|
r7616 | for i, p in enumerate(patches): | ||
John Goerzen
|
r4278 | jumbo.extend(p) | ||
Peter Arrenbrecht
|
r7353 | if patchnames: | ||
name = patchnames[i] | ||||
Dirkjan Ochtman
|
r7354 | msg = makepatch(ui, repo, p, opts, _charsets, i + 1, | ||
len(patches), name) | ||||
msgs.append(msg) | ||||
John Goerzen
|
r4278 | |||
Chris Winter
|
r7360 | if len(patches) > 1 or opts.get('intro'): | ||
John Goerzen
|
r4278 | tlen = len(str(len(patches))) | ||
Vadim Gelfer
|
r1669 | |||
John Goerzen
|
r4278 | subj = '[PATCH %0*d of %d] %s' % ( | ||
Christian Ebert
|
r5786 | tlen, 0, len(patches), | ||
Christian Ebert
|
r5818 | opts.get('subject') or | ||
Dirkjan Ochtman
|
r7354 | prompt(ui, 'Subject:', | ||
Christian Ebert
|
r5786 | rest=' [PATCH %0*d of %d] ' % (tlen, 0, len(patches)))) | ||
Vadim Gelfer
|
r1669 | |||
John Goerzen
|
r4278 | body = '' | ||
Christian Ebert
|
r5818 | if opts.get('diffstat'): | ||
Dirkjan Ochtman
|
r7354 | d = cdiffstat(ui, _('Final summary:\n'), jumbo) | ||
Christian Ebert
|
r5785 | if d: | ||
body = '\n' + d | ||||
John Goerzen
|
r4278 | |||
Patrick Mezard
|
r5753 | body = getdescription(body, sender) | ||
Christian Ebert
|
r7115 | msg = mail.mimeencode(ui, body, _charsets, opts.get('test')) | ||
msg['Subject'] = mail.headencode(ui, subj, _charsets, | ||||
opts.get('test')) | ||||
Vadim Gelfer
|
r1669 | |||
Christian Ebert
|
r7115 | msgs.insert(0, (msg, subj)) | ||
John Goerzen
|
r4278 | return msgs | ||
Christian Ebert
|
r2704 | |||
John Goerzen
|
r4278 | def getbundlemsgs(bundle): | ||
Christian Ebert
|
r5818 | subj = (opts.get('subject') | ||
Dirkjan Ochtman
|
r7354 | or prompt(ui, 'Subject:', 'A bundle for your repository')) | ||
Vadim Gelfer
|
r1669 | |||
Patrick Mezard
|
r5753 | body = getdescription('', sender) | ||
John Goerzen
|
r4278 | msg = email.MIMEMultipart.MIMEMultipart() | ||
if body: | ||||
Christian Ebert
|
r7115 | msg.attach(mail.mimeencode(ui, body, _charsets, opts.get('test'))) | ||
John Goerzen
|
r4278 | datapart = email.MIMEBase.MIMEBase('application', 'x-mercurial-bundle') | ||
datapart.set_payload(bundle) | ||||
John Mulligan
|
r7889 | bundlename = '%s.hg' % opts.get('bundlename', 'bundle') | ||
John Goerzen
|
r4284 | datapart.add_header('Content-Disposition', 'attachment', | ||
John Mulligan
|
r7889 | filename=bundlename) | ||
John Goerzen
|
r4278 | email.Encoders.encode_base64(datapart) | ||
msg.attach(datapart) | ||||
Christian Ebert
|
r7115 | msg['Subject'] = mail.headencode(ui, subj, _charsets, opts.get('test')) | ||
return [(msg, subj)] | ||||
Vadim Gelfer
|
r1669 | |||
Christian Ebert
|
r5818 | sender = (opts.get('from') or ui.config('email', 'from') or | ||
Vadim Gelfer
|
r2198 | ui.config('patchbomb', 'from') or | ||
Dirkjan Ochtman
|
r7354 | prompt(ui, 'From', ui.username())) | ||
Vadim Gelfer
|
r1669 | |||
Benoit Boissinot
|
r7615 | # internal option used by pbranches | ||
Peter Arrenbrecht
|
r7353 | patches = opts.get('patches') | ||
if patches: | ||||
msgs = getpatchmsgs(patches, opts.get('patchnames')) | ||||
elif opts.get('bundle'): | ||||
John Goerzen
|
r4279 | msgs = getbundlemsgs(getbundle(dest)) | ||
John Goerzen
|
r4278 | else: | ||
Benoit Boissinot
|
r7615 | msgs = getpatchmsgs(list(getpatches(revs))) | ||
Vadim Gelfer
|
r1669 | |||
def getaddrs(opt, prpt, default = None): | ||||
Christian Ebert
|
r5818 | addrs = opts.get(opt) or (ui.config('email', opt) or | ||
ui.config('patchbomb', opt) or | ||||
Dirkjan Ochtman
|
r7354 | prompt(ui, prpt, default)).split(',') | ||
Christian Ebert
|
r7115 | return [mail.addressencode(ui, a.strip(), _charsets, opts.get('test')) | ||
for a in addrs if a.strip()] | ||||
Bryan O'Sullivan
|
r4485 | |||
Vadim Gelfer
|
r1669 | to = getaddrs('to', 'To') | ||
cc = getaddrs('cc', 'Cc', '') | ||||
Christian Ebert
|
r5818 | bcc = opts.get('bcc') or (ui.config('email', 'bcc') or | ||
Christian Ebert
|
r2679 | ui.config('patchbomb', 'bcc') or '').split(',') | ||
Christian Ebert
|
r7115 | bcc = [mail.addressencode(ui, a.strip(), _charsets, opts.get('test')) | ||
for a in bcc if a.strip()] | ||||
Christian Ebert
|
r2679 | |||
Vadim Gelfer
|
r1669 | ui.write('\n') | ||
Henrik Stuart <henrik.stuart at edlund.dk>
|
r8025 | parent = opts.get('in_reply_to') or None | ||
Cédric Duval
|
r8826 | # angle brackets may be omitted, they're not semantically part of the msg-id | ||
if parent is not None: | ||||
if not parent.startswith('<'): | ||||
parent = '<' + parent | ||||
if not parent.endswith('>'): | ||||
parent += '>' | ||||
Cédric Duval
|
r8514 | first = True | ||
Volker Kleinfeld
|
r2443 | |||
Vadim Gelfer
|
r1827 | sender_addr = email.Utils.parseaddr(sender)[1] | ||
Christian Ebert
|
r7115 | sender = mail.addressencode(ui, sender, _charsets, opts.get('test')) | ||
Matt Mackall
|
r5973 | sendmail = None | ||
Christian Ebert
|
r7115 | for m, subj in msgs: | ||
Vadim Gelfer
|
r1669 | try: | ||
m['Message-Id'] = genmsgid(m['X-Mercurial-Node']) | ||||
except TypeError: | ||||
m['Message-Id'] = genmsgid('patchbomb') | ||||
if parent: | ||||
m['In-Reply-To'] = parent | ||||
Benoit Allard
|
r7413 | m['References'] = parent | ||
Cédric Duval
|
r8514 | if first: | ||
Vadim Gelfer
|
r1669 | parent = m['Message-Id'] | ||
Cédric Duval
|
r8514 | first = False | ||
Henrik Stuart
|
r8160 | m['User-Agent'] = 'Mercurial-patchbomb/%s' % util.version() | ||
Dirkjan Ochtman
|
r8520 | m['Date'] = email.Utils.formatdate(start_time[0]) | ||
Volker Kleinfeld
|
r2443 | |||
Christian Ebert
|
r4027 | start_time = (start_time[0] + 1, start_time[1]) | ||
Vadim Gelfer
|
r1669 | m['From'] = sender | ||
m['To'] = ', '.join(to) | ||||
Christian Ebert
|
r5785 | if cc: | ||
m['Cc'] = ', '.join(cc) | ||||
if bcc: | ||||
m['Bcc'] = ', '.join(bcc) | ||||
Christian Ebert
|
r5818 | if opts.get('test'): | ||
Christian Ebert
|
r7115 | ui.status(_('Displaying '), subj, ' ...\n') | ||
Patrick Mezard
|
r4596 | ui.flush() | ||
Patrick Mezard
|
r4599 | if 'PAGER' in os.environ: | ||
Dirkjan Ochtman
|
r6548 | fp = util.popen(os.environ['PAGER'], 'w') | ||
Patrick Mezard
|
r4599 | else: | ||
fp = ui | ||||
Benoit Boissinot
|
r6447 | generator = email.Generator.Generator(fp, mangle_from_=False) | ||
Vadim Gelfer
|
r1871 | try: | ||
Benoit Boissinot
|
r6447 | generator.flatten(m, 0) | ||
Vadim Gelfer
|
r1871 | fp.write('\n') | ||
except IOError, inst: | ||||
if inst.errno != errno.EPIPE: | ||||
raise | ||||
Patrick Mezard
|
r4599 | if fp is not ui: | ||
fp.close() | ||||
Christian Ebert
|
r5818 | elif opts.get('mbox'): | ||
Christian Ebert
|
r7115 | ui.status(_('Writing '), subj, ' ...\n') | ||
Christian Ebert
|
r5915 | fp = open(opts.get('mbox'), 'In-Reply-To' in m and 'ab+' or 'wb+') | ||
Benoit Boissinot
|
r6447 | generator = email.Generator.Generator(fp, mangle_from_=True) | ||
Matt Mackall
|
r6229 | date = util.datestr(start_time, '%a %b %d %H:%M:%S %Y') | ||
Johannes Stezenbach
|
r1702 | fp.write('From %s %s\n' % (sender_addr, date)) | ||
Benoit Boissinot
|
r6447 | generator.flatten(m, 0) | ||
Johannes Stezenbach
|
r1702 | fp.write('\n\n') | ||
fp.close() | ||||
Vadim Gelfer
|
r1669 | else: | ||
Matt Mackall
|
r5973 | if not sendmail: | ||
sendmail = mail.connect(ui) | ||||
Christian Ebert
|
r7115 | ui.status(_('Sending '), subj, ' ...\n') | ||
Benoit Boissinot
|
r2790 | # Exim does not remove the Bcc field | ||
del m['Bcc'] | ||||
Benoit Boissinot
|
r6447 | fp = cStringIO.StringIO() | ||
generator = email.Generator.Generator(fp, mangle_from_=False) | ||||
generator.flatten(m, 0) | ||||
sendmail(sender, to + bcc + cc, fp.getvalue()) | ||||
Vadim Gelfer
|
r1669 | |||
Peter Arrenbrecht
|
r7352 | emailopts = [ | ||
('a', 'attach', None, _('send patches as attachments')), | ||||
Dennis Schoen
|
r5819 | ('i', 'inline', None, _('send patches as inline attachments')), | ||
timeless
|
r7807 | ('', 'bcc', [], _('email addresses of blind carbon copy recipients')), | ||
Thomas Arendsen Hein
|
r4730 | ('c', 'cc', [], _('email addresses of copy recipients')), | ||
('d', 'diffstat', None, _('add diffstat output to messages')), | ||||
('', 'date', '', _('use the given date as the sending date')), | ||||
Bryan O'Sullivan
|
r4887 | ('', 'desc', '', _('use the given file as the series description')), | ||
Thomas Arendsen Hein
|
r4730 | ('f', 'from', '', _('email address of sender')), | ||
('n', 'test', None, _('print messages that would be sent')), | ||||
('m', 'mbox', '', | ||||
_('write messages to mbox file instead of sending them')), | ||||
Peter Arrenbrecht
|
r7352 | ('s', 'subject', '', | ||
_('subject of first message (intro or single patch)')), | ||||
Henrik Stuart <henrik.stuart at edlund.dk>
|
r8025 | ('', 'in-reply-to', '', | ||
Martin Geisler
|
r8331 | _('message identifier to reply to')), | ||
Peter Arrenbrecht
|
r7352 | ('t', 'to', [], _('email addresses of recipients')), | ||
] | ||||
cmdtable = { | ||||
"email": | ||||
(patchbomb, | ||||
[('g', 'git', None, _('use git extended diff format')), | ||||
('', 'plain', None, _('omit hg patch header')), | ||||
Thomas Arendsen Hein
|
r4730 | ('o', 'outgoing', None, | ||
_('send changes not found in the target repository')), | ||||
('b', 'bundle', None, | ||||
_('send changes not in target as a binary bundle')), | ||||
John Mulligan
|
r7889 | ('', 'bundlename', 'bundle', | ||
timeless
|
r8761 | _('name of the bundle attachment file')), | ||
Thomas Arendsen Hein
|
r4730 | ('r', 'rev', [], _('a revision to send')), | ||
('', 'force', None, | ||||
Martin Geisler
|
r8076 | _('run even when remote repository is unrelated ' | ||
'(with -b/--bundle)')), | ||||
Thomas Arendsen Hein
|
r4730 | ('', 'base', [], | ||
Martin Geisler
|
r8076 | _('a base changeset to specify instead of a destination ' | ||
'(with -b/--bundle)')), | ||||
Chris Winter
|
r7360 | ('', 'intro', None, | ||
_('send an introduction email for a single patch')), | ||||
Peter Arrenbrecht
|
r7352 | ] + emailopts + commands.remoteopts, | ||
Thomas Arendsen Hein
|
r4730 | _('hg email [OPTION]... [DEST]...')) | ||
} | ||||