Show More
@@ -1,226 +1,226 | |||||
1 | # mail.py - mail sending bits for mercurial |
|
1 | # mail.py - mail sending bits for mercurial | |
2 | # |
|
2 | # | |
3 | # Copyright 2006 Matt Mackall <mpm@selenic.com> |
|
3 | # Copyright 2006 Matt Mackall <mpm@selenic.com> | |
4 | # |
|
4 | # | |
5 | # This software may be used and distributed according to the terms of the |
|
5 | # This software may be used and distributed according to the terms of the | |
6 | # GNU General Public License version 2 or any later version. |
|
6 | # GNU General Public License version 2 or any later version. | |
7 |
|
7 | |||
8 | from i18n import _ |
|
8 | from i18n import _ | |
9 | import util, encoding |
|
9 | import util, encoding | |
10 | import os, smtplib, socket, quopri |
|
10 | import os, smtplib, socket, quopri | |
11 | import email.Header, email.MIMEText, email.Utils |
|
11 | import email.Header, email.MIMEText, email.Utils | |
12 |
|
12 | |||
13 | _oldheaderinit = email.Header.Header.__init__ |
|
13 | _oldheaderinit = email.Header.Header.__init__ | |
14 | def _unifiedheaderinit(self, *args, **kw): |
|
14 | def _unifiedheaderinit(self, *args, **kw): | |
15 | """ |
|
15 | """ | |
16 | Python2.7 introduces a backwards incompatible change |
|
16 | Python2.7 introduces a backwards incompatible change | |
17 | (Python issue1974, r70772) in email.Generator.Generator code: |
|
17 | (Python issue1974, r70772) in email.Generator.Generator code: | |
18 | pre-2.7 code passed "continuation_ws='\t'" to the Header |
|
18 | pre-2.7 code passed "continuation_ws='\t'" to the Header | |
19 | constructor, and 2.7 removed this parameter. |
|
19 | constructor, and 2.7 removed this parameter. | |
20 |
|
20 | |||
21 | Default argument is continuation_ws=' ', which means that the |
|
21 | Default argument is continuation_ws=' ', which means that the | |
22 | behaviour is different in <2.7 and 2.7 |
|
22 | behaviour is different in <2.7 and 2.7 | |
23 |
|
23 | |||
24 | We consider the 2.7 behaviour to be preferable, but need |
|
24 | We consider the 2.7 behaviour to be preferable, but need | |
25 | to have an unified behaviour for versions 2.4 to 2.7 |
|
25 | to have an unified behaviour for versions 2.4 to 2.7 | |
26 | """ |
|
26 | """ | |
27 | # override continuation_ws |
|
27 | # override continuation_ws | |
28 | kw['continuation_ws'] = ' ' |
|
28 | kw['continuation_ws'] = ' ' | |
29 | _oldheaderinit(self, *args, **kw) |
|
29 | _oldheaderinit(self, *args, **kw) | |
30 |
|
30 | |||
31 | email.Header.Header.__dict__['__init__'] = _unifiedheaderinit |
|
31 | email.Header.Header.__dict__['__init__'] = _unifiedheaderinit | |
32 |
|
32 | |||
33 | def _smtp(ui): |
|
33 | def _smtp(ui): | |
34 | '''build an smtp connection and return a function to send mail''' |
|
34 | '''build an smtp connection and return a function to send mail''' | |
35 | local_hostname = ui.config('smtp', 'local_hostname') |
|
35 | local_hostname = ui.config('smtp', 'local_hostname') | |
36 | s = smtplib.SMTP(local_hostname=local_hostname) |
|
36 | s = smtplib.SMTP(local_hostname=local_hostname) | |
37 | mailhost = ui.config('smtp', 'host') |
|
37 | mailhost = ui.config('smtp', 'host') | |
38 | if not mailhost: |
|
38 | if not mailhost: | |
39 |
raise util.Abort(_(' |
|
39 | raise util.Abort(_('smtp.host not configured - cannot send mail')) | |
40 | mailport = int(ui.config('smtp', 'port', 25)) |
|
40 | mailport = int(ui.config('smtp', 'port', 25)) | |
41 | ui.note(_('sending mail: smtp host %s, port %s\n') % |
|
41 | ui.note(_('sending mail: smtp host %s, port %s\n') % | |
42 | (mailhost, mailport)) |
|
42 | (mailhost, mailport)) | |
43 | s.connect(host=mailhost, port=mailport) |
|
43 | s.connect(host=mailhost, port=mailport) | |
44 | if ui.configbool('smtp', 'tls'): |
|
44 | if ui.configbool('smtp', 'tls'): | |
45 | if not hasattr(socket, 'ssl'): |
|
45 | if not hasattr(socket, 'ssl'): | |
46 | raise util.Abort(_("can't use TLS: Python SSL support " |
|
46 | raise util.Abort(_("can't use TLS: Python SSL support " | |
47 | "not installed")) |
|
47 | "not installed")) | |
48 | ui.note(_('(using tls)\n')) |
|
48 | ui.note(_('(using tls)\n')) | |
49 | s.ehlo() |
|
49 | s.ehlo() | |
50 | s.starttls() |
|
50 | s.starttls() | |
51 | s.ehlo() |
|
51 | s.ehlo() | |
52 | username = ui.config('smtp', 'username') |
|
52 | username = ui.config('smtp', 'username') | |
53 | password = ui.config('smtp', 'password') |
|
53 | password = ui.config('smtp', 'password') | |
54 | if username and not password: |
|
54 | if username and not password: | |
55 | password = ui.getpass() |
|
55 | password = ui.getpass() | |
56 | if username and password: |
|
56 | if username and password: | |
57 | ui.note(_('(authenticating to mail server as %s)\n') % |
|
57 | ui.note(_('(authenticating to mail server as %s)\n') % | |
58 | (username)) |
|
58 | (username)) | |
59 | try: |
|
59 | try: | |
60 | s.login(username, password) |
|
60 | s.login(username, password) | |
61 | except smtplib.SMTPException, inst: |
|
61 | except smtplib.SMTPException, inst: | |
62 | raise util.Abort(inst) |
|
62 | raise util.Abort(inst) | |
63 |
|
63 | |||
64 | def send(sender, recipients, msg): |
|
64 | def send(sender, recipients, msg): | |
65 | try: |
|
65 | try: | |
66 | return s.sendmail(sender, recipients, msg) |
|
66 | return s.sendmail(sender, recipients, msg) | |
67 | except smtplib.SMTPRecipientsRefused, inst: |
|
67 | except smtplib.SMTPRecipientsRefused, inst: | |
68 | recipients = [r[1] for r in inst.recipients.values()] |
|
68 | recipients = [r[1] for r in inst.recipients.values()] | |
69 | raise util.Abort('\n' + '\n'.join(recipients)) |
|
69 | raise util.Abort('\n' + '\n'.join(recipients)) | |
70 | except smtplib.SMTPException, inst: |
|
70 | except smtplib.SMTPException, inst: | |
71 | raise util.Abort(inst) |
|
71 | raise util.Abort(inst) | |
72 |
|
72 | |||
73 | return send |
|
73 | return send | |
74 |
|
74 | |||
75 | def _sendmail(ui, sender, recipients, msg): |
|
75 | def _sendmail(ui, sender, recipients, msg): | |
76 | '''send mail using sendmail.''' |
|
76 | '''send mail using sendmail.''' | |
77 | program = ui.config('email', 'method') |
|
77 | program = ui.config('email', 'method') | |
78 | cmdline = '%s -f %s %s' % (program, util.email(sender), |
|
78 | cmdline = '%s -f %s %s' % (program, util.email(sender), | |
79 | ' '.join(map(util.email, recipients))) |
|
79 | ' '.join(map(util.email, recipients))) | |
80 | ui.note(_('sending mail: %s\n') % cmdline) |
|
80 | ui.note(_('sending mail: %s\n') % cmdline) | |
81 | fp = util.popen(cmdline, 'w') |
|
81 | fp = util.popen(cmdline, 'w') | |
82 | fp.write(msg) |
|
82 | fp.write(msg) | |
83 | ret = fp.close() |
|
83 | ret = fp.close() | |
84 | if ret: |
|
84 | if ret: | |
85 | raise util.Abort('%s %s' % ( |
|
85 | raise util.Abort('%s %s' % ( | |
86 | os.path.basename(program.split(None, 1)[0]), |
|
86 | os.path.basename(program.split(None, 1)[0]), | |
87 | util.explain_exit(ret)[0])) |
|
87 | util.explain_exit(ret)[0])) | |
88 |
|
88 | |||
89 | def connect(ui): |
|
89 | def connect(ui): | |
90 | '''make a mail connection. return a function to send mail. |
|
90 | '''make a mail connection. return a function to send mail. | |
91 | call as sendmail(sender, list-of-recipients, msg).''' |
|
91 | call as sendmail(sender, list-of-recipients, msg).''' | |
92 | if ui.config('email', 'method', 'smtp') == 'smtp': |
|
92 | if ui.config('email', 'method', 'smtp') == 'smtp': | |
93 | return _smtp(ui) |
|
93 | return _smtp(ui) | |
94 | return lambda s, r, m: _sendmail(ui, s, r, m) |
|
94 | return lambda s, r, m: _sendmail(ui, s, r, m) | |
95 |
|
95 | |||
96 | def sendmail(ui, sender, recipients, msg): |
|
96 | def sendmail(ui, sender, recipients, msg): | |
97 | send = connect(ui) |
|
97 | send = connect(ui) | |
98 | return send(sender, recipients, msg) |
|
98 | return send(sender, recipients, msg) | |
99 |
|
99 | |||
100 | def validateconfig(ui): |
|
100 | def validateconfig(ui): | |
101 | '''determine if we have enough config data to try sending email.''' |
|
101 | '''determine if we have enough config data to try sending email.''' | |
102 | method = ui.config('email', 'method', 'smtp') |
|
102 | method = ui.config('email', 'method', 'smtp') | |
103 | if method == 'smtp': |
|
103 | if method == 'smtp': | |
104 | if not ui.config('smtp', 'host'): |
|
104 | if not ui.config('smtp', 'host'): | |
105 | raise util.Abort(_('smtp specified as email transport, ' |
|
105 | raise util.Abort(_('smtp specified as email transport, ' | |
106 | 'but no smtp host configured')) |
|
106 | 'but no smtp host configured')) | |
107 | else: |
|
107 | else: | |
108 | if not util.find_exe(method): |
|
108 | if not util.find_exe(method): | |
109 | raise util.Abort(_('%r specified as email transport, ' |
|
109 | raise util.Abort(_('%r specified as email transport, ' | |
110 | 'but not in PATH') % method) |
|
110 | 'but not in PATH') % method) | |
111 |
|
111 | |||
112 | def mimetextpatch(s, subtype='plain', display=False): |
|
112 | def mimetextpatch(s, subtype='plain', display=False): | |
113 | '''If patch in utf-8 transfer-encode it.''' |
|
113 | '''If patch in utf-8 transfer-encode it.''' | |
114 |
|
114 | |||
115 | enc = None |
|
115 | enc = None | |
116 | for line in s.splitlines(): |
|
116 | for line in s.splitlines(): | |
117 | if len(line) > 950: |
|
117 | if len(line) > 950: | |
118 | s = quopri.encodestring(s) |
|
118 | s = quopri.encodestring(s) | |
119 | enc = "quoted-printable" |
|
119 | enc = "quoted-printable" | |
120 | break |
|
120 | break | |
121 |
|
121 | |||
122 | cs = 'us-ascii' |
|
122 | cs = 'us-ascii' | |
123 | if not display: |
|
123 | if not display: | |
124 | try: |
|
124 | try: | |
125 | s.decode('us-ascii') |
|
125 | s.decode('us-ascii') | |
126 | except UnicodeDecodeError: |
|
126 | except UnicodeDecodeError: | |
127 | try: |
|
127 | try: | |
128 | s.decode('utf-8') |
|
128 | s.decode('utf-8') | |
129 | cs = 'utf-8' |
|
129 | cs = 'utf-8' | |
130 | except UnicodeDecodeError: |
|
130 | except UnicodeDecodeError: | |
131 | # We'll go with us-ascii as a fallback. |
|
131 | # We'll go with us-ascii as a fallback. | |
132 | pass |
|
132 | pass | |
133 |
|
133 | |||
134 | msg = email.MIMEText.MIMEText(s, subtype, cs) |
|
134 | msg = email.MIMEText.MIMEText(s, subtype, cs) | |
135 | if enc: |
|
135 | if enc: | |
136 | del msg['Content-Transfer-Encoding'] |
|
136 | del msg['Content-Transfer-Encoding'] | |
137 | msg['Content-Transfer-Encoding'] = enc |
|
137 | msg['Content-Transfer-Encoding'] = enc | |
138 | return msg |
|
138 | return msg | |
139 |
|
139 | |||
140 | def _charsets(ui): |
|
140 | def _charsets(ui): | |
141 | '''Obtains charsets to send mail parts not containing patches.''' |
|
141 | '''Obtains charsets to send mail parts not containing patches.''' | |
142 | charsets = [cs.lower() for cs in ui.configlist('email', 'charsets')] |
|
142 | charsets = [cs.lower() for cs in ui.configlist('email', 'charsets')] | |
143 | fallbacks = [encoding.fallbackencoding.lower(), |
|
143 | fallbacks = [encoding.fallbackencoding.lower(), | |
144 | encoding.encoding.lower(), 'utf-8'] |
|
144 | encoding.encoding.lower(), 'utf-8'] | |
145 | for cs in fallbacks: # find unique charsets while keeping order |
|
145 | for cs in fallbacks: # find unique charsets while keeping order | |
146 | if cs not in charsets: |
|
146 | if cs not in charsets: | |
147 | charsets.append(cs) |
|
147 | charsets.append(cs) | |
148 | return [cs for cs in charsets if not cs.endswith('ascii')] |
|
148 | return [cs for cs in charsets if not cs.endswith('ascii')] | |
149 |
|
149 | |||
150 | def _encode(ui, s, charsets): |
|
150 | def _encode(ui, s, charsets): | |
151 | '''Returns (converted) string, charset tuple. |
|
151 | '''Returns (converted) string, charset tuple. | |
152 | Finds out best charset by cycling through sendcharsets in descending |
|
152 | Finds out best charset by cycling through sendcharsets in descending | |
153 | order. Tries both encoding and fallbackencoding for input. Only as |
|
153 | order. Tries both encoding and fallbackencoding for input. Only as | |
154 | last resort send as is in fake ascii. |
|
154 | last resort send as is in fake ascii. | |
155 | Caveat: Do not use for mail parts containing patches!''' |
|
155 | Caveat: Do not use for mail parts containing patches!''' | |
156 | try: |
|
156 | try: | |
157 | s.decode('ascii') |
|
157 | s.decode('ascii') | |
158 | except UnicodeDecodeError: |
|
158 | except UnicodeDecodeError: | |
159 | sendcharsets = charsets or _charsets(ui) |
|
159 | sendcharsets = charsets or _charsets(ui) | |
160 | for ics in (encoding.encoding, encoding.fallbackencoding): |
|
160 | for ics in (encoding.encoding, encoding.fallbackencoding): | |
161 | try: |
|
161 | try: | |
162 | u = s.decode(ics) |
|
162 | u = s.decode(ics) | |
163 | except UnicodeDecodeError: |
|
163 | except UnicodeDecodeError: | |
164 | continue |
|
164 | continue | |
165 | for ocs in sendcharsets: |
|
165 | for ocs in sendcharsets: | |
166 | try: |
|
166 | try: | |
167 | return u.encode(ocs), ocs |
|
167 | return u.encode(ocs), ocs | |
168 | except UnicodeEncodeError: |
|
168 | except UnicodeEncodeError: | |
169 | pass |
|
169 | pass | |
170 | except LookupError: |
|
170 | except LookupError: | |
171 | ui.warn(_('ignoring invalid sendcharset: %s\n') % ocs) |
|
171 | ui.warn(_('ignoring invalid sendcharset: %s\n') % ocs) | |
172 | # if ascii, or all conversion attempts fail, send (broken) ascii |
|
172 | # if ascii, or all conversion attempts fail, send (broken) ascii | |
173 | return s, 'us-ascii' |
|
173 | return s, 'us-ascii' | |
174 |
|
174 | |||
175 | def headencode(ui, s, charsets=None, display=False): |
|
175 | def headencode(ui, s, charsets=None, display=False): | |
176 | '''Returns RFC-2047 compliant header from given string.''' |
|
176 | '''Returns RFC-2047 compliant header from given string.''' | |
177 | if not display: |
|
177 | if not display: | |
178 | # split into words? |
|
178 | # split into words? | |
179 | s, cs = _encode(ui, s, charsets) |
|
179 | s, cs = _encode(ui, s, charsets) | |
180 | return str(email.Header.Header(s, cs)) |
|
180 | return str(email.Header.Header(s, cs)) | |
181 | return s |
|
181 | return s | |
182 |
|
182 | |||
183 | def _addressencode(ui, name, addr, charsets=None): |
|
183 | def _addressencode(ui, name, addr, charsets=None): | |
184 | name = headencode(ui, name, charsets) |
|
184 | name = headencode(ui, name, charsets) | |
185 | try: |
|
185 | try: | |
186 | acc, dom = addr.split('@') |
|
186 | acc, dom = addr.split('@') | |
187 | acc = acc.encode('ascii') |
|
187 | acc = acc.encode('ascii') | |
188 | dom = dom.decode(encoding.encoding).encode('idna') |
|
188 | dom = dom.decode(encoding.encoding).encode('idna') | |
189 | addr = '%s@%s' % (acc, dom) |
|
189 | addr = '%s@%s' % (acc, dom) | |
190 | except UnicodeDecodeError: |
|
190 | except UnicodeDecodeError: | |
191 | raise util.Abort(_('invalid email address: %s') % addr) |
|
191 | raise util.Abort(_('invalid email address: %s') % addr) | |
192 | except ValueError: |
|
192 | except ValueError: | |
193 | try: |
|
193 | try: | |
194 | # too strict? |
|
194 | # too strict? | |
195 | addr = addr.encode('ascii') |
|
195 | addr = addr.encode('ascii') | |
196 | except UnicodeDecodeError: |
|
196 | except UnicodeDecodeError: | |
197 | raise util.Abort(_('invalid local address: %s') % addr) |
|
197 | raise util.Abort(_('invalid local address: %s') % addr) | |
198 | return email.Utils.formataddr((name, addr)) |
|
198 | return email.Utils.formataddr((name, addr)) | |
199 |
|
199 | |||
200 | def addressencode(ui, address, charsets=None, display=False): |
|
200 | def addressencode(ui, address, charsets=None, display=False): | |
201 | '''Turns address into RFC-2047 compliant header.''' |
|
201 | '''Turns address into RFC-2047 compliant header.''' | |
202 | if display or not address: |
|
202 | if display or not address: | |
203 | return address or '' |
|
203 | return address or '' | |
204 | name, addr = email.Utils.parseaddr(address) |
|
204 | name, addr = email.Utils.parseaddr(address) | |
205 | return _addressencode(ui, name, addr, charsets) |
|
205 | return _addressencode(ui, name, addr, charsets) | |
206 |
|
206 | |||
207 | def addrlistencode(ui, addrs, charsets=None, display=False): |
|
207 | def addrlistencode(ui, addrs, charsets=None, display=False): | |
208 | '''Turns a list of addresses into a list of RFC-2047 compliant headers. |
|
208 | '''Turns a list of addresses into a list of RFC-2047 compliant headers. | |
209 | A single element of input list may contain multiple addresses, but output |
|
209 | A single element of input list may contain multiple addresses, but output | |
210 | always has one address per item''' |
|
210 | always has one address per item''' | |
211 | if display: |
|
211 | if display: | |
212 | return [a.strip() for a in addrs if a.strip()] |
|
212 | return [a.strip() for a in addrs if a.strip()] | |
213 |
|
213 | |||
214 | result = [] |
|
214 | result = [] | |
215 | for name, addr in email.Utils.getaddresses(addrs): |
|
215 | for name, addr in email.Utils.getaddresses(addrs): | |
216 | if name or addr: |
|
216 | if name or addr: | |
217 | result.append(_addressencode(ui, name, addr, charsets)) |
|
217 | result.append(_addressencode(ui, name, addr, charsets)) | |
218 | return result |
|
218 | return result | |
219 |
|
219 | |||
220 | def mimeencode(ui, s, charsets=None, display=False): |
|
220 | def mimeencode(ui, s, charsets=None, display=False): | |
221 | '''creates mime text object, encodes it if needed, and sets |
|
221 | '''creates mime text object, encodes it if needed, and sets | |
222 | charset and transfer-encoding accordingly.''' |
|
222 | charset and transfer-encoding accordingly.''' | |
223 | cs = 'us-ascii' |
|
223 | cs = 'us-ascii' | |
224 | if not display: |
|
224 | if not display: | |
225 | s, cs = _encode(ui, s, charsets) |
|
225 | s, cs = _encode(ui, s, charsets) | |
226 | return email.MIMEText.MIMEText(s, 'plain', cs) |
|
226 | return email.MIMEText.MIMEText(s, 'plain', cs) |
General Comments 0
You need to be logged in to leave comments.
Login now