mail.py
406 lines
| 14.6 KiB
| text/x-python
|
PythonLexer
/ mercurial / mail.py
Matt Mackall
|
r2889 | # mail.py - mail sending bits for mercurial | ||
# | ||||
# Copyright 2006 Matt Mackall <mpm@selenic.com> | ||||
# | ||||
Martin Geisler
|
r8225 | # This software may be used and distributed according to the terms of the | ||
Matt Mackall
|
r10263 | # GNU General Public License version 2 or any later version. | ||
Matt Mackall
|
r2889 | |||
Yuya Nishihara
|
r30325 | from __future__ import absolute_import | ||
Gregory Szorc
|
r25957 | |||
Augie Fackler
|
r19790 | import email | ||
Gábor Stefanik
|
r30089 | import email.charset | ||
Pulkit Goyal
|
r30072 | import email.header | ||
Igor Ippolitov
|
r34311 | import email.message | ||
Yuya Nishihara
|
r38354 | import email.parser | ||
import io | ||||
Gregory Szorc
|
r25957 | import os | ||
import smtplib | ||||
import socket | ||||
import time | ||||
from .i18n import _ | ||||
from . import ( | ||||
encoding, | ||||
Pierre-Yves David
|
r26587 | error, | ||
Gregory Szorc
|
r36064 | pycompat, | ||
Gregory Szorc
|
r25957 | sslutil, | ||
util, | ||||
) | ||||
Yuya Nishihara
|
r37102 | from .utils import ( | ||
Yuya Nishihara
|
r37138 | procutil, | ||
Yuya Nishihara
|
r37102 | stringutil, | ||
) | ||||
Matt Mackall
|
r2889 | |||
FUJIWARA Katsunori
|
r18885 | class STARTTLS(smtplib.SMTP): | ||
'''Derived class to verify the peer certificate for STARTTLS. | ||||
This class allows to pass any keyword arguments to SSL socket creation. | ||||
''' | ||||
Gregory Szorc
|
r29251 | def __init__(self, ui, host=None, **kwargs): | ||
FUJIWARA Katsunori
|
r18885 | smtplib.SMTP.__init__(self, **kwargs) | ||
Gregory Szorc
|
r29248 | self._ui = ui | ||
timeless
|
r28935 | self._host = host | ||
FUJIWARA Katsunori
|
r18885 | |||
def starttls(self, keyfile=None, certfile=None): | ||||
if not self.has_extn("starttls"): | ||||
msg = "STARTTLS extension not supported by server" | ||||
raise smtplib.SMTPException(msg) | ||||
(resp, reply) = self.docmd("STARTTLS") | ||||
if resp == 220: | ||||
Yuya Nishihara
|
r25429 | self.sock = sslutil.wrapsocket(self.sock, keyfile, certfile, | ||
Gregory Szorc
|
r29248 | ui=self._ui, | ||
Gregory Szorc
|
r29251 | serverhostname=self._host) | ||
FUJIWARA Katsunori
|
r18885 | self.file = smtplib.SSLFakeFile(self.sock) | ||
self.helo_resp = None | ||||
self.ehlo_resp = None | ||||
self.esmtp_features = {} | ||||
self.does_esmtp = 0 | ||||
return (resp, reply) | ||||
timeless@mozdev.org
|
r26673 | class SMTPS(smtplib.SMTP): | ||
'''Derived class to verify the peer certificate for SMTPS. | ||||
FUJIWARA Katsunori
|
r18886 | |||
timeless@mozdev.org
|
r26673 | This class allows to pass any keyword arguments to SSL socket creation. | ||
''' | ||||
Gregory Szorc
|
r29251 | def __init__(self, ui, keyfile=None, certfile=None, host=None, | ||
timeless
|
r28935 | **kwargs): | ||
timeless@mozdev.org
|
r26673 | self.keyfile = keyfile | ||
self.certfile = certfile | ||||
smtplib.SMTP.__init__(self, **kwargs) | ||||
timeless
|
r28935 | self._host = host | ||
timeless@mozdev.org
|
r26673 | self.default_port = smtplib.SMTP_SSL_PORT | ||
Gregory Szorc
|
r29248 | self._ui = ui | ||
timeless@mozdev.org
|
r26673 | |||
def _get_socket(self, host, port, timeout): | ||||
if self.debuglevel > 0: | ||||
Augie Fackler
|
r39063 | self._ui.debug('connect: %r\n' % ((host, port),)) | ||
timeless@mozdev.org
|
r26673 | new_socket = socket.create_connection((host, port), timeout) | ||
new_socket = sslutil.wrapsocket(new_socket, | ||||
self.keyfile, self.certfile, | ||||
Gregory Szorc
|
r29248 | ui=self._ui, | ||
Gregory Szorc
|
r29251 | serverhostname=self._host) | ||
Augie Fackler
|
r39061 | self.file = new_socket.makefile(r'rb') | ||
timeless@mozdev.org
|
r26673 | return new_socket | ||
FUJIWARA Katsunori
|
r18886 | |||
Augie Fackler
|
r39060 | def _pyhastls(): | ||
"""Returns true iff Python has TLS support, false otherwise.""" | ||||
try: | ||||
import ssl | ||||
getattr(ssl, 'HAS_TLS', False) | ||||
return True | ||||
except ImportError: | ||||
return False | ||||
Matt Mackall
|
r2889 | def _smtp(ui): | ||
Matt Mackall
|
r5973 | '''build an smtp connection and return a function to send mail''' | ||
Matt Mackall
|
r2889 | local_hostname = ui.config('smtp', 'local_hostname') | ||
Jun Wu
|
r33499 | tls = ui.config('smtp', 'tls') | ||
Zhigang Wang
|
r13201 | # backward compatible: when tls = true, we use starttls. | ||
Yuya Nishihara
|
r37102 | starttls = tls == 'starttls' or stringutil.parsebool(tls) | ||
Zhigang Wang
|
r13201 | smtps = tls == 'smtps' | ||
Augie Fackler
|
r39060 | if (starttls or smtps) and not _pyhastls(): | ||
Pierre-Yves David
|
r26587 | raise error.Abort(_("can't use TLS: Python SSL support not installed")) | ||
Matt Mackall
|
r2889 | mailhost = ui.config('smtp', 'host') | ||
if not mailhost: | ||||
Pierre-Yves David
|
r26587 | raise error.Abort(_('smtp.host not configured - cannot send mail')) | ||
FUJIWARA Katsunori
|
r18888 | if smtps: | ||
ui.note(_('(using smtps)\n')) | ||||
Gregory Szorc
|
r29251 | s = SMTPS(ui, local_hostname=local_hostname, host=mailhost) | ||
FUJIWARA Katsunori
|
r18888 | elif starttls: | ||
Gregory Szorc
|
r29251 | s = STARTTLS(ui, local_hostname=local_hostname, host=mailhost) | ||
FUJIWARA Katsunori
|
r18888 | else: | ||
s = smtplib.SMTP(local_hostname=local_hostname) | ||||
FUJIWARA Katsunori
|
r19050 | if smtps: | ||
defaultport = 465 | ||||
else: | ||||
defaultport = 25 | ||||
mailport = util.getport(ui.config('smtp', 'port', defaultport)) | ||||
timeless@mozdev.org
|
r26778 | ui.note(_('sending mail: smtp host %s, port %d\n') % | ||
Alexis S. L. Carvalho
|
r2964 | (mailhost, mailport)) | ||
Matt Mackall
|
r2889 | s.connect(host=mailhost, port=mailport) | ||
Zhigang Wang
|
r13201 | if starttls: | ||
ui.note(_('(using starttls)\n')) | ||||
Matt Mackall
|
r2889 | s.ehlo() | ||
s.starttls() | ||||
s.ehlo() | ||||
Gregory Szorc
|
r29285 | if starttls or smtps: | ||
FUJIWARA Katsunori
|
r18888 | ui.note(_('(verifying remote certificate)\n')) | ||
Gregory Szorc
|
r29285 | sslutil.validatesocket(s.sock) | ||
Matt Mackall
|
r2889 | username = ui.config('smtp', 'username') | ||
password = ui.config('smtp', 'password') | ||||
Arun Thomas
|
r5749 | if username and not password: | ||
password = ui.getpass() | ||||
Matt Mackall
|
r2889 | if username and password: | ||
ui.note(_('(authenticating to mail server as %s)\n') % | ||||
(username)) | ||||
David Soria Parra
|
r9246 | try: | ||
s.login(username, password) | ||||
Gregory Szorc
|
r25660 | except smtplib.SMTPException as inst: | ||
Pierre-Yves David
|
r26587 | raise error.Abort(inst) | ||
Matt Mackall
|
r2889 | |||
Matt Mackall
|
r5973 | def send(sender, recipients, msg): | ||
try: | ||||
return s.sendmail(sender, recipients, msg) | ||||
Gregory Szorc
|
r25660 | except smtplib.SMTPRecipientsRefused as inst: | ||
Matt Mackall
|
r5973 | recipients = [r[1] for r in inst.recipients.values()] | ||
Pierre-Yves David
|
r26587 | raise error.Abort('\n' + '\n'.join(recipients)) | ||
Gregory Szorc
|
r25660 | except smtplib.SMTPException as inst: | ||
Pierre-Yves David
|
r26587 | raise error.Abort(inst) | ||
Bryan O'Sullivan
|
r5947 | |||
Matt Mackall
|
r5973 | return send | ||
Bryan O'Sullivan
|
r5947 | |||
Matt Mackall
|
r5973 | def _sendmail(ui, sender, recipients, msg): | ||
'''send mail using sendmail.''' | ||||
Jun Wu
|
r33499 | program = ui.config('email', 'method') | ||
Augie Fackler
|
r39066 | stremail = lambda x: stringutil.email(encoding.strtolocal(x)) | ||
cmdline = '%s -f %s %s' % (program, stremail(sender), | ||||
' '.join(map(stremail, recipients))) | ||||
Matt Mackall
|
r5973 | ui.note(_('sending mail: %s\n') % cmdline) | ||
Yuya Nishihara
|
r37476 | fp = procutil.popen(cmdline, 'wb') | ||
fp.write(util.tonativeeol(msg)) | ||||
Matt Mackall
|
r5973 | ret = fp.close() | ||
if ret: | ||||
Pierre-Yves David
|
r26587 | raise error.Abort('%s %s' % ( | ||
Matt Mackall
|
r5973 | os.path.basename(program.split(None, 1)[0]), | ||
Yuya Nishihara
|
r37481 | procutil.explainexit(ret))) | ||
Matt Mackall
|
r2889 | |||
Mads Kiilerich
|
r15560 | def _mbox(mbox, sender, recipients, msg): | ||
'''write mails to mbox''' | ||||
fp = open(mbox, 'ab+') | ||||
# Should be time.asctime(), but Windows prints 2-characters day | ||||
# of month instead of one. Make them print the same thing. | ||||
Pulkit Goyal
|
r35152 | date = time.strftime(r'%a %b %d %H:%M:%S %Y', time.localtime()) | ||
Augie Fackler
|
r39066 | fp.write('From %s %s\n' % (encoding.strtolocal(sender), | ||
encoding.strtolocal(date))) | ||||
Mads Kiilerich
|
r15560 | fp.write(msg) | ||
fp.write('\n\n') | ||||
fp.close() | ||||
def connect(ui, mbox=None): | ||||
Matt Mackall
|
r5973 | '''make a mail connection. return a function to send mail. | ||
Matt Mackall
|
r2889 | call as sendmail(sender, list-of-recipients, msg).''' | ||
Mads Kiilerich
|
r15560 | if mbox: | ||
open(mbox, 'wb').close() | ||||
return lambda s, r, m: _mbox(mbox, s, r, m) | ||||
Jun Wu
|
r33499 | if ui.config('email', 'method') == 'smtp': | ||
Bryan O'Sullivan
|
r5947 | return _smtp(ui) | ||
Matt Mackall
|
r5973 | return lambda s, r, m: _sendmail(ui, s, r, m) | ||
Matt Mackall
|
r2889 | |||
Mads Kiilerich
|
r15561 | def sendmail(ui, sender, recipients, msg, mbox=None): | ||
send = connect(ui, mbox=mbox) | ||||
Matt Mackall
|
r5973 | return send(sender, recipients, msg) | ||
Bryan O'Sullivan
|
r4489 | |||
def validateconfig(ui): | ||||
'''determine if we have enough config data to try sending email.''' | ||||
Jun Wu
|
r33499 | method = ui.config('email', 'method') | ||
Bryan O'Sullivan
|
r4489 | if method == 'smtp': | ||
if not ui.config('smtp', 'host'): | ||||
Pierre-Yves David
|
r26587 | raise error.Abort(_('smtp specified as email transport, ' | ||
Bryan O'Sullivan
|
r4489 | 'but no smtp host configured')) | ||
else: | ||||
Yuya Nishihara
|
r37138 | if not procutil.findexe(method): | ||
Pierre-Yves David
|
r26587 | raise error.Abort(_('%r specified as email transport, ' | ||
Bryan O'Sullivan
|
r4489 | 'but not in PATH') % method) | ||
Christian Ebert
|
r7114 | |||
Gábor Stefanik
|
r30089 | def codec2iana(cs): | ||
'''''' | ||||
Gregory Szorc
|
r36136 | cs = pycompat.sysbytes(email.charset.Charset(cs).input_charset.lower()) | ||
Gábor Stefanik
|
r30089 | |||
# "latin1" normalizes to "iso8859-1", standard calls for "iso-8859-1" | ||||
if cs.startswith("iso") and not cs.startswith("iso-"): | ||||
return "iso-" + cs[3:] | ||||
return cs | ||||
Christian Ebert
|
r7191 | def mimetextpatch(s, subtype='plain', display=False): | ||
Mads Kiilerich
|
r15562 | '''Return MIME message suitable for a patch. | ||
Gábor Stefanik
|
r30089 | Charset will be detected by first trying to decode as us-ascii, then utf-8, | ||
and finally the global encodings. If all those fail, fall back to | ||||
ISO-8859-1, an encoding with that allows all byte sequences. | ||||
Mads Kiilerich
|
r15562 | Transfer encodings will be used if necessary.''' | ||
Rocco Rutte
|
r8332 | |||
Gábor Stefanik
|
r30089 | cs = ['us-ascii', 'utf-8', encoding.encoding, encoding.fallbackencoding] | ||
if display: | ||||
Augie Fackler
|
r39072 | cs = ['us-ascii'] | ||
Gábor Stefanik
|
r30089 | for charset in cs: | ||
Rocco Rutte
|
r8332 | try: | ||
Gregory Szorc
|
r36135 | s.decode(pycompat.sysstr(charset)) | ||
Gábor Stefanik
|
r30089 | return mimetextqp(s, subtype, codec2iana(charset)) | ||
Rocco Rutte
|
r8332 | except UnicodeDecodeError: | ||
Gábor Stefanik
|
r30089 | pass | ||
Rocco Rutte
|
r8332 | |||
Gábor Stefanik
|
r30089 | return mimetextqp(s, subtype, "iso-8859-1") | ||
Mads Kiilerich
|
r15562 | |||
def mimetextqp(body, subtype, charset): | ||||
'''Return MIME message. | ||||
Mads Kiilerich
|
r17424 | Quoted-printable transfer encoding will be used if necessary. | ||
Mads Kiilerich
|
r15562 | ''' | ||
Igor Ippolitov
|
r34311 | cs = email.charset.Charset(charset) | ||
msg = email.message.Message() | ||||
Gregory Szorc
|
r36064 | msg.set_type(pycompat.sysstr('text/' + subtype)) | ||
Igor Ippolitov
|
r34311 | |||
Mads Kiilerich
|
r15562 | for line in body.splitlines(): | ||
if len(line) > 950: | ||||
Igor Ippolitov
|
r34311 | cs.body_encoding = email.charset.QP | ||
Mads Kiilerich
|
r15562 | break | ||
Gregory Szorc
|
r41450 | # On Python 2, this simply assigns a value. Python 3 inspects | ||
# body and does different things depending on whether it has | ||||
# encode() or decode() attributes. We can get the old behavior | ||||
# if we pass a str and charset is None and we call set_charset(). | ||||
# But we may get into trouble later due to Python attempting to | ||||
# encode/decode using the registered charset (or attempting to | ||||
# use ascii in the absence of a charset). | ||||
Igor Ippolitov
|
r34311 | msg.set_payload(body, cs) | ||
Rocco Rutte
|
r8332 | return msg | ||
Christian Ebert
|
r7191 | |||
Christian Ebert
|
r7114 | def _charsets(ui): | ||
'''Obtains charsets to send mail parts not containing patches.''' | ||||
charsets = [cs.lower() for cs in ui.configlist('email', 'charsets')] | ||||
Matt Mackall
|
r7948 | fallbacks = [encoding.fallbackencoding.lower(), | ||
encoding.encoding.lower(), 'utf-8'] | ||||
Martin Geisler
|
r8343 | for cs in fallbacks: # find unique charsets while keeping order | ||
Christian Ebert
|
r7114 | if cs not in charsets: | ||
charsets.append(cs) | ||||
return [cs for cs in charsets if not cs.endswith('ascii')] | ||||
def _encode(ui, s, charsets): | ||||
'''Returns (converted) string, charset tuple. | ||||
Finds out best charset by cycling through sendcharsets in descending | ||||
Matt Mackall
|
r7948 | order. Tries both encoding and fallbackencoding for input. Only as | ||
Christian Ebert
|
r7114 | last resort send as is in fake ascii. | ||
Caveat: Do not use for mail parts containing patches!''' | ||||
Augie Fackler
|
r39058 | sendcharsets = charsets or _charsets(ui) | ||
if not isinstance(s, bytes): | ||||
# We have unicode data, which we need to try and encode to | ||||
# some reasonable-ish encoding. Try the encodings the user | ||||
# wants, and fall back to garbage-in-ascii. | ||||
for ocs in sendcharsets: | ||||
try: | ||||
return s.encode(pycompat.sysstr(ocs)), ocs | ||||
except UnicodeEncodeError: | ||||
pass | ||||
except LookupError: | ||||
ui.warn(_('ignoring invalid sendcharset: %s\n') % ocs) | ||||
else: | ||||
# Everything failed, ascii-armor what we've got and send it. | ||||
return s.encode('ascii', 'backslashreplace') | ||||
# We have a bytes of unknown encoding. We'll try and guess a valid | ||||
# encoding, falling back to pretending we had ascii even though we | ||||
# know that's wrong. | ||||
Christian Ebert
|
r7114 | try: | ||
s.decode('ascii') | ||||
except UnicodeDecodeError: | ||||
Matt Mackall
|
r7948 | for ics in (encoding.encoding, encoding.fallbackencoding): | ||
Christian Ebert
|
r7114 | try: | ||
u = s.decode(ics) | ||||
except UnicodeDecodeError: | ||||
continue | ||||
for ocs in sendcharsets: | ||||
try: | ||||
Augie Fackler
|
r39058 | return u.encode(pycompat.sysstr(ocs)), ocs | ||
Christian Ebert
|
r7114 | except UnicodeEncodeError: | ||
pass | ||||
except LookupError: | ||||
Christian Ebert
|
r7195 | ui.warn(_('ignoring invalid sendcharset: %s\n') % ocs) | ||
Christian Ebert
|
r7114 | # if ascii, or all conversion attempts fail, send (broken) ascii | ||
return s, 'us-ascii' | ||||
def headencode(ui, s, charsets=None, display=False): | ||||
'''Returns RFC-2047 compliant header from given string.''' | ||||
if not display: | ||||
# split into words? | ||||
s, cs = _encode(ui, s, charsets) | ||||
Pulkit Goyal
|
r30072 | return str(email.header.Header(s, cs)) | ||
Christian Ebert
|
r7114 | return s | ||
Marti Raudsepp
|
r9948 | def _addressencode(ui, name, addr, charsets=None): | ||
Yuya Nishihara
|
r39142 | assert isinstance(addr, bytes) | ||
Christian Ebert
|
r7114 | name = headencode(ui, name, charsets) | ||
try: | ||||
Yuya Nishihara
|
r39142 | acc, dom = addr.split('@') | ||
Yuya Nishihara
|
r39143 | acc.decode('ascii') | ||
Yuya Nishihara
|
r39144 | dom = dom.decode(pycompat.sysstr(encoding.encoding)).encode('idna') | ||
Christian Ebert
|
r7114 | addr = '%s@%s' % (acc, dom) | ||
except UnicodeDecodeError: | ||||
Pierre-Yves David
|
r26587 | raise error.Abort(_('invalid email address: %s') % addr) | ||
Christian Ebert
|
r7114 | except ValueError: | ||
try: | ||||
# too strict? | ||||
Yuya Nishihara
|
r39143 | addr.decode('ascii') | ||
Christian Ebert
|
r7114 | except UnicodeDecodeError: | ||
Pierre-Yves David
|
r26587 | raise error.Abort(_('invalid local address: %s') % addr) | ||
Augie Fackler
|
r39059 | return pycompat.bytesurl( | ||
email.utils.formataddr((name, encoding.strfromlocal(addr)))) | ||||
Christian Ebert
|
r7114 | |||
Marti Raudsepp
|
r9948 | def addressencode(ui, address, charsets=None, display=False): | ||
'''Turns address into RFC-2047 compliant header.''' | ||||
if display or not address: | ||||
return address or '' | ||||
Augie Fackler
|
r39059 | name, addr = email.utils.parseaddr(encoding.strfromlocal(address)) | ||
Yuya Nishihara
|
r39142 | return _addressencode(ui, name, encoding.strtolocal(addr), charsets) | ||
Marti Raudsepp
|
r9948 | |||
def addrlistencode(ui, addrs, charsets=None, display=False): | ||||
'''Turns a list of addresses into a list of RFC-2047 compliant headers. | ||||
A single element of input list may contain multiple addresses, but output | ||||
always has one address per item''' | ||||
Augie Fackler
|
r39059 | for a in addrs: | ||
assert isinstance(a, bytes), (r'%r unexpectedly not a bytestr' % a) | ||||
Marti Raudsepp
|
r9948 | if display: | ||
return [a.strip() for a in addrs if a.strip()] | ||||
result = [] | ||||
Augie Fackler
|
r39059 | for name, addr in email.utils.getaddresses( | ||
[encoding.strfromlocal(a) for a in addrs]): | ||||
Marti Raudsepp
|
r9948 | if name or addr: | ||
Yuya Nishihara
|
r39142 | r = _addressencode(ui, name, encoding.strtolocal(addr), charsets) | ||
result.append(r) | ||||
Yuya Nishihara
|
r39141 | return result | ||
Marti Raudsepp
|
r9948 | |||
Christian Ebert
|
r7114 | def mimeencode(ui, s, charsets=None, display=False): | ||
'''creates mime text object, encodes it if needed, and sets | ||||
charset and transfer-encoding accordingly.''' | ||||
cs = 'us-ascii' | ||||
if not display: | ||||
s, cs = _encode(ui, s, charsets) | ||||
Mads Kiilerich
|
r15562 | return mimetextqp(s, 'plain', cs) | ||
Julien Cristau
|
r28341 | |||
Yuya Nishihara
|
r38354 | if pycompat.ispy3: | ||
def parse(fp): | ||||
ep = email.parser.Parser() | ||||
# disable the "universal newlines" mode, which isn't binary safe. | ||||
# I have no idea if ascii/surrogateescape is correct, but that's | ||||
# what the standard Python email parser does. | ||||
fp = io.TextIOWrapper(fp, encoding=r'ascii', | ||||
errors=r'surrogateescape', newline=chr(10)) | ||||
try: | ||||
return ep.parse(fp) | ||||
finally: | ||||
fp.detach() | ||||
else: | ||||
def parse(fp): | ||||
ep = email.parser.Parser() | ||||
return ep.parse(fp) | ||||
Julien Cristau
|
r28341 | def headdecode(s): | ||
'''Decodes RFC-2047 header''' | ||||
uparts = [] | ||||
Pulkit Goyal
|
r30072 | for part, charset in email.header.decode_header(s): | ||
Julien Cristau
|
r28341 | if charset is not None: | ||
try: | ||||
uparts.append(part.decode(charset)) | ||||
continue | ||||
except UnicodeDecodeError: | ||||
pass | ||||
Yuya Nishihara
|
r37487 | # On Python 3, decode_header() may return either bytes or unicode | ||
# depending on whether the header has =?<charset>? or not | ||||
if isinstance(part, type(u'')): | ||||
uparts.append(part) | ||||
continue | ||||
Julien Cristau
|
r28341 | try: | ||
uparts.append(part.decode('UTF-8')) | ||||
continue | ||||
except UnicodeDecodeError: | ||||
pass | ||||
uparts.append(part.decode('ISO-8859-1')) | ||||
Yuya Nishihara
|
r31447 | return encoding.unitolocal(u' '.join(uparts)) | ||