##// END OF EJS Templates
mail: encode long unicode lines in emails properly (issue5687)...
Igor Ippolitov -
r34311:2d0c306a default
parent child Browse files
Show More
@@ -10,8 +10,8 b' from __future__ import absolute_import'
10 import email
10 import email
11 import email.charset
11 import email.charset
12 import email.header
12 import email.header
13 import email.message
13 import os
14 import os
14 import quopri
15 import smtplib
15 import smtplib
16 import socket
16 import socket
17 import time
17 import time
@@ -216,17 +216,17 b' def mimetextqp(body, subtype, charset):'
216 '''Return MIME message.
216 '''Return MIME message.
217 Quoted-printable transfer encoding will be used if necessary.
217 Quoted-printable transfer encoding will be used if necessary.
218 '''
218 '''
219 enc = None
219 cs = email.charset.Charset(charset)
220 msg = email.message.Message()
221 msg.set_type('text/' + subtype)
222
220 for line in body.splitlines():
223 for line in body.splitlines():
221 if len(line) > 950:
224 if len(line) > 950:
222 body = quopri.encodestring(body)
225 cs.body_encoding = email.charset.QP
223 enc = "quoted-printable"
224 break
226 break
225
227
226 msg = email.MIMEText.MIMEText(body, subtype, charset)
228 msg.set_payload(body, cs)
227 if enc:
229
228 del msg['Content-Transfer-Encoding']
229 msg['Content-Transfer-Encoding'] = enc
230 return msg
230 return msg
231
231
232 def _charsets(ui):
232 def _charsets(ui):
@@ -260,8 +260,8 b' Pull from bundle and trigger notify'
260 adding manifests
260 adding manifests
261 adding file changes
261 adding file changes
262 added 2 changesets with 3 changes to 3 files
262 added 2 changesets with 3 changes to 3 files
263 MIME-Version: 1.0
263 Content-Type: text/plain; charset="us-ascii"
264 Content-Type: text/plain; charset="us-ascii"
264 MIME-Version: 1.0
265 Content-Transfer-Encoding: 7bit
265 Content-Transfer-Encoding: 7bit
266 Date: * (glob)
266 Date: * (glob)
267 Subject: changeset in...
267 Subject: changeset in...
@@ -283,8 +283,8 b' Pull from bundle and trigger notify'
283 @@ -0,0 +1,1 @@
283 @@ -0,0 +1,1 @@
284 +a
284 +a
285 \ No newline at end of file
285 \ No newline at end of file
286 MIME-Version: 1.0
286 Content-Type: text/plain; charset="us-ascii"
287 Content-Type: text/plain; charset="us-ascii"
287 MIME-Version: 1.0
288 Content-Transfer-Encoding: 7bit
288 Content-Transfer-Encoding: 7bit
289 Date:* (glob)
289 Date:* (glob)
290 Subject: changeset in...
290 Subject: changeset in...
@@ -46,8 +46,8 b' push'
46 adding manifests
46 adding manifests
47 adding file changes
47 adding file changes
48 added 2 changesets with 2 changes to 1 files
48 added 2 changesets with 2 changes to 1 files
49 MIME-Version: 1.0
49 Content-Type: text/plain; charset="us-ascii"
50 Content-Type: text/plain; charset="us-ascii"
50 MIME-Version: 1.0
51 Content-Transfer-Encoding: 7bit
51 Content-Transfer-Encoding: 7bit
52 Date: * (glob)
52 Date: * (glob)
53 Subject: * (glob)
53 Subject: * (glob)
@@ -97,8 +97,8 b' unbundle with correct source'
97 adding manifests
97 adding manifests
98 adding file changes
98 adding file changes
99 added 2 changesets with 2 changes to 1 files
99 added 2 changesets with 2 changes to 1 files
100 MIME-Version: 1.0
100 Content-Type: text/plain; charset="us-ascii"
101 Content-Type: text/plain; charset="us-ascii"
101 MIME-Version: 1.0
102 Content-Transfer-Encoding: 7bit
102 Content-Transfer-Encoding: 7bit
103 Date: * (glob)
103 Date: * (glob)
104 Subject: * (glob)
104 Subject: * (glob)
@@ -174,8 +174,8 b' push'
174 adding manifests
174 adding manifests
175 adding file changes
175 adding file changes
176 added 4 changesets with 4 changes to 1 files
176 added 4 changesets with 4 changes to 1 files
177 MIME-Version: 1.0
177 Content-Type: text/plain; charset="us-ascii"
178 Content-Type: text/plain; charset="us-ascii"
178 MIME-Version: 1.0
179 Content-Transfer-Encoding: 7bit
179 Content-Transfer-Encoding: 7bit
180 Date: * (glob)
180 Date: * (glob)
181 Subject: * (glob)
181 Subject: * (glob)
@@ -188,8 +188,8 b' pull (minimal config)'
188 adding manifests
188 adding manifests
189 adding file changes
189 adding file changes
190 added 1 changesets with 1 changes to 1 files
190 added 1 changesets with 1 changes to 1 files
191 MIME-Version: 1.0
191 Content-Type: text/plain; charset="us-ascii"
192 Content-Type: text/plain; charset="us-ascii"
192 MIME-Version: 1.0
193 Content-Transfer-Encoding: 7bit
193 Content-Transfer-Encoding: 7bit
194 Date: * (glob)
194 Date: * (glob)
195 Subject: changeset in $TESTTMP/b: b
195 Subject: changeset in $TESTTMP/b: b
@@ -241,8 +241,8 b' pull'
241 adding manifests
241 adding manifests
242 adding file changes
242 adding file changes
243 added 1 changesets with 1 changes to 1 files
243 added 1 changesets with 1 changes to 1 files
244 MIME-Version: 1.0
244 Content-Type: text/plain; charset="us-ascii"
245 Content-Type: text/plain; charset="us-ascii"
245 MIME-Version: 1.0
246 Content-Transfer-Encoding: 7bit
246 Content-Transfer-Encoding: 7bit
247 X-Test: foo
247 X-Test: foo
248 Date: * (glob)
248 Date: * (glob)
@@ -283,8 +283,8 b' pull'
283 adding manifests
283 adding manifests
284 adding file changes
284 adding file changes
285 added 1 changesets with 1 changes to 1 files
285 added 1 changesets with 1 changes to 1 files
286 MIME-Version: 1.0
286 Content-Type: text/plain; charset="us-ascii"
287 Content-Type: text/plain; charset="us-ascii"
287 MIME-Version: 1.0
288 Content-Transfer-Encoding: 7bit
288 Content-Transfer-Encoding: 7bit
289 X-Test: foo
289 X-Test: foo
290 Date: * (glob)
290 Date: * (glob)
@@ -328,8 +328,8 b' test merge'
328 adding manifests
328 adding manifests
329 adding file changes
329 adding file changes
330 added 2 changesets with 0 changes to 0 files
330 added 2 changesets with 0 changes to 0 files
331 MIME-Version: 1.0
331 Content-Type: text/plain; charset="us-ascii"
332 Content-Type: text/plain; charset="us-ascii"
332 MIME-Version: 1.0
333 Content-Transfer-Encoding: 7bit
333 Content-Transfer-Encoding: 7bit
334 X-Test: foo
334 X-Test: foo
335 Date: * (glob)
335 Date: * (glob)
@@ -351,8 +351,8 b' test merge'
351 +++ b/a Thu Jan 01 00:00:02 1970 +0000
351 +++ b/a Thu Jan 01 00:00:02 1970 +0000
352 @@ -1,1 +1,2 @@ a
352 @@ -1,1 +1,2 @@ a
353 +a
353 +a
354 MIME-Version: 1.0
354 Content-Type: text/plain; charset="us-ascii"
355 Content-Type: text/plain; charset="us-ascii"
355 MIME-Version: 1.0
356 Content-Transfer-Encoding: 7bit
356 Content-Transfer-Encoding: 7bit
357 X-Test: foo
357 X-Test: foo
358 Date: * (glob)
358 Date: * (glob)
@@ -383,8 +383,8 b' non-ascii content and truncation of mult'
383 adding manifests
383 adding manifests
384 adding file changes
384 adding file changes
385 added 1 changesets with 1 changes to 1 files
385 added 1 changesets with 1 changes to 1 files
386 MIME-Version: 1.0
386 Content-Type: text/plain; charset="us-ascii"
387 Content-Type: text/plain; charset="us-ascii"
387 MIME-Version: 1.0
388 Content-Transfer-Encoding: 8bit
388 Content-Transfer-Encoding: 8bit
389 X-Test: foo
389 X-Test: foo
390 Date: * (glob)
390 Date: * (glob)
@@ -416,7 +416,7 b' long lines'
416 > test = False
416 > test = False
417 > mbox = mbox
417 > mbox = mbox
418 > EOF
418 > EOF
419 $ $PYTHON -c 'file("a/a", "ab").write("no" * 500 + "\n")'
419 $ $PYTHON -c 'file("a/a", "ab").write("no" * 500 + "\xd1\x84" + "\n")'
420 $ hg --cwd a commit -A -m "long line"
420 $ hg --cwd a commit -A -m "long line"
421 $ hg --traceback --cwd b pull ../a
421 $ hg --traceback --cwd b pull ../a
422 pulling from ../a
422 pulling from ../a
@@ -429,25 +429,25 b' long lines'
429 (run 'hg update' to get a working copy)
429 (run 'hg update' to get a working copy)
430 $ $PYTHON $TESTTMP/filter.py < b/mbox
430 $ $PYTHON $TESTTMP/filter.py < b/mbox
431 From test@test.com ... ... .. ..:..:.. .... (re)
431 From test@test.com ... ... .. ..:..:.. .... (re)
432 Content-Type: text/plain; charset="us-ascii"
433 MIME-Version: 1.0
432 MIME-Version: 1.0
433 Content-Type: text/plain; charset="*" (glob)
434 Content-Transfer-Encoding: quoted-printable
434 Content-Transfer-Encoding: quoted-printable
435 X-Test: foo
435 X-Test: foo
436 Date: * (glob)
436 Date: * (glob)
437 Subject: long line
437 Subject: long line
438 From: test@test.com
438 From: test@test.com
439 X-Hg-Notification: changeset e0be44cf638b
439 X-Hg-Notification: changeset a323cae54f6e
440 Message-Id: <hg.e0be44cf638b.*.*@*> (glob)
440 Message-Id: <hg.a323cae54f6e.*.*@*> (glob)
441 To: baz@test.com, foo@bar
441 To: baz@test.com, foo@bar
442
442
443 changeset e0be44cf638b in b
443 changeset a323cae54f6e in b
444 description: long line
444 description: long line
445 diffstat:
445 diffstat:
446 a | 1 + 1 files changed, 1 insertions(+), 0 deletions(-)
446 a | 1 + 1 files changed, 1 insertions(+), 0 deletions(-)
447
447
448 diffs (8 lines):
448 diffs (8 lines):
449
449
450 diff -r 7ea05ad269dc -r e0be44cf638b a
450 diff -r 7ea05ad269dc -r a323cae54f6e a
451 --- a/a Thu Jan 01 00:00:00 1970 +0000
451 --- a/a Thu Jan 01 00:00:00 1970 +0000
452 +++ b/a Thu Jan 01 00:00:00 1970 +0000
452 +++ b/a Thu Jan 01 00:00:00 1970 +0000
453 @@ -1,3 +1,4 @@ a a a
453 @@ -1,3 +1,4 @@ a a a
@@ -464,7 +464,7 b' long lines'
464 ononononononononononononononononononononononononononononononononononononono=
464 ononononononononononononononononononononononononononononononononononononono=
465 nononononononononononononononononononononononononononononononononononononon=
465 nononononononononononononononononononononononononononononononononononononon=
466 ononononononononononononononononononononononononononononononononononononono=
466 ononononononononononononononononononononononononononononononononononononono=
467 nonononononononononononono
467 nonononononononononononono=D1=84
468
468
469 revset selection: send to address that matches branch and repo
469 revset selection: send to address that matches branch and repo
470
470
@@ -494,18 +494,18 b' long lines'
494 adding manifests
494 adding manifests
495 adding file changes
495 adding file changes
496 added 1 changesets with 1 changes to 1 files
496 added 1 changesets with 1 changes to 1 files
497 MIME-Version: 1.0
497 Content-Type: text/plain; charset="us-ascii"
498 Content-Type: text/plain; charset="us-ascii"
498 MIME-Version: 1.0
499 Content-Transfer-Encoding: 7bit
499 Content-Transfer-Encoding: 7bit
500 X-Test: foo
500 X-Test: foo
501 Date: * (glob)
501 Date: * (glob)
502 Subject: test
502 Subject: test
503 From: test@test.com
503 From: test@test.com
504 X-Hg-Notification: changeset fbbcbc516f2f
504 X-Hg-Notification: changeset b7cf10b2bdec
505 Message-Id: <hg.fbbcbc516f2f.*.*@*> (glob)
505 Message-Id: <hg.b7cf10b2bdec.*.*@*> (glob)
506 To: baz@test.com, foo@bar, notify@example.com
506 To: baz@test.com, foo@bar, notify@example.com
507
507
508 changeset fbbcbc516f2f in b
508 changeset b7cf10b2bdec in b
509 description: test
509 description: test
510 (run 'hg update' to get a working copy)
510 (run 'hg update' to get a working copy)
511
511
@@ -523,18 +523,18 b' from different branch'
523 adding manifests
523 adding manifests
524 adding file changes
524 adding file changes
525 added 1 changesets with 0 changes to 0 files (+1 heads)
525 added 1 changesets with 0 changes to 0 files (+1 heads)
526 MIME-Version: 1.0
526 Content-Type: text/plain; charset="us-ascii"
527 Content-Type: text/plain; charset="us-ascii"
527 MIME-Version: 1.0
528 Content-Transfer-Encoding: 7bit
528 Content-Transfer-Encoding: 7bit
529 X-Test: foo
529 X-Test: foo
530 Date: * (glob)
530 Date: * (glob)
531 Subject: test
531 Subject: test
532 From: test@test.com
532 From: test@test.com
533 X-Hg-Notification: changeset 38b42fa092de
533 X-Hg-Notification: changeset 5a07df312a79
534 Message-Id: <hg.38b42fa092de.*.*@*> (glob)
534 Message-Id: <hg.5a07df312a79.*.*@*> (glob)
535 To: baz@test.com, foo@bar
535 To: baz@test.com, foo@bar
536
536
537 changeset 38b42fa092de in b
537 changeset 5a07df312a79 in b
538 description: test
538 description: test
539 (run 'hg heads' to see heads)
539 (run 'hg heads' to see heads)
540
540
@@ -545,18 +545,18 b' default template:'
545 $ echo a >> a/a
545 $ echo a >> a/a
546 $ hg --cwd a commit -m 'default template'
546 $ hg --cwd a commit -m 'default template'
547 $ hg --cwd b pull ../a -q | $PYTHON $TESTTMP/filter.py
547 $ hg --cwd b pull ../a -q | $PYTHON $TESTTMP/filter.py
548 MIME-Version: 1.0
548 Content-Type: text/plain; charset="us-ascii"
549 Content-Type: text/plain; charset="us-ascii"
549 MIME-Version: 1.0
550 Content-Transfer-Encoding: 7bit
550 Content-Transfer-Encoding: 7bit
551 Date: * (glob)
551 Date: * (glob)
552 Subject: changeset in b: default template
552 Subject: changeset in b: default template
553 From: test@test.com
553 From: test@test.com
554 X-Hg-Notification: changeset 3548c9e294b6
554 X-Hg-Notification: changeset f5e8ec95bf59
555 Message-Id: <hg.3548c9e294b6.*.*@*> (glob)
555 Message-Id: <hg.f5e8ec95bf59.*.*@*> (glob)
556 To: baz@test.com, foo@bar
556 To: baz@test.com, foo@bar
557
557
558 changeset 3548c9e294b6 in $TESTTMP/b (glob)
558 changeset f5e8ec95bf59 in $TESTTMP/b (glob)
559 details: http://test/b?cmd=changeset;node=3548c9e294b6
559 details: http://test/b?cmd=changeset;node=f5e8ec95bf59
560 description: default template
560 description: default template
561
561
562 with style:
562 with style:
@@ -574,17 +574,17 b' with style:'
574 $ echo a >> a/a
574 $ echo a >> a/a
575 $ hg --cwd a commit -m 'with style'
575 $ hg --cwd a commit -m 'with style'
576 $ hg --cwd b pull ../a -q | $PYTHON $TESTTMP/filter.py
576 $ hg --cwd b pull ../a -q | $PYTHON $TESTTMP/filter.py
577 MIME-Version: 1.0
577 Content-Type: text/plain; charset="us-ascii"
578 Content-Type: text/plain; charset="us-ascii"
578 MIME-Version: 1.0
579 Content-Transfer-Encoding: 7bit
579 Content-Transfer-Encoding: 7bit
580 Date: * (glob)
580 Date: * (glob)
581 Subject: with style
581 Subject: with style
582 From: test@test.com
582 From: test@test.com
583 X-Hg-Notification: changeset e917dbd961d3
583 X-Hg-Notification: changeset 9e2c3a8e9c43
584 Message-Id: <hg.e917dbd961d3.*.*@*> (glob)
584 Message-Id: <hg.9e2c3a8e9c43.*.*@*> (glob)
585 To: baz@test.com, foo@bar
585 To: baz@test.com, foo@bar
586
586
587 changeset e917dbd961d3
587 changeset 9e2c3a8e9c43
588
588
589 with template (overrides style):
589 with template (overrides style):
590
590
@@ -597,14 +597,14 b' with template (overrides style):'
597 $ echo a >> a/a
597 $ echo a >> a/a
598 $ hg --cwd a commit -m 'with template'
598 $ hg --cwd a commit -m 'with template'
599 $ hg --cwd b pull ../a -q | $PYTHON $TESTTMP/filter.py
599 $ hg --cwd b pull ../a -q | $PYTHON $TESTTMP/filter.py
600 MIME-Version: 1.0
600 Content-Type: text/plain; charset="us-ascii"
601 Content-Type: text/plain; charset="us-ascii"
601 MIME-Version: 1.0
602 Content-Transfer-Encoding: 7bit
602 Content-Transfer-Encoding: 7bit
603 Date: * (glob)
603 Date: * (glob)
604 Subject: a09743fd3edd: with template
604 Subject: e2cbf5bf18a7: with template
605 From: test@test.com
605 From: test@test.com
606 X-Hg-Notification: changeset a09743fd3edd
606 X-Hg-Notification: changeset e2cbf5bf18a7
607 Message-Id: <hg.a09743fd3edd.*.*@*> (glob)
607 Message-Id: <hg.e2cbf5bf18a7.*.*@*> (glob)
608 To: baz@test.com, foo@bar
608 To: baz@test.com, foo@bar
609
609
610 with template
610 with template
@@ -31,8 +31,8 b' Create a feature and use -B'
31 Cc:
31 Cc:
32
32
33 displaying [PATCH 0 of 2] bookmark ...
33 displaying [PATCH 0 of 2] bookmark ...
34 MIME-Version: 1.0
34 Content-Type: text/plain; charset="us-ascii"
35 Content-Type: text/plain; charset="us-ascii"
35 MIME-Version: 1.0
36 Content-Transfer-Encoding: 7bit
36 Content-Transfer-Encoding: 7bit
37 Subject: [PATCH 0 of 2] bookmark
37 Subject: [PATCH 0 of 2] bookmark
38 Message-Id: <patchbomb.347155260@*> (glob)
38 Message-Id: <patchbomb.347155260@*> (glob)
@@ -43,8 +43,8 b' Create a feature and use -B'
43
43
44
44
45 displaying [PATCH 1 of 2] first ...
45 displaying [PATCH 1 of 2] first ...
46 MIME-Version: 1.0
46 Content-Type: text/plain; charset="us-ascii"
47 Content-Type: text/plain; charset="us-ascii"
47 MIME-Version: 1.0
48 Content-Transfer-Encoding: 7bit
48 Content-Transfer-Encoding: 7bit
49 Subject: [PATCH 1 of 2] first
49 Subject: [PATCH 1 of 2] first
50 X-Mercurial-Node: accde9b8b6dce861c185d0825c1affc09a79cb26
50 X-Mercurial-Node: accde9b8b6dce861c185d0825c1affc09a79cb26
@@ -74,8 +74,8 b' Create a feature and use -B'
74 +first
74 +first
75
75
76 displaying [PATCH 2 of 2] second ...
76 displaying [PATCH 2 of 2] second ...
77 MIME-Version: 1.0
77 Content-Type: text/plain; charset="us-ascii"
78 Content-Type: text/plain; charset="us-ascii"
78 MIME-Version: 1.0
79 Content-Transfer-Encoding: 7bit
79 Content-Transfer-Encoding: 7bit
80 Subject: [PATCH 2 of 2] second
80 Subject: [PATCH 2 of 2] second
81 X-Mercurial-Node: 417defd1559c396ba06a44dce8dc1c2d2d653f3f
81 X-Mercurial-Node: 417defd1559c396ba06a44dce8dc1c2d2d653f3f
@@ -138,8 +138,8 b' Do the same and combine with -o only one'
138 Cc:
138 Cc:
139
139
140 displaying [PATCH] bookmark ...
140 displaying [PATCH] bookmark ...
141 MIME-Version: 1.0
141 Content-Type: text/plain; charset="us-ascii"
142 Content-Type: text/plain; charset="us-ascii"
142 MIME-Version: 1.0
143 Content-Transfer-Encoding: 7bit
143 Content-Transfer-Encoding: 7bit
144 Subject: [PATCH] bookmark
144 Subject: [PATCH] bookmark
145 X-Mercurial-Node: 8dab2639fd35f1e337ad866c372a5c44f1064e3c
145 X-Mercurial-Node: 8dab2639fd35f1e337ad866c372a5c44f1064e3c
@@ -40,8 +40,8 b' Mercurial-patchbomb/.* -> Mercurial-patc'
40
40
41
41
42 displaying [PATCH] a ...
42 displaying [PATCH] a ...
43 MIME-Version: 1.0
43 Content-Type: text/plain; charset="us-ascii"
44 Content-Type: text/plain; charset="us-ascii"
44 MIME-Version: 1.0
45 Content-Transfer-Encoding: 7bit
45 Content-Transfer-Encoding: 7bit
46 Subject: [PATCH] a
46 Subject: [PATCH] a
47 X-Mercurial-Node: 8580ff50825a50c8f716709acdf8de0deddcd6ab
47 X-Mercurial-Node: 8580ff50825a50c8f716709acdf8de0deddcd6ab
@@ -79,8 +79,8 b' email.to config setting. Same for --cc:'
79
79
80
80
81 displaying [PATCH] a ...
81 displaying [PATCH] a ...
82 MIME-Version: 1.0
82 Content-Type: text/plain; charset="us-ascii"
83 Content-Type: text/plain; charset="us-ascii"
83 MIME-Version: 1.0
84 Content-Transfer-Encoding: 7bit
84 Content-Transfer-Encoding: 7bit
85 Subject: [PATCH] a
85 Subject: [PATCH] a
86 X-Mercurial-Node: 8580ff50825a50c8f716709acdf8de0deddcd6ab
86 X-Mercurial-Node: 8580ff50825a50c8f716709acdf8de0deddcd6ab
@@ -154,8 +154,8 b' Test diff.git is respected'
154
154
155
155
156 displaying [PATCH] a ...
156 displaying [PATCH] a ...
157 MIME-Version: 1.0
157 Content-Type: text/plain; charset="us-ascii"
158 Content-Type: text/plain; charset="us-ascii"
158 MIME-Version: 1.0
159 Content-Transfer-Encoding: 7bit
159 Content-Transfer-Encoding: 7bit
160 Subject: [PATCH] a
160 Subject: [PATCH] a
161 X-Mercurial-Node: 8580ff50825a50c8f716709acdf8de0deddcd6ab
161 X-Mercurial-Node: 8580ff50825a50c8f716709acdf8de0deddcd6ab
@@ -192,8 +192,8 b" Test breaking format changes aren't"
192
192
193
193
194 displaying [PATCH] a ...
194 displaying [PATCH] a ...
195 MIME-Version: 1.0
195 Content-Type: text/plain; charset="us-ascii"
196 Content-Type: text/plain; charset="us-ascii"
196 MIME-Version: 1.0
197 Content-Transfer-Encoding: 7bit
197 Content-Transfer-Encoding: 7bit
198 Subject: [PATCH] a
198 Subject: [PATCH] a
199 X-Mercurial-Node: 8580ff50825a50c8f716709acdf8de0deddcd6ab
199 X-Mercurial-Node: 8580ff50825a50c8f716709acdf8de0deddcd6ab
@@ -234,8 +234,8 b" Test breaking format changes aren't"
234
234
235
235
236 displaying [PATCH 0 of 2] test ...
236 displaying [PATCH 0 of 2] test ...
237 MIME-Version: 1.0
237 Content-Type: text/plain; charset="us-ascii"
238 Content-Type: text/plain; charset="us-ascii"
238 MIME-Version: 1.0
239 Content-Transfer-Encoding: 7bit
239 Content-Transfer-Encoding: 7bit
240 Subject: [PATCH 0 of 2] test
240 Subject: [PATCH 0 of 2] test
241 Message-Id: <patchbomb.120@*> (glob)
241 Message-Id: <patchbomb.120@*> (glob)
@@ -247,8 +247,8 b" Test breaking format changes aren't"
247
247
248
248
249 displaying [PATCH 1 of 2] a ...
249 displaying [PATCH 1 of 2] a ...
250 MIME-Version: 1.0
250 Content-Type: text/plain; charset="us-ascii"
251 Content-Type: text/plain; charset="us-ascii"
251 MIME-Version: 1.0
252 Content-Transfer-Encoding: 7bit
252 Content-Transfer-Encoding: 7bit
253 Subject: [PATCH 1 of 2] a
253 Subject: [PATCH 1 of 2] a
254 X-Mercurial-Node: 8580ff50825a50c8f716709acdf8de0deddcd6ab
254 X-Mercurial-Node: 8580ff50825a50c8f716709acdf8de0deddcd6ab
@@ -279,8 +279,8 b" Test breaking format changes aren't"
279 +a
279 +a
280
280
281 displaying [PATCH 2 of 2] b ...
281 displaying [PATCH 2 of 2] b ...
282 MIME-Version: 1.0
282 Content-Type: text/plain; charset="us-ascii"
283 Content-Type: text/plain; charset="us-ascii"
283 MIME-Version: 1.0
284 Content-Transfer-Encoding: 7bit
284 Content-Transfer-Encoding: 7bit
285 Subject: [PATCH 2 of 2] b
285 Subject: [PATCH 2 of 2] b
286 X-Mercurial-Node: 97d72e5f12c7e84f85064aa72e5a297142c36ed9
286 X-Mercurial-Node: 97d72e5f12c7e84f85064aa72e5a297142c36ed9
@@ -375,8 +375,8 b' test bundle and description:'
375 Cc: bar
375 Cc: bar
376
376
377 --===*= (glob)
377 --===*= (glob)
378 MIME-Version: 1.0
378 Content-Type: text/plain; charset="us-ascii"
379 Content-Type: text/plain; charset="us-ascii"
379 MIME-Version: 1.0
380 Content-Transfer-Encoding: 7bit
380 Content-Transfer-Encoding: 7bit
381
381
382 a multiline
382 a multiline
@@ -420,8 +420,8 b' with a specific bundle type'
420 Cc: bar
420 Cc: bar
421
421
422 --===*= (glob)
422 --===*= (glob)
423 MIME-Version: 1.0
423 Content-Type: text/plain; charset="us-ascii"
424 Content-Type: text/plain; charset="us-ascii"
424 MIME-Version: 1.0
425 Content-Transfer-Encoding: 7bit
425 Content-Transfer-Encoding: 7bit
426
426
427 a multiline
427 a multiline
@@ -453,8 +453,8 b' no mime encoding for email --test:'
453
453
454
454
455 displaying [PATCH] utf-8 content ...
455 displaying [PATCH] utf-8 content ...
456 MIME-Version: 1.0
456 Content-Type: text/plain; charset="us-ascii"
457 Content-Type: text/plain; charset="us-ascii"
457 MIME-Version: 1.0
458 Content-Transfer-Encoding: 8bit
458 Content-Transfer-Encoding: 8bit
459 Subject: [PATCH] utf-8 content
459 Subject: [PATCH] utf-8 content
460 X-Mercurial-Node: 909a00e13e9d78b575aeee23dddbada46d5a143f
460 X-Mercurial-Node: 909a00e13e9d78b575aeee23dddbada46d5a143f
@@ -499,8 +499,8 b' mime encoded mbox (base64):'
499
499
500 $ cat mbox
500 $ cat mbox
501 From quux ... ... .. ..:..:.. .... (re)
501 From quux ... ... .. ..:..:.. .... (re)
502 MIME-Version: 1.0
502 Content-Type: text/plain; charset="utf-8"
503 Content-Type: text/plain; charset="utf-8"
503 MIME-Version: 1.0
504 Content-Transfer-Encoding: base64
504 Content-Transfer-Encoding: base64
505 Subject: [PATCH] utf-8 content
505 Subject: [PATCH] utf-8 content
506 X-Mercurial-Node: 909a00e13e9d78b575aeee23dddbada46d5a143f
506 X-Mercurial-Node: 909a00e13e9d78b575aeee23dddbada46d5a143f
@@ -561,8 +561,8 b' no mime encoding for email --test:'
561
561
562
562
563 displaying [PATCH] long line ...
563 displaying [PATCH] long line ...
564 MIME-Version: 1.0
564 Content-Type: text/plain; charset="us-ascii"
565 Content-Type: text/plain; charset="us-ascii"
565 MIME-Version: 1.0
566 Content-Transfer-Encoding: quoted-printable
566 Content-Transfer-Encoding: quoted-printable
567 Subject: [PATCH] long line
567 Subject: [PATCH] long line
568 X-Mercurial-Node: a2ea8fc83dd8b93cfd86ac97b28287204ab806e1
568 X-Mercurial-Node: a2ea8fc83dd8b93cfd86ac97b28287204ab806e1
@@ -615,8 +615,8 b' mime encoded mbox (quoted-printable):'
615 sending [PATCH] long line ...
615 sending [PATCH] long line ...
616 $ cat mbox
616 $ cat mbox
617 From quux ... ... .. ..:..:.. .... (re)
617 From quux ... ... .. ..:..:.. .... (re)
618 MIME-Version: 1.0
618 Content-Type: text/plain; charset="us-ascii"
619 Content-Type: text/plain; charset="us-ascii"
619 MIME-Version: 1.0
620 Content-Transfer-Encoding: quoted-printable
620 Content-Transfer-Encoding: quoted-printable
621 Subject: [PATCH] long line
621 Subject: [PATCH] long line
622 X-Mercurial-Node: a2ea8fc83dd8b93cfd86ac97b28287204ab806e1
622 X-Mercurial-Node: a2ea8fc83dd8b93cfd86ac97b28287204ab806e1
@@ -677,8 +677,8 b' iso-8859-1 mbox:'
677 sending [PATCH] isolatin 8-bit encoding ...
677 sending [PATCH] isolatin 8-bit encoding ...
678 $ cat mbox
678 $ cat mbox
679 From quux ... ... .. ..:..:.. .... (re)
679 From quux ... ... .. ..:..:.. .... (re)
680 MIME-Version: 1.0
680 Content-Type: text/plain; charset="iso-8859-1"
681 Content-Type: text/plain; charset="iso-8859-1"
681 MIME-Version: 1.0
682 Content-Transfer-Encoding: quoted-printable
682 Content-Transfer-Encoding: quoted-printable
683 Subject: [PATCH] isolatin 8-bit encoding
683 Subject: [PATCH] isolatin 8-bit encoding
684 X-Mercurial-Node: 240fb913fc1b7ff15ddb9f33e73d82bf5277c720
684 X-Mercurial-Node: 240fb913fc1b7ff15ddb9f33e73d82bf5277c720
@@ -725,8 +725,8 b' test diffstat for single patch:'
725 are you sure you want to send (yn)? y
725 are you sure you want to send (yn)? y
726
726
727 displaying [PATCH] test ...
727 displaying [PATCH] test ...
728 MIME-Version: 1.0
728 Content-Type: text/plain; charset="us-ascii"
729 Content-Type: text/plain; charset="us-ascii"
729 MIME-Version: 1.0
730 Content-Transfer-Encoding: 7bit
730 Content-Transfer-Encoding: 7bit
731 Subject: [PATCH] test
731 Subject: [PATCH] test
732 X-Mercurial-Node: ff2c9fa2018b15fa74b33363bda9527323e2a99f
732 X-Mercurial-Node: ff2c9fa2018b15fa74b33363bda9527323e2a99f
@@ -787,8 +787,8 b' test diffstat for multiple patches:'
787 are you sure you want to send (yn)? y
787 are you sure you want to send (yn)? y
788
788
789 displaying [PATCH 0 of 2] test ...
789 displaying [PATCH 0 of 2] test ...
790 MIME-Version: 1.0
790 Content-Type: text/plain; charset="us-ascii"
791 Content-Type: text/plain; charset="us-ascii"
791 MIME-Version: 1.0
792 Content-Transfer-Encoding: 7bit
792 Content-Transfer-Encoding: 7bit
793 Subject: [PATCH 0 of 2] test
793 Subject: [PATCH 0 of 2] test
794 Message-Id: <patchbomb.60@*> (glob)
794 Message-Id: <patchbomb.60@*> (glob)
@@ -804,8 +804,8 b' test diffstat for multiple patches:'
804 2 files changed, 2 insertions(+), 0 deletions(-)
804 2 files changed, 2 insertions(+), 0 deletions(-)
805
805
806 displaying [PATCH 1 of 2] a ...
806 displaying [PATCH 1 of 2] a ...
807 MIME-Version: 1.0
807 Content-Type: text/plain; charset="us-ascii"
808 Content-Type: text/plain; charset="us-ascii"
808 MIME-Version: 1.0
809 Content-Transfer-Encoding: 7bit
809 Content-Transfer-Encoding: 7bit
810 Subject: [PATCH 1 of 2] a
810 Subject: [PATCH 1 of 2] a
811 X-Mercurial-Node: 8580ff50825a50c8f716709acdf8de0deddcd6ab
811 X-Mercurial-Node: 8580ff50825a50c8f716709acdf8de0deddcd6ab
@@ -840,8 +840,8 b' test diffstat for multiple patches:'
840 +a
840 +a
841
841
842 displaying [PATCH 2 of 2] b ...
842 displaying [PATCH 2 of 2] b ...
843 MIME-Version: 1.0
843 Content-Type: text/plain; charset="us-ascii"
844 Content-Type: text/plain; charset="us-ascii"
844 MIME-Version: 1.0
845 Content-Transfer-Encoding: 7bit
845 Content-Transfer-Encoding: 7bit
846 Subject: [PATCH 2 of 2] b
846 Subject: [PATCH 2 of 2] b
847 X-Mercurial-Node: 97d72e5f12c7e84f85064aa72e5a297142c36ed9
847 X-Mercurial-Node: 97d72e5f12c7e84f85064aa72e5a297142c36ed9
@@ -897,8 +897,8 b' test inline for single patch:'
897 Cc: bar
897 Cc: bar
898
898
899 --===*= (glob)
899 --===*= (glob)
900 MIME-Version: 1.0
900 Content-Type: text/x-patch; charset="us-ascii"
901 Content-Type: text/x-patch; charset="us-ascii"
901 MIME-Version: 1.0
902 Content-Transfer-Encoding: 7bit
902 Content-Transfer-Encoding: 7bit
903 Content-Disposition: inline; filename=t2.patch
903 Content-Disposition: inline; filename=t2.patch
904
904
@@ -940,8 +940,8 b' test inline for single patch (quoted-pri'
940 Cc: bar
940 Cc: bar
941
941
942 --===*= (glob)
942 --===*= (glob)
943 MIME-Version: 1.0
943 Content-Type: text/x-patch; charset="us-ascii"
944 Content-Type: text/x-patch; charset="us-ascii"
944 MIME-Version: 1.0
945 Content-Transfer-Encoding: quoted-printable
945 Content-Transfer-Encoding: quoted-printable
946 Content-Disposition: inline; filename=t2.patch
946 Content-Disposition: inline; filename=t2.patch
947
947
@@ -987,8 +987,8 b' test inline for multiple patches:'
987
987
988
988
989 displaying [PATCH 0 of 3] test ...
989 displaying [PATCH 0 of 3] test ...
990 MIME-Version: 1.0
990 Content-Type: text/plain; charset="us-ascii"
991 Content-Type: text/plain; charset="us-ascii"
991 MIME-Version: 1.0
992 Content-Transfer-Encoding: 7bit
992 Content-Transfer-Encoding: 7bit
993 Subject: [PATCH 0 of 3] test
993 Subject: [PATCH 0 of 3] test
994 Message-Id: <patchbomb.60@*> (glob)
994 Message-Id: <patchbomb.60@*> (glob)
@@ -1017,8 +1017,8 b' test inline for multiple patches:'
1017 Cc: bar
1017 Cc: bar
1018
1018
1019 --===*= (glob)
1019 --===*= (glob)
1020 MIME-Version: 1.0
1020 Content-Type: text/x-patch; charset="us-ascii"
1021 Content-Type: text/x-patch; charset="us-ascii"
1021 MIME-Version: 1.0
1022 Content-Transfer-Encoding: 7bit
1022 Content-Transfer-Encoding: 7bit
1023 Content-Disposition: inline; filename=t2-1.patch
1023 Content-Disposition: inline; filename=t2-1.patch
1024
1024
@@ -1055,8 +1055,8 b' test inline for multiple patches:'
1055 Cc: bar
1055 Cc: bar
1056
1056
1057 --===*= (glob)
1057 --===*= (glob)
1058 MIME-Version: 1.0
1058 Content-Type: text/x-patch; charset="us-ascii"
1059 Content-Type: text/x-patch; charset="us-ascii"
1059 MIME-Version: 1.0
1060 Content-Transfer-Encoding: 7bit
1060 Content-Transfer-Encoding: 7bit
1061 Content-Disposition: inline; filename=t2-2.patch
1061 Content-Disposition: inline; filename=t2-2.patch
1062
1062
@@ -1093,8 +1093,8 b' test inline for multiple patches:'
1093 Cc: bar
1093 Cc: bar
1094
1094
1095 --===*= (glob)
1095 --===*= (glob)
1096 MIME-Version: 1.0
1096 Content-Type: text/x-patch; charset="us-ascii"
1097 Content-Type: text/x-patch; charset="us-ascii"
1097 MIME-Version: 1.0
1098 Content-Transfer-Encoding: quoted-printable
1098 Content-Transfer-Encoding: quoted-printable
1099 Content-Disposition: inline; filename=t2-3.patch
1099 Content-Disposition: inline; filename=t2-3.patch
1100
1100
@@ -1151,8 +1151,8 b' test attach for single patch:'
1151 Cc: bar
1151 Cc: bar
1152
1152
1153 --===*= (glob)
1153 --===*= (glob)
1154 MIME-Version: 1.0
1154 Content-Type: text/plain; charset="us-ascii"
1155 Content-Type: text/plain; charset="us-ascii"
1155 MIME-Version: 1.0
1156 Content-Transfer-Encoding: 7bit
1156 Content-Transfer-Encoding: 7bit
1157
1157
1158 Patch subject is complete summary.
1158 Patch subject is complete summary.
@@ -1160,8 +1160,8 b' test attach for single patch:'
1160
1160
1161
1161
1162 --===*= (glob)
1162 --===*= (glob)
1163 MIME-Version: 1.0
1163 Content-Type: text/x-patch; charset="us-ascii"
1164 Content-Type: text/x-patch; charset="us-ascii"
1164 MIME-Version: 1.0
1165 Content-Transfer-Encoding: 7bit
1165 Content-Transfer-Encoding: 7bit
1166 Content-Disposition: attachment; filename=t2.patch
1166 Content-Disposition: attachment; filename=t2.patch
1167
1167
@@ -1202,8 +1202,8 b' test attach for single patch (quoted-pri'
1202 Cc: bar
1202 Cc: bar
1203
1203
1204 --===*= (glob)
1204 --===*= (glob)
1205 MIME-Version: 1.0
1205 Content-Type: text/plain; charset="us-ascii"
1206 Content-Type: text/plain; charset="us-ascii"
1206 MIME-Version: 1.0
1207 Content-Transfer-Encoding: 7bit
1207 Content-Transfer-Encoding: 7bit
1208
1208
1209 Patch subject is complete summary.
1209 Patch subject is complete summary.
@@ -1211,8 +1211,8 b' test attach for single patch (quoted-pri'
1211
1211
1212
1212
1213 --===*= (glob)
1213 --===*= (glob)
1214 MIME-Version: 1.0
1214 Content-Type: text/x-patch; charset="us-ascii"
1215 Content-Type: text/x-patch; charset="us-ascii"
1215 MIME-Version: 1.0
1216 Content-Transfer-Encoding: quoted-printable
1216 Content-Transfer-Encoding: quoted-printable
1217 Content-Disposition: attachment; filename=t2.patch
1217 Content-Disposition: attachment; filename=t2.patch
1218
1218
@@ -1269,8 +1269,8 b' test attach and body for single patch:'
1269 Cc: bar
1269 Cc: bar
1270
1270
1271 --===*= (glob)
1271 --===*= (glob)
1272 MIME-Version: 1.0
1272 Content-Type: text/plain; charset="us-ascii"
1273 Content-Type: text/plain; charset="us-ascii"
1273 MIME-Version: 1.0
1274 Content-Transfer-Encoding: 7bit
1274 Content-Transfer-Encoding: 7bit
1275
1275
1276 # HG changeset patch
1276 # HG changeset patch
@@ -1288,8 +1288,8 b' test attach and body for single patch:'
1288 +c
1288 +c
1289
1289
1290 --===*= (glob)
1290 --===*= (glob)
1291 MIME-Version: 1.0
1291 Content-Type: text/x-patch; charset="us-ascii"
1292 Content-Type: text/x-patch; charset="us-ascii"
1292 MIME-Version: 1.0
1293 Content-Transfer-Encoding: 7bit
1293 Content-Transfer-Encoding: 7bit
1294 Content-Disposition: attachment; filename=t2.patch
1294 Content-Disposition: attachment; filename=t2.patch
1295
1295
@@ -1319,8 +1319,8 b' test attach for multiple patches:'
1319
1319
1320
1320
1321 displaying [PATCH 0 of 3] test ...
1321 displaying [PATCH 0 of 3] test ...
1322 MIME-Version: 1.0
1322 Content-Type: text/plain; charset="us-ascii"
1323 Content-Type: text/plain; charset="us-ascii"
1323 MIME-Version: 1.0
1324 Content-Transfer-Encoding: 7bit
1324 Content-Transfer-Encoding: 7bit
1325 Subject: [PATCH 0 of 3] test
1325 Subject: [PATCH 0 of 3] test
1326 Message-Id: <patchbomb.60@*> (glob)
1326 Message-Id: <patchbomb.60@*> (glob)
@@ -1349,8 +1349,8 b' test attach for multiple patches:'
1349 Cc: bar
1349 Cc: bar
1350
1350
1351 --===*= (glob)
1351 --===*= (glob)
1352 MIME-Version: 1.0
1352 Content-Type: text/plain; charset="us-ascii"
1353 Content-Type: text/plain; charset="us-ascii"
1353 MIME-Version: 1.0
1354 Content-Transfer-Encoding: 7bit
1354 Content-Transfer-Encoding: 7bit
1355
1355
1356 Patch subject is complete summary.
1356 Patch subject is complete summary.
@@ -1358,8 +1358,8 b' test attach for multiple patches:'
1358
1358
1359
1359
1360 --===*= (glob)
1360 --===*= (glob)
1361 MIME-Version: 1.0
1361 Content-Type: text/x-patch; charset="us-ascii"
1362 Content-Type: text/x-patch; charset="us-ascii"
1362 MIME-Version: 1.0
1363 Content-Transfer-Encoding: 7bit
1363 Content-Transfer-Encoding: 7bit
1364 Content-Disposition: attachment; filename=t2-1.patch
1364 Content-Disposition: attachment; filename=t2-1.patch
1365
1365
@@ -1396,8 +1396,8 b' test attach for multiple patches:'
1396 Cc: bar
1396 Cc: bar
1397
1397
1398 --===*= (glob)
1398 --===*= (glob)
1399 MIME-Version: 1.0
1399 Content-Type: text/plain; charset="us-ascii"
1400 Content-Type: text/plain; charset="us-ascii"
1400 MIME-Version: 1.0
1401 Content-Transfer-Encoding: 7bit
1401 Content-Transfer-Encoding: 7bit
1402
1402
1403 Patch subject is complete summary.
1403 Patch subject is complete summary.
@@ -1405,8 +1405,8 b' test attach for multiple patches:'
1405
1405
1406
1406
1407 --===*= (glob)
1407 --===*= (glob)
1408 MIME-Version: 1.0
1408 Content-Type: text/x-patch; charset="us-ascii"
1409 Content-Type: text/x-patch; charset="us-ascii"
1409 MIME-Version: 1.0
1410 Content-Transfer-Encoding: 7bit
1410 Content-Transfer-Encoding: 7bit
1411 Content-Disposition: attachment; filename=t2-2.patch
1411 Content-Disposition: attachment; filename=t2-2.patch
1412
1412
@@ -1443,8 +1443,8 b' test attach for multiple patches:'
1443 Cc: bar
1443 Cc: bar
1444
1444
1445 --===*= (glob)
1445 --===*= (glob)
1446 MIME-Version: 1.0
1446 Content-Type: text/plain; charset="us-ascii"
1447 Content-Type: text/plain; charset="us-ascii"
1447 MIME-Version: 1.0
1448 Content-Transfer-Encoding: 7bit
1448 Content-Transfer-Encoding: 7bit
1449
1449
1450 Patch subject is complete summary.
1450 Patch subject is complete summary.
@@ -1452,8 +1452,8 b' test attach for multiple patches:'
1452
1452
1453
1453
1454 --===*= (glob)
1454 --===*= (glob)
1455 MIME-Version: 1.0
1455 Content-Type: text/x-patch; charset="us-ascii"
1456 Content-Type: text/x-patch; charset="us-ascii"
1456 MIME-Version: 1.0
1457 Content-Transfer-Encoding: quoted-printable
1457 Content-Transfer-Encoding: quoted-printable
1458 Content-Disposition: attachment; filename=t2-3.patch
1458 Content-Disposition: attachment; filename=t2-3.patch
1459
1459
@@ -1499,8 +1499,8 b' test intro for single patch:'
1499
1499
1500
1500
1501 displaying [PATCH 0 of 1] test ...
1501 displaying [PATCH 0 of 1] test ...
1502 MIME-Version: 1.0
1502 Content-Type: text/plain; charset="us-ascii"
1503 Content-Type: text/plain; charset="us-ascii"
1503 MIME-Version: 1.0
1504 Content-Transfer-Encoding: 7bit
1504 Content-Transfer-Encoding: 7bit
1505 Subject: [PATCH 0 of 1] test
1505 Subject: [PATCH 0 of 1] test
1506 Message-Id: <patchbomb.60@*> (glob)
1506 Message-Id: <patchbomb.60@*> (glob)
@@ -1512,8 +1512,8 b' test intro for single patch:'
1512
1512
1513
1513
1514 displaying [PATCH 1 of 1] c ...
1514 displaying [PATCH 1 of 1] c ...
1515 MIME-Version: 1.0
1515 Content-Type: text/plain; charset="us-ascii"
1516 Content-Type: text/plain; charset="us-ascii"
1516 MIME-Version: 1.0
1517 Content-Transfer-Encoding: 7bit
1517 Content-Transfer-Encoding: 7bit
1518 Subject: [PATCH 1 of 1] c
1518 Subject: [PATCH 1 of 1] c
1519 X-Mercurial-Node: ff2c9fa2018b15fa74b33363bda9527323e2a99f
1519 X-Mercurial-Node: ff2c9fa2018b15fa74b33363bda9527323e2a99f
@@ -1552,8 +1552,8 b' test --desc without --intro for a single'
1552
1552
1553
1553
1554 displaying [PATCH 0 of 1] test ...
1554 displaying [PATCH 0 of 1] test ...
1555 MIME-Version: 1.0
1555 Content-Type: text/plain; charset="us-ascii"
1556 Content-Type: text/plain; charset="us-ascii"
1556 MIME-Version: 1.0
1557 Content-Transfer-Encoding: 7bit
1557 Content-Transfer-Encoding: 7bit
1558 Subject: [PATCH 0 of 1] test
1558 Subject: [PATCH 0 of 1] test
1559 Message-Id: <patchbomb.60@*> (glob)
1559 Message-Id: <patchbomb.60@*> (glob)
@@ -1566,8 +1566,8 b' test --desc without --intro for a single'
1566 foo
1566 foo
1567
1567
1568 displaying [PATCH 1 of 1] c ...
1568 displaying [PATCH 1 of 1] c ...
1569 MIME-Version: 1.0
1569 Content-Type: text/plain; charset="us-ascii"
1570 Content-Type: text/plain; charset="us-ascii"
1570 MIME-Version: 1.0
1571 Content-Transfer-Encoding: 7bit
1571 Content-Transfer-Encoding: 7bit
1572 Subject: [PATCH 1 of 1] c
1572 Subject: [PATCH 1 of 1] c
1573 X-Mercurial-Node: ff2c9fa2018b15fa74b33363bda9527323e2a99f
1573 X-Mercurial-Node: ff2c9fa2018b15fa74b33363bda9527323e2a99f
@@ -1608,8 +1608,8 b' test intro for multiple patches:'
1608
1608
1609
1609
1610 displaying [PATCH 0 of 2] test ...
1610 displaying [PATCH 0 of 2] test ...
1611 MIME-Version: 1.0
1611 Content-Type: text/plain; charset="us-ascii"
1612 Content-Type: text/plain; charset="us-ascii"
1612 MIME-Version: 1.0
1613 Content-Transfer-Encoding: 7bit
1613 Content-Transfer-Encoding: 7bit
1614 Subject: [PATCH 0 of 2] test
1614 Subject: [PATCH 0 of 2] test
1615 Message-Id: <patchbomb.60@*> (glob)
1615 Message-Id: <patchbomb.60@*> (glob)
@@ -1621,8 +1621,8 b' test intro for multiple patches:'
1621
1621
1622
1622
1623 displaying [PATCH 1 of 2] a ...
1623 displaying [PATCH 1 of 2] a ...
1624 MIME-Version: 1.0
1624 Content-Type: text/plain; charset="us-ascii"
1625 Content-Type: text/plain; charset="us-ascii"
1625 MIME-Version: 1.0
1626 Content-Transfer-Encoding: 7bit
1626 Content-Transfer-Encoding: 7bit
1627 Subject: [PATCH 1 of 2] a
1627 Subject: [PATCH 1 of 2] a
1628 X-Mercurial-Node: 8580ff50825a50c8f716709acdf8de0deddcd6ab
1628 X-Mercurial-Node: 8580ff50825a50c8f716709acdf8de0deddcd6ab
@@ -1653,8 +1653,8 b' test intro for multiple patches:'
1653 +a
1653 +a
1654
1654
1655 displaying [PATCH 2 of 2] b ...
1655 displaying [PATCH 2 of 2] b ...
1656 MIME-Version: 1.0
1656 Content-Type: text/plain; charset="us-ascii"
1657 Content-Type: text/plain; charset="us-ascii"
1657 MIME-Version: 1.0
1658 Content-Transfer-Encoding: 7bit
1658 Content-Transfer-Encoding: 7bit
1659 Subject: [PATCH 2 of 2] b
1659 Subject: [PATCH 2 of 2] b
1660 X-Mercurial-Node: 97d72e5f12c7e84f85064aa72e5a297142c36ed9
1660 X-Mercurial-Node: 97d72e5f12c7e84f85064aa72e5a297142c36ed9
@@ -1692,8 +1692,8 b' test reply-to via config:'
1692
1692
1693
1693
1694 displaying [PATCH] test ...
1694 displaying [PATCH] test ...
1695 MIME-Version: 1.0
1695 Content-Type: text/plain; charset="us-ascii"
1696 Content-Type: text/plain; charset="us-ascii"
1696 MIME-Version: 1.0
1697 Content-Transfer-Encoding: 7bit
1697 Content-Transfer-Encoding: 7bit
1698 Subject: [PATCH] test
1698 Subject: [PATCH] test
1699 X-Mercurial-Node: ff2c9fa2018b15fa74b33363bda9527323e2a99f
1699 X-Mercurial-Node: ff2c9fa2018b15fa74b33363bda9527323e2a99f
@@ -1730,8 +1730,8 b' test reply-to via command line:'
1730
1730
1731
1731
1732 displaying [PATCH] test ...
1732 displaying [PATCH] test ...
1733 MIME-Version: 1.0
1733 Content-Type: text/plain; charset="us-ascii"
1734 Content-Type: text/plain; charset="us-ascii"
1734 MIME-Version: 1.0
1735 Content-Transfer-Encoding: 7bit
1735 Content-Transfer-Encoding: 7bit
1736 Subject: [PATCH] test
1736 Subject: [PATCH] test
1737 X-Mercurial-Node: ff2c9fa2018b15fa74b33363bda9527323e2a99f
1737 X-Mercurial-Node: ff2c9fa2018b15fa74b33363bda9527323e2a99f
@@ -1788,8 +1788,8 b' test inline for single named patch:'
1788 Cc: bar
1788 Cc: bar
1789
1789
1790 --===*= (glob)
1790 --===*= (glob)
1791 MIME-Version: 1.0
1791 Content-Type: text/x-patch; charset="us-ascii"
1792 Content-Type: text/x-patch; charset="us-ascii"
1792 MIME-Version: 1.0
1793 Content-Transfer-Encoding: 7bit
1793 Content-Transfer-Encoding: 7bit
1794 Content-Disposition: inline; filename=two.diff
1794 Content-Disposition: inline; filename=two.diff
1795
1795
@@ -1819,8 +1819,8 b' test inline for multiple named/unnamed p'
1819
1819
1820
1820
1821 displaying [PATCH 0 of 2] test ...
1821 displaying [PATCH 0 of 2] test ...
1822 MIME-Version: 1.0
1822 Content-Type: text/plain; charset="us-ascii"
1823 Content-Type: text/plain; charset="us-ascii"
1823 MIME-Version: 1.0
1824 Content-Transfer-Encoding: 7bit
1824 Content-Transfer-Encoding: 7bit
1825 Subject: [PATCH 0 of 2] test
1825 Subject: [PATCH 0 of 2] test
1826 Message-Id: <patchbomb.60@*> (glob)
1826 Message-Id: <patchbomb.60@*> (glob)
@@ -1849,8 +1849,8 b' test inline for multiple named/unnamed p'
1849 Cc: bar
1849 Cc: bar
1850
1850
1851 --===*= (glob)
1851 --===*= (glob)
1852 MIME-Version: 1.0
1852 Content-Type: text/x-patch; charset="us-ascii"
1853 Content-Type: text/x-patch; charset="us-ascii"
1853 MIME-Version: 1.0
1854 Content-Transfer-Encoding: 7bit
1854 Content-Transfer-Encoding: 7bit
1855 Content-Disposition: inline; filename=t2-1.patch
1855 Content-Disposition: inline; filename=t2-1.patch
1856
1856
@@ -1887,8 +1887,8 b' test inline for multiple named/unnamed p'
1887 Cc: bar
1887 Cc: bar
1888
1888
1889 --===*= (glob)
1889 --===*= (glob)
1890 MIME-Version: 1.0
1890 Content-Type: text/x-patch; charset="us-ascii"
1891 Content-Type: text/x-patch; charset="us-ascii"
1891 MIME-Version: 1.0
1892 Content-Transfer-Encoding: 7bit
1892 Content-Transfer-Encoding: 7bit
1893 Content-Disposition: inline; filename=one.patch
1893 Content-Disposition: inline; filename=one.patch
1894
1894
@@ -1916,8 +1916,8 b' test inreplyto:'
1916
1916
1917
1917
1918 displaying [PATCH] Added tag two, two.diff for changeset ff2c9fa2018b ...
1918 displaying [PATCH] Added tag two, two.diff for changeset ff2c9fa2018b ...
1919 MIME-Version: 1.0
1919 Content-Type: text/plain; charset="us-ascii"
1920 Content-Type: text/plain; charset="us-ascii"
1920 MIME-Version: 1.0
1921 Content-Transfer-Encoding: 7bit
1921 Content-Transfer-Encoding: 7bit
1922 Subject: [PATCH] Added tag two, two.diff for changeset ff2c9fa2018b
1922 Subject: [PATCH] Added tag two, two.diff for changeset ff2c9fa2018b
1923 X-Mercurial-Node: 7aead2484924c445ad8ce2613df91f52f9e502ed
1923 X-Mercurial-Node: 7aead2484924c445ad8ce2613df91f52f9e502ed
@@ -1959,8 +1959,8 b' no intro message in non-interactive mode'
1959 (optional) Subject: [PATCH 0 of 2]
1959 (optional) Subject: [PATCH 0 of 2]
1960
1960
1961 displaying [PATCH 1 of 2] a ...
1961 displaying [PATCH 1 of 2] a ...
1962 MIME-Version: 1.0
1962 Content-Type: text/plain; charset="us-ascii"
1963 Content-Type: text/plain; charset="us-ascii"
1963 MIME-Version: 1.0
1964 Content-Transfer-Encoding: 7bit
1964 Content-Transfer-Encoding: 7bit
1965 Subject: [PATCH 1 of 2] a
1965 Subject: [PATCH 1 of 2] a
1966 X-Mercurial-Node: 8580ff50825a50c8f716709acdf8de0deddcd6ab
1966 X-Mercurial-Node: 8580ff50825a50c8f716709acdf8de0deddcd6ab
@@ -1991,8 +1991,8 b' no intro message in non-interactive mode'
1991 +a
1991 +a
1992
1992
1993 displaying [PATCH 2 of 2] b ...
1993 displaying [PATCH 2 of 2] b ...
1994 MIME-Version: 1.0
1994 Content-Type: text/plain; charset="us-ascii"
1995 Content-Type: text/plain; charset="us-ascii"
1995 MIME-Version: 1.0
1996 Content-Transfer-Encoding: 7bit
1996 Content-Transfer-Encoding: 7bit
1997 Subject: [PATCH 2 of 2] b
1997 Subject: [PATCH 2 of 2] b
1998 X-Mercurial-Node: 97d72e5f12c7e84f85064aa72e5a297142c36ed9
1998 X-Mercurial-Node: 97d72e5f12c7e84f85064aa72e5a297142c36ed9
@@ -2034,8 +2034,8 b' no intro message in non-interactive mode'
2034
2034
2035
2035
2036 displaying [PATCH 0 of 2] test ...
2036 displaying [PATCH 0 of 2] test ...
2037 MIME-Version: 1.0
2037 Content-Type: text/plain; charset="us-ascii"
2038 Content-Type: text/plain; charset="us-ascii"
2038 MIME-Version: 1.0
2039 Content-Transfer-Encoding: 7bit
2039 Content-Transfer-Encoding: 7bit
2040 Subject: [PATCH 0 of 2] test
2040 Subject: [PATCH 0 of 2] test
2041 Message-Id: <patchbomb.60@*> (glob)
2041 Message-Id: <patchbomb.60@*> (glob)
@@ -2049,8 +2049,8 b' no intro message in non-interactive mode'
2049
2049
2050
2050
2051 displaying [PATCH 1 of 2] a ...
2051 displaying [PATCH 1 of 2] a ...
2052 MIME-Version: 1.0
2052 Content-Type: text/plain; charset="us-ascii"
2053 Content-Type: text/plain; charset="us-ascii"
2053 MIME-Version: 1.0
2054 Content-Transfer-Encoding: 7bit
2054 Content-Transfer-Encoding: 7bit
2055 Subject: [PATCH 1 of 2] a
2055 Subject: [PATCH 1 of 2] a
2056 X-Mercurial-Node: 8580ff50825a50c8f716709acdf8de0deddcd6ab
2056 X-Mercurial-Node: 8580ff50825a50c8f716709acdf8de0deddcd6ab
@@ -2081,8 +2081,8 b' no intro message in non-interactive mode'
2081 +a
2081 +a
2082
2082
2083 displaying [PATCH 2 of 2] b ...
2083 displaying [PATCH 2 of 2] b ...
2084 MIME-Version: 1.0
2084 Content-Type: text/plain; charset="us-ascii"
2085 Content-Type: text/plain; charset="us-ascii"
2085 MIME-Version: 1.0
2086 Content-Transfer-Encoding: 7bit
2086 Content-Transfer-Encoding: 7bit
2087 Subject: [PATCH 2 of 2] b
2087 Subject: [PATCH 2 of 2] b
2088 X-Mercurial-Node: 97d72e5f12c7e84f85064aa72e5a297142c36ed9
2088 X-Mercurial-Node: 97d72e5f12c7e84f85064aa72e5a297142c36ed9
@@ -2122,8 +2122,8 b' test single flag for single patch (and n'
2122
2122
2123
2123
2124 displaying [PATCH fooFlag] test ...
2124 displaying [PATCH fooFlag] test ...
2125 MIME-Version: 1.0
2125 Content-Type: text/plain; charset="us-ascii"
2126 Content-Type: text/plain; charset="us-ascii"
2126 MIME-Version: 1.0
2127 Content-Transfer-Encoding: 7bit
2127 Content-Transfer-Encoding: 7bit
2128 Subject: [PATCH fooFlag] test
2128 Subject: [PATCH fooFlag] test
2129 X-Mercurial-Node: ff2c9fa2018b15fa74b33363bda9527323e2a99f
2129 X-Mercurial-Node: ff2c9fa2018b15fa74b33363bda9527323e2a99f
@@ -2163,8 +2163,8 b' test single flag for multiple patches (a'
2163
2163
2164
2164
2165 displaying [PATCH 0 of 2 fooFlag] test ...
2165 displaying [PATCH 0 of 2 fooFlag] test ...
2166 MIME-Version: 1.0
2166 Content-Type: text/plain; charset="us-ascii"
2167 Content-Type: text/plain; charset="us-ascii"
2167 MIME-Version: 1.0
2168 Content-Transfer-Encoding: 7bit
2168 Content-Transfer-Encoding: 7bit
2169 Subject: [PATCH 0 of 2 fooFlag] test
2169 Subject: [PATCH 0 of 2 fooFlag] test
2170 Message-Id: <patchbomb.60@*> (glob)
2170 Message-Id: <patchbomb.60@*> (glob)
@@ -2176,8 +2176,8 b' test single flag for multiple patches (a'
2176
2176
2177
2177
2178 displaying [PATCH 1 of 2 fooFlag] a ...
2178 displaying [PATCH 1 of 2 fooFlag] a ...
2179 MIME-Version: 1.0
2179 Content-Type: text/plain; charset="us-ascii"
2180 Content-Type: text/plain; charset="us-ascii"
2180 MIME-Version: 1.0
2181 Content-Transfer-Encoding: 7bit
2181 Content-Transfer-Encoding: 7bit
2182 Subject: [PATCH 1 of 2 fooFlag] a
2182 Subject: [PATCH 1 of 2 fooFlag] a
2183 X-Mercurial-Node: 8580ff50825a50c8f716709acdf8de0deddcd6ab
2183 X-Mercurial-Node: 8580ff50825a50c8f716709acdf8de0deddcd6ab
@@ -2208,8 +2208,8 b' test single flag for multiple patches (a'
2208 +a
2208 +a
2209
2209
2210 displaying [PATCH 2 of 2 fooFlag] b ...
2210 displaying [PATCH 2 of 2 fooFlag] b ...
2211 MIME-Version: 1.0
2211 Content-Type: text/plain; charset="us-ascii"
2212 Content-Type: text/plain; charset="us-ascii"
2212 MIME-Version: 1.0
2213 Content-Transfer-Encoding: 7bit
2213 Content-Transfer-Encoding: 7bit
2214 Subject: [PATCH 2 of 2 fooFlag] b
2214 Subject: [PATCH 2 of 2 fooFlag] b
2215 X-Mercurial-Node: 97d72e5f12c7e84f85064aa72e5a297142c36ed9
2215 X-Mercurial-Node: 97d72e5f12c7e84f85064aa72e5a297142c36ed9
@@ -2249,8 +2249,8 b' test multiple flags for single patch:'
2249
2249
2250
2250
2251 displaying [PATCH fooFlag barFlag] test ...
2251 displaying [PATCH fooFlag barFlag] test ...
2252 MIME-Version: 1.0
2252 Content-Type: text/plain; charset="us-ascii"
2253 Content-Type: text/plain; charset="us-ascii"
2253 MIME-Version: 1.0
2254 Content-Transfer-Encoding: 7bit
2254 Content-Transfer-Encoding: 7bit
2255 Subject: [PATCH fooFlag barFlag] test
2255 Subject: [PATCH fooFlag barFlag] test
2256 X-Mercurial-Node: ff2c9fa2018b15fa74b33363bda9527323e2a99f
2256 X-Mercurial-Node: ff2c9fa2018b15fa74b33363bda9527323e2a99f
@@ -2289,8 +2289,8 b' test multiple flags for multiple patches'
2289
2289
2290
2290
2291 displaying [PATCH 0 of 2 fooFlag barFlag] test ...
2291 displaying [PATCH 0 of 2 fooFlag barFlag] test ...
2292 MIME-Version: 1.0
2292 Content-Type: text/plain; charset="us-ascii"
2293 Content-Type: text/plain; charset="us-ascii"
2293 MIME-Version: 1.0
2294 Content-Transfer-Encoding: 7bit
2294 Content-Transfer-Encoding: 7bit
2295 Subject: [PATCH 0 of 2 fooFlag barFlag] test
2295 Subject: [PATCH 0 of 2 fooFlag barFlag] test
2296 Message-Id: <patchbomb.60@*> (glob)
2296 Message-Id: <patchbomb.60@*> (glob)
@@ -2302,8 +2302,8 b' test multiple flags for multiple patches'
2302
2302
2303
2303
2304 displaying [PATCH 1 of 2 fooFlag barFlag] a ...
2304 displaying [PATCH 1 of 2 fooFlag barFlag] a ...
2305 MIME-Version: 1.0
2305 Content-Type: text/plain; charset="us-ascii"
2306 Content-Type: text/plain; charset="us-ascii"
2306 MIME-Version: 1.0
2307 Content-Transfer-Encoding: 7bit
2307 Content-Transfer-Encoding: 7bit
2308 Subject: [PATCH 1 of 2 fooFlag barFlag] a
2308 Subject: [PATCH 1 of 2 fooFlag barFlag] a
2309 X-Mercurial-Node: 8580ff50825a50c8f716709acdf8de0deddcd6ab
2309 X-Mercurial-Node: 8580ff50825a50c8f716709acdf8de0deddcd6ab
@@ -2334,8 +2334,8 b' test multiple flags for multiple patches'
2334 +a
2334 +a
2335
2335
2336 displaying [PATCH 2 of 2 fooFlag barFlag] b ...
2336 displaying [PATCH 2 of 2 fooFlag barFlag] b ...
2337 MIME-Version: 1.0
2337 Content-Type: text/plain; charset="us-ascii"
2338 Content-Type: text/plain; charset="us-ascii"
2338 MIME-Version: 1.0
2339 Content-Transfer-Encoding: 7bit
2339 Content-Transfer-Encoding: 7bit
2340 Subject: [PATCH 2 of 2 fooFlag barFlag] b
2340 Subject: [PATCH 2 of 2 fooFlag barFlag] b
2341 X-Mercurial-Node: 97d72e5f12c7e84f85064aa72e5a297142c36ed9
2341 X-Mercurial-Node: 97d72e5f12c7e84f85064aa72e5a297142c36ed9
@@ -2376,8 +2376,8 b' test multi-address parsing:'
2376 sending [PATCH] test ...
2376 sending [PATCH] test ...
2377 $ cat < tmp.mbox
2377 $ cat < tmp.mbox
2378 From quux ... ... .. ..:..:.. .... (re)
2378 From quux ... ... .. ..:..:.. .... (re)
2379 MIME-Version: 1.0
2379 Content-Type: text/plain; charset="us-ascii"
2380 Content-Type: text/plain; charset="us-ascii"
2380 MIME-Version: 1.0
2381 Content-Transfer-Encoding: 7bit
2381 Content-Transfer-Encoding: 7bit
2382 Subject: [PATCH] test
2382 Subject: [PATCH] test
2383 X-Mercurial-Node: 8580ff50825a50c8f716709acdf8de0deddcd6ab
2383 X-Mercurial-Node: 8580ff50825a50c8f716709acdf8de0deddcd6ab
@@ -2418,8 +2418,8 b' test flag template:'
2418 Cc:
2418 Cc:
2419
2419
2420 displaying [PATCH 0 of 2 R1] test ...
2420 displaying [PATCH 0 of 2 R1] test ...
2421 MIME-Version: 1.0
2421 Content-Type: text/plain; charset="us-ascii"
2422 Content-Type: text/plain; charset="us-ascii"
2422 MIME-Version: 1.0
2423 Content-Transfer-Encoding: 7bit
2423 Content-Transfer-Encoding: 7bit
2424 Subject: [PATCH 0 of 2 R1] test
2424 Subject: [PATCH 0 of 2 R1] test
2425 Message-Id: <patchbomb.60@*> (glob)
2425 Message-Id: <patchbomb.60@*> (glob)
@@ -2431,8 +2431,8 b' test flag template:'
2431 foo
2431 foo
2432
2432
2433 displaying [PATCH 1 of 2 R0] a ...
2433 displaying [PATCH 1 of 2 R0] a ...
2434 MIME-Version: 1.0
2434 Content-Type: text/plain; charset="us-ascii"
2435 Content-Type: text/plain; charset="us-ascii"
2435 MIME-Version: 1.0
2436 Content-Transfer-Encoding: 7bit
2436 Content-Transfer-Encoding: 7bit
2437 Subject: [PATCH 1 of 2 R0] a
2437 Subject: [PATCH 1 of 2 R0] a
2438 X-Mercurial-Node: 8580ff50825a50c8f716709acdf8de0deddcd6ab
2438 X-Mercurial-Node: 8580ff50825a50c8f716709acdf8de0deddcd6ab
@@ -2462,8 +2462,8 b' test flag template:'
2462 +a
2462 +a
2463
2463
2464 displaying [PATCH 2 of 2 R1] b ...
2464 displaying [PATCH 2 of 2 R1] b ...
2465 MIME-Version: 1.0
2465 Content-Type: text/plain; charset="us-ascii"
2466 Content-Type: text/plain; charset="us-ascii"
2466 MIME-Version: 1.0
2467 Content-Transfer-Encoding: 7bit
2467 Content-Transfer-Encoding: 7bit
2468 Subject: [PATCH 2 of 2 R1] b
2468 Subject: [PATCH 2 of 2 R1] b
2469 X-Mercurial-Node: 97d72e5f12c7e84f85064aa72e5a297142c36ed9
2469 X-Mercurial-Node: 97d72e5f12c7e84f85064aa72e5a297142c36ed9
@@ -2501,8 +2501,8 b' test flag template plus --flag:'
2501 Cc:
2501 Cc:
2502
2502
2503 displaying [PATCH default V2] a ...
2503 displaying [PATCH default V2] a ...
2504 MIME-Version: 1.0
2504 Content-Type: text/plain; charset="us-ascii"
2505 Content-Type: text/plain; charset="us-ascii"
2505 MIME-Version: 1.0
2506 Content-Transfer-Encoding: 7bit
2506 Content-Transfer-Encoding: 7bit
2507 Subject: [PATCH default V2] a
2507 Subject: [PATCH default V2] a
2508 X-Mercurial-Node: 8580ff50825a50c8f716709acdf8de0deddcd6ab
2508 X-Mercurial-Node: 8580ff50825a50c8f716709acdf8de0deddcd6ab
@@ -2543,8 +2543,8 b' test multi-byte domain parsing:'
2543
2543
2544 $ cat tmp.mbox
2544 $ cat tmp.mbox
2545 From quux ... ... .. ..:..:.. .... (re)
2545 From quux ... ... .. ..:..:.. .... (re)
2546 MIME-Version: 1.0
2546 Content-Type: text/plain; charset="us-ascii"
2547 Content-Type: text/plain; charset="us-ascii"
2547 MIME-Version: 1.0
2548 Content-Transfer-Encoding: 7bit
2548 Content-Transfer-Encoding: 7bit
2549 Subject: [PATCH] test
2549 Subject: [PATCH] test
2550 X-Mercurial-Node: 8580ff50825a50c8f716709acdf8de0deddcd6ab
2550 X-Mercurial-Node: 8580ff50825a50c8f716709acdf8de0deddcd6ab
@@ -2621,8 +2621,8 b' test outgoing:'
2621 Cc:
2621 Cc:
2622
2622
2623 displaying [PATCH 0 of 6] test ...
2623 displaying [PATCH 0 of 6] test ...
2624 MIME-Version: 1.0
2624 Content-Type: text/plain; charset="us-ascii"
2625 Content-Type: text/plain; charset="us-ascii"
2625 MIME-Version: 1.0
2626 Content-Transfer-Encoding: 7bit
2626 Content-Transfer-Encoding: 7bit
2627 Subject: [PATCH 0 of 6] test
2627 Subject: [PATCH 0 of 6] test
2628 Message-Id: <patchbomb.315532860@*> (glob)
2628 Message-Id: <patchbomb.315532860@*> (glob)
@@ -2633,8 +2633,8 b' test outgoing:'
2633
2633
2634
2634
2635 displaying [PATCH 1 of 6] c ...
2635 displaying [PATCH 1 of 6] c ...
2636 MIME-Version: 1.0
2636 Content-Type: text/plain; charset="us-ascii"
2637 Content-Type: text/plain; charset="us-ascii"
2637 MIME-Version: 1.0
2638 Content-Transfer-Encoding: 7bit
2638 Content-Transfer-Encoding: 7bit
2639 Subject: [PATCH 1 of 6] c
2639 Subject: [PATCH 1 of 6] c
2640 X-Mercurial-Node: ff2c9fa2018b15fa74b33363bda9527323e2a99f
2640 X-Mercurial-Node: ff2c9fa2018b15fa74b33363bda9527323e2a99f
@@ -2664,8 +2664,8 b' test outgoing:'
2664 +c
2664 +c
2665
2665
2666 displaying [PATCH 2 of 6] utf-8 content ...
2666 displaying [PATCH 2 of 6] utf-8 content ...
2667 MIME-Version: 1.0
2667 Content-Type: text/plain; charset="us-ascii"
2668 Content-Type: text/plain; charset="us-ascii"
2668 MIME-Version: 1.0
2669 Content-Transfer-Encoding: 8bit
2669 Content-Transfer-Encoding: 8bit
2670 Subject: [PATCH 2 of 6] utf-8 content
2670 Subject: [PATCH 2 of 6] utf-8 content
2671 X-Mercurial-Node: 909a00e13e9d78b575aeee23dddbada46d5a143f
2671 X-Mercurial-Node: 909a00e13e9d78b575aeee23dddbada46d5a143f
@@ -2702,8 +2702,8 b' test outgoing:'
2702 +h\xc3\xb6mma! (esc)
2702 +h\xc3\xb6mma! (esc)
2703
2703
2704 displaying [PATCH 3 of 6] long line ...
2704 displaying [PATCH 3 of 6] long line ...
2705 MIME-Version: 1.0
2705 Content-Type: text/plain; charset="us-ascii"
2706 Content-Type: text/plain; charset="us-ascii"
2706 MIME-Version: 1.0
2707 Content-Transfer-Encoding: quoted-printable
2707 Content-Transfer-Encoding: quoted-printable
2708 Subject: [PATCH 3 of 6] long line
2708 Subject: [PATCH 3 of 6] long line
2709 X-Mercurial-Node: a2ea8fc83dd8b93cfd86ac97b28287204ab806e1
2709 X-Mercurial-Node: a2ea8fc83dd8b93cfd86ac97b28287204ab806e1
@@ -2749,8 +2749,8 b' test outgoing:'
2749 +bar
2749 +bar
2750
2750
2751 displaying [PATCH 4 of 6] isolatin 8-bit encoding ...
2751 displaying [PATCH 4 of 6] isolatin 8-bit encoding ...
2752 MIME-Version: 1.0
2752 Content-Type: text/plain; charset="us-ascii"
2753 Content-Type: text/plain; charset="us-ascii"
2753 MIME-Version: 1.0
2754 Content-Transfer-Encoding: 8bit
2754 Content-Transfer-Encoding: 8bit
2755 Subject: [PATCH 4 of 6] isolatin 8-bit encoding
2755 Subject: [PATCH 4 of 6] isolatin 8-bit encoding
2756 X-Mercurial-Node: 240fb913fc1b7ff15ddb9f33e73d82bf5277c720
2756 X-Mercurial-Node: 240fb913fc1b7ff15ddb9f33e73d82bf5277c720
@@ -2780,8 +2780,8 b' test outgoing:'
2780 +h\xf6mma! (esc)
2780 +h\xf6mma! (esc)
2781
2781
2782 displaying [PATCH 5 of 6] Added tag zero, zero.foo for changeset 8580ff50825a ...
2782 displaying [PATCH 5 of 6] Added tag zero, zero.foo for changeset 8580ff50825a ...
2783 MIME-Version: 1.0
2783 Content-Type: text/plain; charset="us-ascii"
2784 Content-Type: text/plain; charset="us-ascii"
2784 MIME-Version: 1.0
2785 Content-Transfer-Encoding: 7bit
2785 Content-Transfer-Encoding: 7bit
2786 Subject: [PATCH 5 of 6] Added tag zero, zero.foo for changeset 8580ff50825a
2786 Subject: [PATCH 5 of 6] Added tag zero, zero.foo for changeset 8580ff50825a
2787 X-Mercurial-Node: 5d5ef15dfe5e7bd3a4ee154b5fff76c7945ec433
2787 X-Mercurial-Node: 5d5ef15dfe5e7bd3a4ee154b5fff76c7945ec433
@@ -2812,8 +2812,8 b' test outgoing:'
2812 +8580ff50825a50c8f716709acdf8de0deddcd6ab zero.foo
2812 +8580ff50825a50c8f716709acdf8de0deddcd6ab zero.foo
2813
2813
2814 displaying [PATCH 6 of 6] d ...
2814 displaying [PATCH 6 of 6] d ...
2815 MIME-Version: 1.0
2815 Content-Type: text/plain; charset="us-ascii"
2816 Content-Type: text/plain; charset="us-ascii"
2816 MIME-Version: 1.0
2817 Content-Transfer-Encoding: 7bit
2817 Content-Transfer-Encoding: 7bit
2818 Subject: [PATCH 6 of 6] d
2818 Subject: [PATCH 6 of 6] d
2819 X-Mercurial-Node: 2f9fa9b998c5fe3ac2bd9a2b14bfcbeecbc7c268
2819 X-Mercurial-Node: 2f9fa9b998c5fe3ac2bd9a2b14bfcbeecbc7c268
@@ -2857,8 +2857,8 b' dest#branch URIs:'
2857
2857
2858
2858
2859 displaying [PATCH] test ...
2859 displaying [PATCH] test ...
2860 MIME-Version: 1.0
2860 Content-Type: text/plain; charset="us-ascii"
2861 Content-Type: text/plain; charset="us-ascii"
2861 MIME-Version: 1.0
2862 Content-Transfer-Encoding: 7bit
2862 Content-Transfer-Encoding: 7bit
2863 Subject: [PATCH] test
2863 Subject: [PATCH] test
2864 X-Mercurial-Node: 2f9fa9b998c5fe3ac2bd9a2b14bfcbeecbc7c268
2864 X-Mercurial-Node: 2f9fa9b998c5fe3ac2bd9a2b14bfcbeecbc7c268
@@ -2992,8 +2992,8 b' single rev'
2992 warning: invalid patchbomb.intro value "mpmwearaclownnose"
2992 warning: invalid patchbomb.intro value "mpmwearaclownnose"
2993 (should be one of always, never, auto)
2993 (should be one of always, never, auto)
2994 -f test foo
2994 -f test foo
2995 MIME-Version: 1.0
2995 Content-Type: text/plain; charset="us-ascii"
2996 Content-Type: text/plain; charset="us-ascii"
2996 MIME-Version: 1.0
2997 Content-Transfer-Encoding: 7bit
2997 Content-Transfer-Encoding: 7bit
2998 Subject: [PATCH] test
2998 Subject: [PATCH] test
2999 X-Mercurial-Node: 3b6f1ec9dde933a40a115a7990f8b320477231af
2999 X-Mercurial-Node: 3b6f1ec9dde933a40a115a7990f8b320477231af
General Comments 0
You need to be logged in to leave comments. Login now