3 test_description='git send-email'
6 # May be altered later in the test
9 replace_variable_fields () {
10 sed -e "s/^\(Date:\).*/\1 DATE-STRING/" \
11 -e "s/^\(Message-Id:\).*/\1 MESSAGE-ID-STRING/" \
12 -e "s/^\(X-Mailer:\).*/\1 X-MAILER-STRING/"
15 test_expect_success $PREREQ 'prepare reference tree' '
16 echo "1A quick brown fox jumps over the" >file &&
17 echo "lazy dog" >>file &&
19 GIT_AUTHOR_NAME="A" git commit -a -m "Initial."
22 test_expect_success $PREREQ 'Setup helper tool' '
23 write_script fake.sendmail <<-\EOF &&
26 while test -f commandline$output
33 done >commandline$output
36 git add fake.sendmail &&
37 GIT_AUTHOR_NAME="A" git commit -a -m "Second."
40 clean_fake_sendmail () {
41 rm -f commandline* msgtxt*
44 test_expect_success $PREREQ 'Extract patches' '
45 patches=$(git format-patch -s --cc="One <one@example.com>" --cc=two@example.com -n HEAD^1)
48 # Test no confirm early to ensure remaining tests will not hang
52 GIT_SEND_EMAIL_NOTTY=1 \
54 --from="Example <from@example.com>" \
55 --to=nobody@example.com \
56 --smtp-server="$(pwd)/fake.sendmail" \
59 ! grep "Send this email" stdout &&
63 # Exit immediately to prevent hang if a no-confirm test fails
65 if ! test -f no_confirm_okay
67 say 'confirm test failed; skipping remaining tests to prevent hanging'
68 PREREQ="$PREREQ,CHECK_NO_CONFIRM"
73 test_expect_success $PREREQ 'No confirm with --suppress-cc' '
74 test_no_confirm --suppress-cc=sob &&
79 test_expect_success $PREREQ 'No confirm with --confirm=never' '
80 test_no_confirm --confirm=never &&
84 # leave sendemail.confirm set to never after this so that none of the
85 # remaining tests prompt unintentionally.
86 test_expect_success $PREREQ 'No confirm with sendemail.confirm=never' '
87 git config sendemail.confirm never &&
88 test_no_confirm --compose --subject=foo &&
92 test_expect_success $PREREQ 'Send patches' '
93 git send-email --suppress-cc=sob --from="Example <nobody@example.com>" --to=nobody@example.com --smtp-server="$(pwd)/fake.sendmail" $patches 2>errors
96 test_expect_success $PREREQ 'setup expect' '
105 test_expect_success $PREREQ 'Verify commandline' '
106 test_cmp expected commandline1
109 test_expect_success $PREREQ 'Send patches with --envelope-sender' '
110 clean_fake_sendmail &&
111 git send-email --envelope-sender="Patch Contributor <patch@example.com>" --suppress-cc=sob --from="Example <nobody@example.com>" --to=nobody@example.com --smtp-server="$(pwd)/fake.sendmail" $patches 2>errors
114 test_expect_success $PREREQ 'setup expect' '
115 cat >expected <<-\EOF
125 test_expect_success $PREREQ 'Verify commandline' '
126 test_cmp expected commandline1
129 test_expect_success $PREREQ 'Send patches with --envelope-sender=auto' '
130 clean_fake_sendmail &&
131 git send-email --envelope-sender=auto --suppress-cc=sob --from="Example <nobody@example.com>" --to=nobody@example.com --smtp-server="$(pwd)/fake.sendmail" $patches 2>errors
134 test_expect_success $PREREQ 'setup expect' '
135 cat >expected <<-\EOF
145 test_expect_success $PREREQ 'Verify commandline' '
146 test_cmp expected commandline1
149 test_expect_success $PREREQ 'setup expect for cc trailer' "
150 cat >expected-cc <<\EOF
151 !recipient@example.com!
162 test_expect_success $PREREQ 'cc trailer with various syntax' '
163 test_commit cc-trailer &&
164 test_when_finished "git reset --hard HEAD^" &&
165 git commit --amend -F - <<-EOF &&
169 Cc: <two@example.com> # trailing comments are ignored
170 Cc: <three@example.com>, <not.four@example.com> one address per line
171 Cc: "Some # Body" <four@example.com> [ <also.a.comment> ]
172 Cc: five@example.com # not.six@example.com
173 Cc: six@example.com, not.seven@example.com
175 clean_fake_sendmail &&
176 git send-email -1 --to=recipient@example.com \
177 --smtp-server="$(pwd)/fake.sendmail" &&
178 test_cmp expected-cc commandline1
181 test_expect_success $PREREQ 'setup fake get_maintainer.pl script for cc trailer' "
182 write_script expected-cc-script.sh <<-EOF
183 echo 'One Person <one@example.com> (supporter:THIS (FOO/bar))'
184 echo 'Two Person <two@example.com> (maintainer:THIS THING)'
185 echo 'Third List <three@example.com> (moderated list:THIS THING (FOO/bar))'
186 echo '<four@example.com> (moderated list:FOR THING)'
187 echo 'five@example.com (open list:FOR THING (FOO/bar))'
188 echo 'six@example.com (open list)'
192 test_expect_success $PREREQ 'cc trailer with get_maintainer.pl output' '
193 clean_fake_sendmail &&
194 git send-email -1 --to=recipient@example.com \
195 --cc-cmd=./expected-cc-script.sh \
196 --smtp-server="$(pwd)/fake.sendmail" &&
197 test_cmp expected-cc commandline1
200 test_expect_success $PREREQ 'setup expect' "
201 cat >expected-show-all-headers <<\EOF
203 (mbox) Adding cc: A <author@example.com> from line 'From: A <author@example.com>'
204 (mbox) Adding cc: One <one@example.com> from line 'Cc: One <one@example.com>, two@example.com'
205 (mbox) Adding cc: two@example.com from line 'Cc: One <one@example.com>, two@example.com'
207 Server: relay.example.com
208 MAIL FROM:<from@example.com>
209 RCPT TO:<to@example.com>
210 RCPT TO:<cc@example.com>
211 RCPT TO:<author@example.com>
212 RCPT TO:<one@example.com>
213 RCPT TO:<two@example.com>
214 RCPT TO:<bcc@example.com>
215 From: Example <from@example.com>
218 A <author@example.com>,
219 One <one@example.com>,
221 Subject: [PATCH 1/1] Second.
223 Message-Id: MESSAGE-ID-STRING
224 X-Mailer: X-MAILER-STRING
225 In-Reply-To: <unique-message-id@example.com>
226 References: <unique-message-id@example.com>
227 Reply-To: Reply <reply@example.com>
229 Content-Transfer-Encoding: 8bit
235 test_suppress_self () {
237 test_when_finished "git reset --hard HEAD^" &&
239 write_script cccmd-sed <<-EOF &&
240 sed -n -e s/^cccmd--//p "\$1"
243 git commit --amend --author="$1 <$2>" -F - &&
244 clean_fake_sendmail &&
245 git format-patch --stdout -1 >"suppress-self-$3.patch" &&
247 git send-email --from="$1 <$2>" \
248 --to=nobody@example.com \
249 --cc-cmd=./cccmd-sed \
251 --smtp-server="$(pwd)/fake.sendmail" \
252 suppress-self-$3.patch &&
254 mv msgtxt1 msgtxt1-$3 &&
255 sed -e '/^$/q' msgtxt1-$3 >"msghdr1-$3" &&
256 >"expected-no-cc-$3" &&
258 (grep '^Cc:' msghdr1-$3 >"actual-no-cc-$3";
259 test_cmp expected-no-cc-$3 actual-no-cc-$3)
262 test_suppress_self_unquoted () {
263 test_suppress_self "$1" "$2" "unquoted-$3" <<-EOF
264 test suppress-cc.self unquoted-$3 with name $1 email $2
271 Signed-off-by: $1 <$2>
275 test_suppress_self_quoted () {
276 test_suppress_self "$1" "$2" "quoted-$3" <<-EOF
277 test suppress-cc.self quoted-$3 with name $1 email $2
285 Signed-off-by: $1 <$2>
286 Signed-off-by: "$1" <$2>
290 test_expect_success $PREREQ 'self name is suppressed' "
291 test_suppress_self_unquoted 'A U Thor' 'author@example.com' \
292 'self_name_suppressed'
295 test_expect_success $PREREQ 'self name with dot is suppressed' "
296 test_suppress_self_quoted 'A U. Thor' 'author@example.com' \
297 'self_name_dot_suppressed'
300 test_expect_success $PREREQ 'non-ascii self name is suppressed' "
301 test_suppress_self_quoted 'Füñný Nâmé' 'odd_?=mail@example.com' \
302 'non_ascii_self_suppressed'
305 # This name is long enough to force format-patch to split it into multiple
306 # encoded-words, assuming it uses UTF-8 with the "Q" encoding.
307 test_expect_success $PREREQ 'long non-ascii self name is suppressed' "
308 test_suppress_self_quoted 'Ƒüñníęř €. Nâṁé' 'odd_?=mail@example.com' \
309 'long_non_ascii_self_suppressed'
312 test_expect_success $PREREQ 'sanitized self name is suppressed' "
313 test_suppress_self_unquoted '\"A U. Thor\"' 'author@example.com' \
314 'self_name_sanitized_suppressed'
317 test_expect_success $PREREQ 'Show all headers' '
321 --from="Example <from@example.com>" \
322 --reply-to="Reply <reply@example.com>" \
323 --to=to@example.com \
324 --cc=cc@example.com \
325 --bcc=bcc@example.com \
326 --in-reply-to="<unique-message-id@example.com>" \
327 --smtp-server relay.example.com \
328 $patches | replace_variable_fields \
329 >actual-show-all-headers &&
330 test_cmp expected-show-all-headers actual-show-all-headers
333 test_expect_success $PREREQ 'Prompting works' '
334 clean_fake_sendmail &&
335 (echo "to@example.com"
337 ) | GIT_SEND_EMAIL_NOTTY=1 git send-email \
338 --smtp-server="$(pwd)/fake.sendmail" \
341 grep "^From: A U Thor <author@example.com>\$" msgtxt1 &&
342 grep "^To: to@example.com\$" msgtxt1
345 test_expect_success $PREREQ,AUTOIDENT 'implicit ident is allowed' '
346 clean_fake_sendmail &&
347 (sane_unset GIT_AUTHOR_NAME &&
348 sane_unset GIT_AUTHOR_EMAIL &&
349 sane_unset GIT_COMMITTER_NAME &&
350 sane_unset GIT_COMMITTER_EMAIL &&
351 GIT_SEND_EMAIL_NOTTY=1 git send-email \
352 --smtp-server="$(pwd)/fake.sendmail" \
353 --to=to@example.com \
354 $patches </dev/null 2>errors
358 test_expect_success $PREREQ,!AUTOIDENT 'broken implicit ident aborts send-email' '
359 clean_fake_sendmail &&
360 (sane_unset GIT_AUTHOR_NAME &&
361 sane_unset GIT_AUTHOR_EMAIL &&
362 sane_unset GIT_COMMITTER_NAME &&
363 sane_unset GIT_COMMITTER_EMAIL &&
364 GIT_SEND_EMAIL_NOTTY=1 && export GIT_SEND_EMAIL_NOTTY &&
365 test_must_fail git send-email \
366 --smtp-server="$(pwd)/fake.sendmail" \
367 --to=to@example.com \
368 $patches </dev/null 2>errors &&
369 test_i18ngrep "tell me who you are" errors
373 test_expect_success $PREREQ 'setup tocmd and cccmd scripts' '
374 write_script tocmd-sed <<-\EOF &&
375 sed -n -e "s/^tocmd--//p" "$1"
377 write_script cccmd-sed <<-\EOF
378 sed -n -e "s/^cccmd--//p" "$1"
382 test_expect_success $PREREQ 'tocmd works' '
383 clean_fake_sendmail &&
384 cp $patches tocmd.patch &&
385 echo tocmd--tocmd@example.com >>tocmd.patch &&
387 --from="Example <nobody@example.com>" \
388 --to-cmd=./tocmd-sed \
389 --smtp-server="$(pwd)/fake.sendmail" \
392 grep "^To: tocmd@example.com" msgtxt1
395 test_expect_success $PREREQ 'cccmd works' '
396 clean_fake_sendmail &&
397 cp $patches cccmd.patch &&
398 echo "cccmd-- cccmd@example.com" >>cccmd.patch &&
400 --from="Example <nobody@example.com>" \
401 --to=nobody@example.com \
402 --cc-cmd=./cccmd-sed \
403 --smtp-server="$(pwd)/fake.sendmail" \
406 grep "^ cccmd@example.com" msgtxt1
409 test_expect_success $PREREQ 'reject long lines' '
411 z64=$z8$z8$z8$z8$z8$z8$z8$z8 &&
412 z512=$z64$z64$z64$z64$z64$z64$z64$z64 &&
413 clean_fake_sendmail &&
414 cp $patches longline.patch &&
415 echo $z512$z512 >>longline.patch &&
416 test_must_fail git send-email \
417 --from="Example <nobody@example.com>" \
418 --to=nobody@example.com \
419 --smtp-server="$(pwd)/fake.sendmail" \
420 --transfer-encoding=8bit \
421 $patches longline.patch \
423 grep longline.patch errors
426 test_expect_success $PREREQ 'no patch was sent' '
427 ! test -e commandline1
430 test_expect_success $PREREQ 'Author From: in message body' '
431 clean_fake_sendmail &&
433 --from="Example <nobody@example.com>" \
434 --to=nobody@example.com \
435 --smtp-server="$(pwd)/fake.sendmail" \
437 sed "1,/^\$/d" <msgtxt1 >msgbody1 &&
438 grep "From: A <author@example.com>" msgbody1
441 test_expect_success $PREREQ 'Author From: not in message body' '
442 clean_fake_sendmail &&
444 --from="A <author@example.com>" \
445 --to=nobody@example.com \
446 --smtp-server="$(pwd)/fake.sendmail" \
448 sed "1,/^\$/d" <msgtxt1 >msgbody1 &&
449 ! grep "From: A <author@example.com>" msgbody1
452 test_expect_success $PREREQ 'allow long lines with --no-validate' '
454 --from="Example <nobody@example.com>" \
455 --to=nobody@example.com \
456 --smtp-server="$(pwd)/fake.sendmail" \
458 $patches longline.patch \
462 test_expect_success $PREREQ 'short lines with auto encoding are 8bit' '
463 clean_fake_sendmail &&
465 --from="A <author@example.com>" \
466 --to=nobody@example.com \
467 --smtp-server="$(pwd)/fake.sendmail" \
468 --transfer-encoding=auto \
470 grep "Content-Transfer-Encoding: 8bit" msgtxt1
473 test_expect_success $PREREQ 'long lines with auto encoding are quoted-printable' '
474 clean_fake_sendmail &&
476 --from="Example <nobody@example.com>" \
477 --to=nobody@example.com \
478 --smtp-server="$(pwd)/fake.sendmail" \
479 --transfer-encoding=auto \
482 grep "Content-Transfer-Encoding: quoted-printable" msgtxt1
485 for enc in auto quoted-printable base64
487 test_expect_success $PREREQ "--validate passes with encoding $enc" '
489 --from="Example <nobody@example.com>" \
490 --to=nobody@example.com \
491 --smtp-server="$(pwd)/fake.sendmail" \
492 --transfer-encoding=$enc \
494 $patches longline.patch
498 test_expect_success $PREREQ 'Invalid In-Reply-To' '
499 clean_fake_sendmail &&
501 --from="Example <nobody@example.com>" \
502 --to=nobody@example.com \
504 --smtp-server="$(pwd)/fake.sendmail" \
507 ! grep "^In-Reply-To: < *>" msgtxt1
510 test_expect_success $PREREQ 'Valid In-Reply-To when prompting' '
511 clean_fake_sendmail &&
512 (echo "From Example <from@example.com>"
513 echo "To Example <to@example.com>"
515 ) | GIT_SEND_EMAIL_NOTTY=1 git send-email \
516 --smtp-server="$(pwd)/fake.sendmail" \
518 ! grep "^In-Reply-To: < *>" msgtxt1
521 test_expect_success $PREREQ 'In-Reply-To without --chain-reply-to' '
522 clean_fake_sendmail &&
523 echo "<unique-message-id@example.com>" >expect &&
525 --from="Example <nobody@example.com>" \
526 --to=nobody@example.com \
527 --no-chain-reply-to \
528 --in-reply-to="$(cat expect)" \
529 --smtp-server="$(pwd)/fake.sendmail" \
530 $patches $patches $patches \
532 # The first message is a reply to --in-reply-to
533 sed -n -e "s/^In-Reply-To: *\(.*\)/\1/p" msgtxt1 >actual &&
534 test_cmp expect actual &&
535 # Second and subsequent messages are replies to the first one
536 sed -n -e "s/^Message-Id: *\(.*\)/\1/p" msgtxt1 >expect &&
537 sed -n -e "s/^In-Reply-To: *\(.*\)/\1/p" msgtxt2 >actual &&
538 test_cmp expect actual &&
539 sed -n -e "s/^In-Reply-To: *\(.*\)/\1/p" msgtxt3 >actual &&
540 test_cmp expect actual
543 test_expect_success $PREREQ 'In-Reply-To with --chain-reply-to' '
544 clean_fake_sendmail &&
545 echo "<unique-message-id@example.com>" >expect &&
547 --from="Example <nobody@example.com>" \
548 --to=nobody@example.com \
550 --in-reply-to="$(cat expect)" \
551 --smtp-server="$(pwd)/fake.sendmail" \
552 $patches $patches $patches \
554 sed -n -e "s/^In-Reply-To: *\(.*\)/\1/p" msgtxt1 >actual &&
555 test_cmp expect actual &&
556 sed -n -e "s/^Message-Id: *\(.*\)/\1/p" msgtxt1 >expect &&
557 sed -n -e "s/^In-Reply-To: *\(.*\)/\1/p" msgtxt2 >actual &&
558 test_cmp expect actual &&
559 sed -n -e "s/^Message-Id: *\(.*\)/\1/p" msgtxt2 >expect &&
560 sed -n -e "s/^In-Reply-To: *\(.*\)/\1/p" msgtxt3 >actual &&
561 test_cmp expect actual
564 test_expect_success $PREREQ 'setup fake editor' '
565 write_script fake-editor <<-\EOF
566 echo fake edit >>"$1"
570 test_set_editor "$(pwd)/fake-editor"
572 test_expect_success $PREREQ '--compose works' '
573 clean_fake_sendmail &&
575 --compose --subject foo \
576 --from="Example <nobody@example.com>" \
577 --to=nobody@example.com \
578 --smtp-server="$(pwd)/fake.sendmail" \
583 test_expect_success $PREREQ 'first message is compose text' '
584 grep "^fake edit" msgtxt1
587 test_expect_success $PREREQ 'second message is patch' '
588 grep "Subject:.*Second" msgtxt2
591 test_expect_success $PREREQ 'setup expect' "
592 cat >expected-suppress-sob <<\EOF
594 (mbox) Adding cc: A <author@example.com> from line 'From: A <author@example.com>'
595 (mbox) Adding cc: One <one@example.com> from line 'Cc: One <one@example.com>, two@example.com'
596 (mbox) Adding cc: two@example.com from line 'Cc: One <one@example.com>, two@example.com'
598 Server: relay.example.com
599 MAIL FROM:<from@example.com>
600 RCPT TO:<to@example.com>
601 RCPT TO:<cc@example.com>
602 RCPT TO:<author@example.com>
603 RCPT TO:<one@example.com>
604 RCPT TO:<two@example.com>
605 From: Example <from@example.com>
608 A <author@example.com>,
609 One <one@example.com>,
611 Subject: [PATCH 1/1] Second.
613 Message-Id: MESSAGE-ID-STRING
614 X-Mailer: X-MAILER-STRING
616 Content-Transfer-Encoding: 8bit
622 test_suppression () {
625 --suppress-cc=$1 ${2+"--suppress-cc=$2"} \
626 --from="Example <from@example.com>" \
627 --to=to@example.com \
628 --smtp-server relay.example.com \
629 $patches | replace_variable_fields \
630 >actual-suppress-$1${2+"-$2"} &&
631 test_cmp expected-suppress-$1${2+"-$2"} actual-suppress-$1${2+"-$2"}
634 test_expect_success $PREREQ 'sendemail.cc set' '
635 git config sendemail.cc cc@example.com &&
639 test_expect_success $PREREQ 'setup expect' "
640 cat >expected-suppress-sob <<\EOF
642 (mbox) Adding cc: A <author@example.com> from line 'From: A <author@example.com>'
643 (mbox) Adding cc: One <one@example.com> from line 'Cc: One <one@example.com>, two@example.com'
644 (mbox) Adding cc: two@example.com from line 'Cc: One <one@example.com>, two@example.com'
646 Server: relay.example.com
647 MAIL FROM:<from@example.com>
648 RCPT TO:<to@example.com>
649 RCPT TO:<author@example.com>
650 RCPT TO:<one@example.com>
651 RCPT TO:<two@example.com>
652 From: Example <from@example.com>
654 Cc: A <author@example.com>,
655 One <one@example.com>,
657 Subject: [PATCH 1/1] Second.
659 Message-Id: MESSAGE-ID-STRING
660 X-Mailer: X-MAILER-STRING
662 Content-Transfer-Encoding: 8bit
668 test_expect_success $PREREQ 'sendemail.cc unset' '
669 git config --unset sendemail.cc &&
673 test_expect_success $PREREQ 'setup expect' "
674 cat >expected-suppress-cccmd <<\EOF
676 (mbox) Adding cc: A <author@example.com> from line 'From: A <author@example.com>'
677 (mbox) Adding cc: One <one@example.com> from line 'Cc: One <one@example.com>, two@example.com'
678 (mbox) Adding cc: two@example.com from line 'Cc: One <one@example.com>, two@example.com'
679 (body) Adding cc: C O Mitter <committer@example.com> from line 'Signed-off-by: C O Mitter <committer@example.com>'
681 Server: relay.example.com
682 MAIL FROM:<from@example.com>
683 RCPT TO:<to@example.com>
684 RCPT TO:<author@example.com>
685 RCPT TO:<one@example.com>
686 RCPT TO:<two@example.com>
687 RCPT TO:<committer@example.com>
688 From: Example <from@example.com>
690 Cc: A <author@example.com>,
691 One <one@example.com>,
693 C O Mitter <committer@example.com>
694 Subject: [PATCH 1/1] Second.
696 Message-Id: MESSAGE-ID-STRING
697 X-Mailer: X-MAILER-STRING
699 Content-Transfer-Encoding: 8bit
705 test_expect_success $PREREQ 'sendemail.cccmd' '
706 write_script cccmd <<-\EOF &&
707 echo cc-cmd@example.com
709 git config sendemail.cccmd ./cccmd &&
710 test_suppression cccmd
713 test_expect_success $PREREQ 'setup expect' '
714 cat >expected-suppress-all <<\EOF
717 Server: relay.example.com
718 MAIL FROM:<from@example.com>
719 RCPT TO:<to@example.com>
720 From: Example <from@example.com>
722 Subject: [PATCH 1/1] Second.
724 Message-Id: MESSAGE-ID-STRING
725 X-Mailer: X-MAILER-STRING
727 Content-Transfer-Encoding: 8bit
733 test_expect_success $PREREQ '--suppress-cc=all' '
737 test_expect_success $PREREQ 'setup expect' "
738 cat >expected-suppress-body <<\EOF
740 (mbox) Adding cc: A <author@example.com> from line 'From: A <author@example.com>'
741 (mbox) Adding cc: One <one@example.com> from line 'Cc: One <one@example.com>, two@example.com'
742 (mbox) Adding cc: two@example.com from line 'Cc: One <one@example.com>, two@example.com'
743 (cc-cmd) Adding cc: cc-cmd@example.com from: './cccmd'
745 Server: relay.example.com
746 MAIL FROM:<from@example.com>
747 RCPT TO:<to@example.com>
748 RCPT TO:<author@example.com>
749 RCPT TO:<one@example.com>
750 RCPT TO:<two@example.com>
751 RCPT TO:<cc-cmd@example.com>
752 From: Example <from@example.com>
754 Cc: A <author@example.com>,
755 One <one@example.com>,
758 Subject: [PATCH 1/1] Second.
760 Message-Id: MESSAGE-ID-STRING
761 X-Mailer: X-MAILER-STRING
763 Content-Transfer-Encoding: 8bit
769 test_expect_success $PREREQ '--suppress-cc=body' '
770 test_suppression body
773 test_expect_success $PREREQ 'setup expect' "
774 cat >expected-suppress-body-cccmd <<\EOF
776 (mbox) Adding cc: A <author@example.com> from line 'From: A <author@example.com>'
777 (mbox) Adding cc: One <one@example.com> from line 'Cc: One <one@example.com>, two@example.com'
778 (mbox) Adding cc: two@example.com from line 'Cc: One <one@example.com>, two@example.com'
780 Server: relay.example.com
781 MAIL FROM:<from@example.com>
782 RCPT TO:<to@example.com>
783 RCPT TO:<author@example.com>
784 RCPT TO:<one@example.com>
785 RCPT TO:<two@example.com>
786 From: Example <from@example.com>
788 Cc: A <author@example.com>,
789 One <one@example.com>,
791 Subject: [PATCH 1/1] Second.
793 Message-Id: MESSAGE-ID-STRING
794 X-Mailer: X-MAILER-STRING
796 Content-Transfer-Encoding: 8bit
802 test_expect_success $PREREQ '--suppress-cc=body --suppress-cc=cccmd' '
803 test_suppression body cccmd
806 test_expect_success $PREREQ 'setup expect' "
807 cat >expected-suppress-sob <<\EOF
809 (mbox) Adding cc: A <author@example.com> from line 'From: A <author@example.com>'
810 (mbox) Adding cc: One <one@example.com> from line 'Cc: One <one@example.com>, two@example.com'
811 (mbox) Adding cc: two@example.com from line 'Cc: One <one@example.com>, two@example.com'
813 Server: relay.example.com
814 MAIL FROM:<from@example.com>
815 RCPT TO:<to@example.com>
816 RCPT TO:<author@example.com>
817 RCPT TO:<one@example.com>
818 RCPT TO:<two@example.com>
819 From: Example <from@example.com>
821 Cc: A <author@example.com>,
822 One <one@example.com>,
824 Subject: [PATCH 1/1] Second.
826 Message-Id: MESSAGE-ID-STRING
827 X-Mailer: X-MAILER-STRING
829 Content-Transfer-Encoding: 8bit
835 test_expect_success $PREREQ '--suppress-cc=sob' '
836 test_might_fail git config --unset sendemail.cccmd &&
840 test_expect_success $PREREQ 'setup expect' "
841 cat >expected-suppress-bodycc <<\EOF
843 (mbox) Adding cc: A <author@example.com> from line 'From: A <author@example.com>'
844 (mbox) Adding cc: One <one@example.com> from line 'Cc: One <one@example.com>, two@example.com'
845 (mbox) Adding cc: two@example.com from line 'Cc: One <one@example.com>, two@example.com'
846 (body) Adding cc: C O Mitter <committer@example.com> from line 'Signed-off-by: C O Mitter <committer@example.com>'
848 Server: relay.example.com
849 MAIL FROM:<from@example.com>
850 RCPT TO:<to@example.com>
851 RCPT TO:<author@example.com>
852 RCPT TO:<one@example.com>
853 RCPT TO:<two@example.com>
854 RCPT TO:<committer@example.com>
855 From: Example <from@example.com>
857 Cc: A <author@example.com>,
858 One <one@example.com>,
860 C O Mitter <committer@example.com>
861 Subject: [PATCH 1/1] Second.
863 Message-Id: MESSAGE-ID-STRING
864 X-Mailer: X-MAILER-STRING
866 Content-Transfer-Encoding: 8bit
872 test_expect_success $PREREQ '--suppress-cc=bodycc' '
873 test_suppression bodycc
876 test_expect_success $PREREQ 'setup expect' "
877 cat >expected-suppress-cc <<\EOF
879 (mbox) Adding cc: A <author@example.com> from line 'From: A <author@example.com>'
880 (body) Adding cc: C O Mitter <committer@example.com> from line 'Signed-off-by: C O Mitter <committer@example.com>'
882 Server: relay.example.com
883 MAIL FROM:<from@example.com>
884 RCPT TO:<to@example.com>
885 RCPT TO:<author@example.com>
886 RCPT TO:<committer@example.com>
887 From: Example <from@example.com>
889 Cc: A <author@example.com>,
890 C O Mitter <committer@example.com>
891 Subject: [PATCH 1/1] Second.
893 Message-Id: MESSAGE-ID-STRING
894 X-Mailer: X-MAILER-STRING
896 Content-Transfer-Encoding: 8bit
902 test_expect_success $PREREQ '--suppress-cc=cc' '
908 GIT_SEND_EMAIL_NOTTY=1 \
910 --from="Example <nobody@example.com>" \
911 --to=nobody@example.com \
912 --smtp-server="$(pwd)/fake.sendmail" \
913 $@ $patches >stdout &&
914 grep "Send this email" stdout
917 test_expect_success $PREREQ '--confirm=always' '
918 test_confirm --confirm=always --suppress-cc=all
921 test_expect_success $PREREQ '--confirm=auto' '
922 test_confirm --confirm=auto
925 test_expect_success $PREREQ '--confirm=cc' '
926 test_confirm --confirm=cc
929 test_expect_success $PREREQ '--confirm=compose' '
930 test_confirm --confirm=compose --compose
933 test_expect_success $PREREQ 'confirm by default (due to cc)' '
934 test_when_finished git config sendemail.confirm never &&
935 git config --unset sendemail.confirm &&
939 test_expect_success $PREREQ 'confirm by default (due to --compose)' '
940 test_when_finished git config sendemail.confirm never &&
941 git config --unset sendemail.confirm &&
942 test_confirm --suppress-cc=all --compose
945 test_expect_success $PREREQ 'confirm detects EOF (inform assumes y)' '
946 test_when_finished git config sendemail.confirm never &&
947 git config --unset sendemail.confirm &&
949 git format-patch -2 -o outdir &&
950 GIT_SEND_EMAIL_NOTTY=1 \
952 --from="Example <nobody@example.com>" \
953 --to=nobody@example.com \
954 --smtp-server="$(pwd)/fake.sendmail" \
955 outdir/*.patch </dev/null
958 test_expect_success $PREREQ 'confirm detects EOF (auto causes failure)' '
959 test_when_finished git config sendemail.confirm never &&
960 git config sendemail.confirm auto &&
961 GIT_SEND_EMAIL_NOTTY=1 &&
962 export GIT_SEND_EMAIL_NOTTY &&
963 test_must_fail git send-email \
964 --from="Example <nobody@example.com>" \
965 --to=nobody@example.com \
966 --smtp-server="$(pwd)/fake.sendmail" \
970 test_expect_success $PREREQ 'confirm does not loop forever' '
971 test_when_finished git config sendemail.confirm never &&
972 git config sendemail.confirm auto &&
973 GIT_SEND_EMAIL_NOTTY=1 &&
974 export GIT_SEND_EMAIL_NOTTY &&
975 yes "bogus" | test_must_fail git send-email \
976 --from="Example <nobody@example.com>" \
977 --to=nobody@example.com \
978 --smtp-server="$(pwd)/fake.sendmail" \
982 test_expect_success $PREREQ 'utf8 Cc is rfc2047 encoded' '
983 clean_fake_sendmail &&
985 git format-patch -1 -o outdir --cc="àéìöú <utf8@example.com>" &&
987 --from="Example <nobody@example.com>" \
988 --to=nobody@example.com \
989 --smtp-server="$(pwd)/fake.sendmail" \
992 grep "=?UTF-8?q?=C3=A0=C3=A9=C3=AC=C3=B6=C3=BA?= <utf8@example.com>"
995 test_expect_success $PREREQ '--compose adds MIME for utf8 body' '
996 clean_fake_sendmail &&
997 write_script fake-editor-utf8 <<-\EOF &&
998 echo "utf8 body: àéìöú" >>"$1"
1000 GIT_EDITOR="\"$(pwd)/fake-editor-utf8\"" \
1002 --compose --subject foo \
1003 --from="Example <nobody@example.com>" \
1004 --to=nobody@example.com \
1005 --smtp-server="$(pwd)/fake.sendmail" \
1007 grep "^utf8 body" msgtxt1 &&
1008 grep "^Content-Type: text/plain; charset=UTF-8" msgtxt1
1011 test_expect_success $PREREQ '--compose respects user mime type' '
1012 clean_fake_sendmail &&
1013 write_script fake-editor-utf8-mime <<-\EOF &&
1016 Content-Type: text/plain; charset=iso-8859-1
1017 Content-Transfer-Encoding: 8bit
1023 GIT_EDITOR="\"$(pwd)/fake-editor-utf8-mime\"" \
1025 --compose --subject foo \
1026 --from="Example <nobody@example.com>" \
1027 --to=nobody@example.com \
1028 --smtp-server="$(pwd)/fake.sendmail" \
1030 grep "^utf8 body" msgtxt1 &&
1031 grep "^Content-Type: text/plain; charset=iso-8859-1" msgtxt1 &&
1032 ! grep "^Content-Type: text/plain; charset=UTF-8" msgtxt1
1035 test_expect_success $PREREQ '--compose adds MIME for utf8 subject' '
1036 clean_fake_sendmail &&
1037 GIT_EDITOR="\"$(pwd)/fake-editor\"" \
1039 --compose --subject utf8-sübjëct \
1040 --from="Example <nobody@example.com>" \
1041 --to=nobody@example.com \
1042 --smtp-server="$(pwd)/fake.sendmail" \
1044 grep "^fake edit" msgtxt1 &&
1045 grep "^Subject: =?UTF-8?q?utf8-s=C3=BCbj=C3=ABct?=" msgtxt1
1048 test_expect_success $PREREQ 'utf8 author is correctly passed on' '
1049 clean_fake_sendmail &&
1050 test_commit weird_author &&
1051 test_when_finished "git reset --hard HEAD^" &&
1052 git commit --amend --author "Füñný Nâmé <odd_?=mail@example.com>" &&
1053 git format-patch --stdout -1 >funny_name.patch &&
1054 git send-email --from="Example <nobody@example.com>" \
1055 --to=nobody@example.com \
1056 --smtp-server="$(pwd)/fake.sendmail" \
1058 grep "^From: Füñný Nâmé <odd_?=mail@example.com>" msgtxt1
1061 test_expect_success $PREREQ 'utf8 sender is not duplicated' '
1062 clean_fake_sendmail &&
1063 test_commit weird_sender &&
1064 test_when_finished "git reset --hard HEAD^" &&
1065 git commit --amend --author "Füñný Nâmé <odd_?=mail@example.com>" &&
1066 git format-patch --stdout -1 >funny_name.patch &&
1067 git send-email --from="Füñný Nâmé <odd_?=mail@example.com>" \
1068 --to=nobody@example.com \
1069 --smtp-server="$(pwd)/fake.sendmail" \
1071 grep "^From: " msgtxt1 >msgfrom &&
1072 test_line_count = 1 msgfrom
1075 test_expect_success $PREREQ 'sendemail.composeencoding works' '
1076 clean_fake_sendmail &&
1077 git config sendemail.composeencoding iso-8859-1 &&
1078 write_script fake-editor-utf8 <<-\EOF &&
1079 echo "utf8 body: àéìöú" >>"$1"
1081 GIT_EDITOR="\"$(pwd)/fake-editor-utf8\"" \
1083 --compose --subject foo \
1084 --from="Example <nobody@example.com>" \
1085 --to=nobody@example.com \
1086 --smtp-server="$(pwd)/fake.sendmail" \
1088 grep "^utf8 body" msgtxt1 &&
1089 grep "^Content-Type: text/plain; charset=iso-8859-1" msgtxt1
1092 test_expect_success $PREREQ '--compose-encoding works' '
1093 clean_fake_sendmail &&
1094 write_script fake-editor-utf8 <<-\EOF &&
1095 echo "utf8 body: àéìöú" >>"$1"
1097 GIT_EDITOR="\"$(pwd)/fake-editor-utf8\"" \
1099 --compose-encoding iso-8859-1 \
1100 --compose --subject foo \
1101 --from="Example <nobody@example.com>" \
1102 --to=nobody@example.com \
1103 --smtp-server="$(pwd)/fake.sendmail" \
1105 grep "^utf8 body" msgtxt1 &&
1106 grep "^Content-Type: text/plain; charset=iso-8859-1" msgtxt1
1109 test_expect_success $PREREQ '--compose-encoding overrides sendemail.composeencoding' '
1110 clean_fake_sendmail &&
1111 git config sendemail.composeencoding iso-8859-1 &&
1112 write_script fake-editor-utf8 <<-\EOF &&
1113 echo "utf8 body: àéìöú" >>"$1"
1115 GIT_EDITOR="\"$(pwd)/fake-editor-utf8\"" \
1117 --compose-encoding iso-8859-2 \
1118 --compose --subject foo \
1119 --from="Example <nobody@example.com>" \
1120 --to=nobody@example.com \
1121 --smtp-server="$(pwd)/fake.sendmail" \
1123 grep "^utf8 body" msgtxt1 &&
1124 grep "^Content-Type: text/plain; charset=iso-8859-2" msgtxt1
1127 test_expect_success $PREREQ '--compose-encoding adds correct MIME for subject' '
1128 clean_fake_sendmail &&
1129 GIT_EDITOR="\"$(pwd)/fake-editor\"" \
1131 --compose-encoding iso-8859-2 \
1132 --compose --subject utf8-sübjëct \
1133 --from="Example <nobody@example.com>" \
1134 --to=nobody@example.com \
1135 --smtp-server="$(pwd)/fake.sendmail" \
1137 grep "^fake edit" msgtxt1 &&
1138 grep "^Subject: =?iso-8859-2?q?utf8-s=C3=BCbj=C3=ABct?=" msgtxt1
1141 test_expect_success $PREREQ 'detects ambiguous reference/file conflict' '
1142 echo master >master &&
1144 git commit -m"add master" &&
1145 test_must_fail git send-email --dry-run master 2>errors &&
1146 grep disambiguate errors
1149 test_expect_success $PREREQ 'feed two files' '
1151 git format-patch -2 -o outdir &&
1154 --from="Example <nobody@example.com>" \
1155 --to=nobody@example.com \
1156 outdir/000?-*.patch 2>errors >out &&
1157 grep "^Subject: " out >subjects &&
1158 test "z$(sed -n -e 1p subjects)" = "zSubject: [PATCH 1/2] Second." &&
1159 test "z$(sed -n -e 2p subjects)" = "zSubject: [PATCH 2/2] add master"
1162 test_expect_success $PREREQ 'in-reply-to but no threading' '
1165 --from="Example <nobody@example.com>" \
1166 --to=nobody@example.com \
1167 --in-reply-to="<in-reply-id@example.com>" \
1170 grep "In-Reply-To: <in-reply-id@example.com>"
1173 test_expect_success $PREREQ 'no in-reply-to and no threading' '
1176 --from="Example <nobody@example.com>" \
1177 --to=nobody@example.com \
1179 $patches $patches >stdout &&
1180 ! grep "In-Reply-To: " stdout
1183 test_expect_success $PREREQ 'threading but no chain-reply-to' '
1186 --from="Example <nobody@example.com>" \
1187 --to=nobody@example.com \
1189 --no-chain-reply-to \
1190 $patches $patches >stdout &&
1191 grep "In-Reply-To: " stdout
1194 test_expect_success $PREREQ 'sendemail.to works' '
1195 git config --replace-all sendemail.to "Somebody <somebody@ex.com>" &&
1198 --from="Example <nobody@example.com>" \
1199 $patches $patches >stdout &&
1200 grep "To: Somebody <somebody@ex.com>" stdout
1203 test_expect_success $PREREQ '--no-to overrides sendemail.to' '
1206 --from="Example <nobody@example.com>" \
1208 --to=nobody@example.com \
1209 $patches $patches >stdout &&
1210 grep "To: nobody@example.com" stdout &&
1211 ! grep "To: Somebody <somebody@ex.com>" stdout
1214 test_expect_success $PREREQ 'sendemail.cc works' '
1215 git config --replace-all sendemail.cc "Somebody <somebody@ex.com>" &&
1218 --from="Example <nobody@example.com>" \
1219 --to=nobody@example.com \
1220 $patches $patches >stdout &&
1221 grep "Cc: Somebody <somebody@ex.com>" stdout
1224 test_expect_success $PREREQ '--no-cc overrides sendemail.cc' '
1227 --from="Example <nobody@example.com>" \
1229 --cc=bodies@example.com \
1230 --to=nobody@example.com \
1231 $patches $patches >stdout &&
1232 grep "Cc: bodies@example.com" stdout &&
1233 ! grep "Cc: Somebody <somebody@ex.com>" stdout
1236 test_expect_success $PREREQ 'sendemail.bcc works' '
1237 git config --replace-all sendemail.bcc "Other <other@ex.com>" &&
1240 --from="Example <nobody@example.com>" \
1241 --to=nobody@example.com \
1242 --smtp-server relay.example.com \
1243 $patches $patches >stdout &&
1244 grep "RCPT TO:<other@ex.com>" stdout
1247 test_expect_success $PREREQ '--no-bcc overrides sendemail.bcc' '
1250 --from="Example <nobody@example.com>" \
1252 --bcc=bodies@example.com \
1253 --to=nobody@example.com \
1254 --smtp-server relay.example.com \
1255 $patches $patches >stdout &&
1256 grep "RCPT TO:<bodies@example.com>" stdout &&
1257 ! grep "RCPT TO:<other@ex.com>" stdout
1260 test_expect_success $PREREQ 'patches To headers are used by default' '
1261 patch=$(git format-patch -1 --to="bodies@example.com") &&
1262 test_when_finished "rm $patch" &&
1265 --from="Example <nobody@example.com>" \
1266 --smtp-server relay.example.com \
1268 grep "RCPT TO:<bodies@example.com>" stdout
1271 test_expect_success $PREREQ 'patches To headers are appended to' '
1272 patch=$(git format-patch -1 --to="bodies@example.com") &&
1273 test_when_finished "rm $patch" &&
1276 --from="Example <nobody@example.com>" \
1277 --to=nobody@example.com \
1278 --smtp-server relay.example.com \
1280 grep "RCPT TO:<bodies@example.com>" stdout &&
1281 grep "RCPT TO:<nobody@example.com>" stdout
1284 test_expect_success $PREREQ 'To headers from files reset each patch' '
1285 patch1=$(git format-patch -1 --to="bodies@example.com") &&
1286 patch2=$(git format-patch -1 --to="other@example.com" HEAD~) &&
1287 test_when_finished "rm $patch1 && rm $patch2" &&
1290 --from="Example <nobody@example.com>" \
1291 --to="nobody@example.com" \
1292 --smtp-server relay.example.com \
1293 $patch1 $patch2 >stdout &&
1294 test $(grep -c "RCPT TO:<bodies@example.com>" stdout) = 1 &&
1295 test $(grep -c "RCPT TO:<nobody@example.com>" stdout) = 2 &&
1296 test $(grep -c "RCPT TO:<other@example.com>" stdout) = 1
1299 test_expect_success $PREREQ 'setup expect' '
1300 cat >email-using-8bit <<\EOF
1301 From fe6ecc66ece37198fe5db91fa2fc41d9f4fe5cc4 Mon Sep 17 00:00:00 2001
1302 Message-Id: <bogus-message-id@example.com>
1303 From: author@example.com
1304 Date: Sat, 12 Jun 2010 15:53:58 +0200
1305 Subject: subject goes here
1307 Dieser deutsche Text enthält einen Umlaut!
1311 test_expect_success $PREREQ 'setup expect' '
1312 echo "Subject: subject goes here" >expected
1315 test_expect_success $PREREQ 'ASCII subject is not RFC2047 quoted' '
1316 clean_fake_sendmail &&
1318 git send-email --from=author@example.com --to=nobody@example.com \
1319 --smtp-server="$(pwd)/fake.sendmail" \
1320 --8bit-encoding=UTF-8 \
1321 email-using-8bit >stdout &&
1322 grep "Subject" msgtxt1 >actual &&
1323 test_cmp expected actual
1326 test_expect_success $PREREQ 'setup expect' '
1327 cat >content-type-decl <<-\EOF
1329 Content-Type: text/plain; charset=UTF-8
1330 Content-Transfer-Encoding: 8bit
1334 test_expect_success $PREREQ 'asks about and fixes 8bit encodings' '
1335 clean_fake_sendmail &&
1337 git send-email --from=author@example.com --to=nobody@example.com \
1338 --smtp-server="$(pwd)/fake.sendmail" \
1339 email-using-8bit >stdout &&
1340 grep "do not declare a Content-Transfer-Encoding" stdout &&
1341 grep email-using-8bit stdout &&
1342 grep "Which 8bit encoding" stdout &&
1343 egrep "Content|MIME" msgtxt1 >actual &&
1344 test_cmp content-type-decl actual
1347 test_expect_success $PREREQ 'sendemail.8bitEncoding works' '
1348 clean_fake_sendmail &&
1349 git config sendemail.assume8bitEncoding UTF-8 &&
1351 git send-email --from=author@example.com --to=nobody@example.com \
1352 --smtp-server="$(pwd)/fake.sendmail" \
1353 email-using-8bit >stdout &&
1354 egrep "Content|MIME" msgtxt1 >actual &&
1355 test_cmp content-type-decl actual
1358 test_expect_success $PREREQ '--8bit-encoding overrides sendemail.8bitEncoding' '
1359 clean_fake_sendmail &&
1360 git config sendemail.assume8bitEncoding "bogus too" &&
1362 git send-email --from=author@example.com --to=nobody@example.com \
1363 --smtp-server="$(pwd)/fake.sendmail" \
1364 --8bit-encoding=UTF-8 \
1365 email-using-8bit >stdout &&
1366 egrep "Content|MIME" msgtxt1 >actual &&
1367 test_cmp content-type-decl actual
1370 test_expect_success $PREREQ 'setup expect' '
1371 cat >email-using-8bit <<-\EOF
1372 From fe6ecc66ece37198fe5db91fa2fc41d9f4fe5cc4 Mon Sep 17 00:00:00 2001
1373 Message-Id: <bogus-message-id@example.com>
1374 From: author@example.com
1375 Date: Sat, 12 Jun 2010 15:53:58 +0200
1376 Subject: Dieser Betreff enthält auch einen Umlaut!
1378 Nothing to see here.
1382 test_expect_success $PREREQ 'setup expect' '
1383 cat >expected <<-\EOF
1384 Subject: =?UTF-8?q?Dieser=20Betreff=20enth=C3=A4lt=20auch=20einen=20Umlaut!?=
1388 test_expect_success $PREREQ '--8bit-encoding also treats subject' '
1389 clean_fake_sendmail &&
1391 git send-email --from=author@example.com --to=nobody@example.com \
1392 --smtp-server="$(pwd)/fake.sendmail" \
1393 --8bit-encoding=UTF-8 \
1394 email-using-8bit >stdout &&
1395 grep "Subject" msgtxt1 >actual &&
1396 test_cmp expected actual
1399 test_expect_success $PREREQ 'setup expect' '
1400 cat >email-using-8bit <<-\EOF
1401 From fe6ecc66ece37198fe5db91fa2fc41d9f4fe5cc4 Mon Sep 17 00:00:00 2001
1402 Message-Id: <bogus-message-id@example.com>
1403 From: A U Thor <author@example.com>
1404 Date: Sat, 12 Jun 2010 15:53:58 +0200
1405 Content-Type: text/plain; charset=UTF-8
1406 Subject: Nothing to see here.
1408 Dieser Betreff enthält auch einen Umlaut!
1412 test_expect_success $PREREQ 'sendemail.transferencoding=7bit fails on 8bit data' '
1413 clean_fake_sendmail &&
1414 git config sendemail.transferEncoding 7bit &&
1415 test_must_fail git send-email \
1416 --transfer-encoding=7bit \
1417 --smtp-server="$(pwd)/fake.sendmail" \
1420 grep "cannot send message as 7bit" errors &&
1421 test -z "$(ls msgtxt*)"
1424 test_expect_success $PREREQ '--transfer-encoding overrides sendemail.transferEncoding' '
1425 clean_fake_sendmail &&
1426 git config sendemail.transferEncoding 8bit &&
1427 test_must_fail git send-email \
1428 --transfer-encoding=7bit \
1429 --smtp-server="$(pwd)/fake.sendmail" \
1432 grep "cannot send message as 7bit" errors &&
1433 test -z "$(ls msgtxt*)"
1436 test_expect_success $PREREQ 'sendemail.transferencoding=8bit' '
1437 clean_fake_sendmail &&
1439 --transfer-encoding=8bit \
1440 --smtp-server="$(pwd)/fake.sendmail" \
1443 sed '1,/^$/d' msgtxt1 >actual &&
1444 sed '1,/^$/d' email-using-8bit >expected &&
1445 test_cmp expected actual
1448 test_expect_success $PREREQ 'setup expect' '
1449 cat >expected <<-\EOF
1450 Dieser Betreff enth=C3=A4lt auch einen Umlaut!
1454 test_expect_success $PREREQ '8-bit and sendemail.transferencoding=quoted-printable' '
1455 clean_fake_sendmail &&
1457 --transfer-encoding=quoted-printable \
1458 --smtp-server="$(pwd)/fake.sendmail" \
1461 sed '1,/^$/d' msgtxt1 >actual &&
1462 test_cmp expected actual
1465 test_expect_success $PREREQ 'setup expect' '
1466 cat >expected <<-\EOF
1467 RGllc2VyIEJldHJlZmYgZW50aMOkbHQgYXVjaCBlaW5lbiBVbWxhdXQhCg==
1471 test_expect_success $PREREQ '8-bit and sendemail.transferencoding=base64' '
1472 clean_fake_sendmail &&
1474 --transfer-encoding=base64 \
1475 --smtp-server="$(pwd)/fake.sendmail" \
1478 sed '1,/^$/d' msgtxt1 >actual &&
1479 test_cmp expected actual
1482 test_expect_success $PREREQ 'setup expect' '
1483 cat >email-using-qp <<-\EOF
1484 From fe6ecc66ece37198fe5db91fa2fc41d9f4fe5cc4 Mon Sep 17 00:00:00 2001
1485 Message-Id: <bogus-message-id@example.com>
1486 From: A U Thor <author@example.com>
1487 Date: Sat, 12 Jun 2010 15:53:58 +0200
1489 Content-Transfer-Encoding: quoted-printable
1490 Content-Type: text/plain; charset=UTF-8
1491 Subject: Nothing to see here.
1493 Dieser Betreff enth=C3=A4lt auch einen Umlaut!
1497 test_expect_success $PREREQ 'convert from quoted-printable to base64' '
1498 clean_fake_sendmail &&
1500 --transfer-encoding=base64 \
1501 --smtp-server="$(pwd)/fake.sendmail" \
1504 sed '1,/^$/d' msgtxt1 >actual &&
1505 test_cmp expected actual
1508 test_expect_success $PREREQ 'setup expect' "
1509 tr -d '\\015' | tr '%' '\\015' >email-using-crlf <<EOF
1510 From fe6ecc66ece37198fe5db91fa2fc41d9f4fe5cc4 Mon Sep 17 00:00:00 2001
1511 Message-Id: <bogus-message-id@example.com>
1512 From: A U Thor <author@example.com>
1513 Date: Sat, 12 Jun 2010 15:53:58 +0200
1514 Content-Type: text/plain; charset=UTF-8
1515 Subject: Nothing to see here.
1517 Look, I have a CRLF and an = sign!%
1521 test_expect_success $PREREQ 'setup expect' '
1522 cat >expected <<-\EOF
1523 Look, I have a CRLF and an =3D sign!=0D
1527 test_expect_success $PREREQ 'CRLF and sendemail.transferencoding=quoted-printable' '
1528 clean_fake_sendmail &&
1530 --transfer-encoding=quoted-printable \
1531 --smtp-server="$(pwd)/fake.sendmail" \
1534 sed '1,/^$/d' msgtxt1 >actual &&
1535 test_cmp expected actual
1538 test_expect_success $PREREQ 'setup expect' '
1539 cat >expected <<-\EOF
1540 TG9vaywgSSBoYXZlIGEgQ1JMRiBhbmQgYW4gPSBzaWduIQ0K
1544 test_expect_success $PREREQ 'CRLF and sendemail.transferencoding=base64' '
1545 clean_fake_sendmail &&
1547 --transfer-encoding=base64 \
1548 --smtp-server="$(pwd)/fake.sendmail" \
1551 sed '1,/^$/d' msgtxt1 >actual &&
1552 test_cmp expected actual
1556 # Note that the patches in this test are deliberately out of order; we
1557 # want to make sure it works even if the cover-letter is not in the
1559 test_expect_success $PREREQ 'refusing to send cover letter template' '
1560 clean_fake_sendmail &&
1562 git format-patch --cover-letter -2 -o outdir &&
1563 test_must_fail git send-email \
1564 --from="Example <nobody@example.com>" \
1565 --to=nobody@example.com \
1566 --smtp-server="$(pwd)/fake.sendmail" \
1567 outdir/0002-*.patch \
1568 outdir/0000-*.patch \
1569 outdir/0001-*.patch \
1571 grep "SUBJECT HERE" errors &&
1572 test -z "$(ls msgtxt*)"
1575 test_expect_success $PREREQ '--force sends cover letter template anyway' '
1576 clean_fake_sendmail &&
1578 git format-patch --cover-letter -2 -o outdir &&
1581 --from="Example <nobody@example.com>" \
1582 --to=nobody@example.com \
1583 --smtp-server="$(pwd)/fake.sendmail" \
1584 outdir/0002-*.patch \
1585 outdir/0000-*.patch \
1586 outdir/0001-*.patch \
1588 ! grep "SUBJECT HERE" errors &&
1589 test -n "$(ls msgtxt*)"
1592 test_cover_addresses () {
1595 clean_fake_sendmail &&
1597 git format-patch --cover-letter -2 -o outdir &&
1598 cover=$(echo outdir/0000-*.patch) &&
1599 mv $cover cover-to-edit.patch &&
1600 perl -pe "s/^From:/$header: extra\@address.com\nFrom:/" cover-to-edit.patch >"$cover" &&
1603 --from="Example <nobody@example.com>" \
1606 --smtp-server="$(pwd)/fake.sendmail" \
1607 outdir/0000-*.patch \
1608 outdir/0001-*.patch \
1609 outdir/0002-*.patch \
1611 grep "^$header: extra@address.com" msgtxt1 >to1 &&
1612 grep "^$header: extra@address.com" msgtxt2 >to2 &&
1613 grep "^$header: extra@address.com" msgtxt3 >to3 &&
1614 test_line_count = 1 to1 &&
1615 test_line_count = 1 to2 &&
1616 test_line_count = 1 to3
1619 test_expect_success $PREREQ 'to-cover adds To to all mail' '
1620 test_cover_addresses "To" --to-cover
1623 test_expect_success $PREREQ 'cc-cover adds Cc to all mail' '
1624 test_cover_addresses "Cc" --cc-cover
1627 test_expect_success $PREREQ 'tocover adds To to all mail' '
1628 test_config sendemail.tocover true &&
1629 test_cover_addresses "To"
1632 test_expect_success $PREREQ 'cccover adds Cc to all mail' '
1633 test_config sendemail.cccover true &&
1634 test_cover_addresses "Cc"
1637 test_expect_success $PREREQ 'escaped quotes in sendemail.aliasfiletype=mutt' '
1638 clean_fake_sendmail &&
1639 echo "alias sbd \\\"Dot U. Sir\\\" <somebody@example.org>" >.mutt &&
1640 git config --replace-all sendemail.aliasesfile "$(pwd)/.mutt" &&
1641 git config sendemail.aliasfiletype mutt &&
1643 --from="Example <nobody@example.com>" \
1645 --smtp-server="$(pwd)/fake.sendmail" \
1646 outdir/0001-*.patch \
1648 grep "^!somebody@example\.org!$" commandline1 &&
1649 grep -F "To: \"Dot U. Sir\" <somebody@example.org>" out
1652 test_expect_success $PREREQ 'sendemail.aliasfiletype=mailrc' '
1653 clean_fake_sendmail &&
1654 echo "alias sbd somebody@example.org" >.mailrc &&
1655 git config --replace-all sendemail.aliasesfile "$(pwd)/.mailrc" &&
1656 git config sendemail.aliasfiletype mailrc &&
1658 --from="Example <nobody@example.com>" \
1660 --smtp-server="$(pwd)/fake.sendmail" \
1661 outdir/0001-*.patch \
1663 grep "^!somebody@example\.org!$" commandline1
1666 test_expect_success $PREREQ 'sendemail.aliasfile=~/.mailrc' '
1667 clean_fake_sendmail &&
1668 echo "alias sbd someone@example.org" >"$HOME/.mailrc" &&
1669 git config --replace-all sendemail.aliasesfile "~/.mailrc" &&
1670 git config sendemail.aliasfiletype mailrc &&
1672 --from="Example <nobody@example.com>" \
1674 --smtp-server="$(pwd)/fake.sendmail" \
1675 outdir/0001-*.patch \
1677 grep "^!someone@example\.org!$" commandline1
1680 test_dump_aliases () {
1681 msg="$1" && shift &&
1682 filetype="$1" && shift &&
1683 printf '%s\n' "$@" >expect &&
1684 cat >.tmp-email-aliases &&
1686 test_expect_success $PREREQ "$msg" '
1687 clean_fake_sendmail && rm -fr outdir &&
1688 git config --replace-all sendemail.aliasesfile \
1689 "$(pwd)/.tmp-email-aliases" &&
1690 git config sendemail.aliasfiletype "$filetype" &&
1691 git send-email --dump-aliases 2>errors >actual &&
1692 test_cmp expect actual
1696 test_dump_aliases '--dump-aliases sendmail format' \
1703 alice: Alice W Land <awol@example.com>
1704 bob: Robert Bobbyton <bob@example.com>
1705 chloe: chloe@example.com
1707 bcgrp: bob, chloe, Other <o@example.com>
1710 test_dump_aliases '--dump-aliases mutt format' \
1716 alias alice Alice W Land <awol@example.com>
1717 alias donald Donald C Carlton <donc@example.com>
1718 alias bob Robert Bobbyton <bob@example.com>
1719 alias chloe chloe@example.com
1722 test_dump_aliases '--dump-aliases mailrc format' \
1728 alias alice Alice W Land <awol@example.com>
1729 alias eve Eve <eve@example.com>
1730 alias bob Robert Bobbyton <bob@example.com>
1731 alias chloe chloe@example.com
1734 test_dump_aliases '--dump-aliases pine format' \
1740 alice Alice W Land <awol@example.com>
1741 eve Eve <eve@example.com>
1742 bob Robert Bobbyton <bob@example.com>
1743 chloe chloe@example.com
1746 test_dump_aliases '--dump-aliases gnus format' \
1752 (define-mail-alias "alice" "awol@example.com")
1753 (define-mail-alias "eve" "eve@example.com")
1754 (define-mail-alias "bob" "bob@example.com")
1755 (define-mail-alias "chloe" "chloe@example.com")
1758 test_expect_success '--dump-aliases must be used alone' '
1759 test_must_fail git send-email --dump-aliases --to=janice@example.com -1 refs/heads/accounting
1762 test_sendmail_aliases () {
1763 msg="$1" && shift &&
1765 cat >.tmp-email-aliases &&
1767 test_expect_success $PREREQ "$msg" '
1768 clean_fake_sendmail && rm -fr outdir &&
1769 git format-patch -1 -o outdir &&
1770 git config --replace-all sendemail.aliasesfile \
1771 "$(pwd)/.tmp-email-aliases" &&
1772 git config sendemail.aliasfiletype sendmail &&
1774 --from="Example <nobody@example.com>" \
1775 --to=alice --to=bcgrp \
1776 --smtp-server="$(pwd)/fake.sendmail" \
1777 outdir/0001-*.patch \
1781 grep "^!$i!$" commandline1 || return 1
1786 test_sendmail_aliases 'sendemail.aliasfiletype=sendmail' \
1787 'awol@example\.com' \
1788 'bob@example\.com' \
1789 'chloe@example\.com' \
1790 'o@example\.com' <<-\EOF
1791 alice: Alice W Land <awol@example.com>
1792 bob: Robert Bobbyton <bob@example.com>
1794 # this is also a comment
1795 chloe: chloe@example.com
1797 bcgrp: bob, chloe, Other <o@example.com>
1800 test_sendmail_aliases 'sendmail aliases line folding' \
1804 darla1 darla2 darla3 \
1805 elton1 elton2 elton3 \
1822 bcgrp: bob, chuck, darla, elton, fred, greg
1825 test_sendmail_aliases 'sendmail aliases tolerate bogus line folding' \
1831 test_sendmail_aliases 'sendmail aliases empty' alice bcgrp <<-\EOF
1834 test_expect_success $PREREQ 'alias support in To header' '
1835 clean_fake_sendmail &&
1836 echo "alias sbd someone@example.org" >.mailrc &&
1837 test_config sendemail.aliasesfile ".mailrc" &&
1838 test_config sendemail.aliasfiletype mailrc &&
1839 git format-patch --stdout -1 --to=sbd >aliased.patch &&
1841 --from="Example <nobody@example.com>" \
1842 --smtp-server="$(pwd)/fake.sendmail" \
1845 grep "^!someone@example\.org!$" commandline1
1848 test_expect_success $PREREQ 'alias support in Cc header' '
1849 clean_fake_sendmail &&
1850 echo "alias sbd someone@example.org" >.mailrc &&
1851 test_config sendemail.aliasesfile ".mailrc" &&
1852 test_config sendemail.aliasfiletype mailrc &&
1853 git format-patch --stdout -1 --cc=sbd >aliased.patch &&
1855 --from="Example <nobody@example.com>" \
1856 --smtp-server="$(pwd)/fake.sendmail" \
1859 grep "^!someone@example\.org!$" commandline1
1862 test_expect_success $PREREQ 'tocmd works with aliases' '
1863 clean_fake_sendmail &&
1864 echo "alias sbd someone@example.org" >.mailrc &&
1865 test_config sendemail.aliasesfile ".mailrc" &&
1866 test_config sendemail.aliasfiletype mailrc &&
1867 git format-patch --stdout -1 >tocmd.patch &&
1868 echo tocmd--sbd >>tocmd.patch &&
1870 --from="Example <nobody@example.com>" \
1871 --to-cmd=./tocmd-sed \
1872 --smtp-server="$(pwd)/fake.sendmail" \
1875 grep "^!someone@example\.org!$" commandline1
1878 test_expect_success $PREREQ 'cccmd works with aliases' '
1879 clean_fake_sendmail &&
1880 echo "alias sbd someone@example.org" >.mailrc &&
1881 test_config sendemail.aliasesfile ".mailrc" &&
1882 test_config sendemail.aliasfiletype mailrc &&
1883 git format-patch --stdout -1 >cccmd.patch &&
1884 echo cccmd--sbd >>cccmd.patch &&
1886 --from="Example <nobody@example.com>" \
1887 --cc-cmd=./cccmd-sed \
1888 --smtp-server="$(pwd)/fake.sendmail" \
1891 grep "^!someone@example\.org!$" commandline1
1894 do_xmailer_test () {
1895 expected=$1 params=$2 &&
1896 git format-patch -1 &&
1898 --from="Example <nobody@example.com>" \
1899 --to=someone@example.com \
1900 --smtp-server="$(pwd)/fake.sendmail" \
1904 { grep '^X-Mailer:' out || :; } >mailer &&
1905 test_line_count = $expected mailer
1908 test_expect_success $PREREQ '--[no-]xmailer without any configuration' '
1909 do_xmailer_test 1 "--xmailer" &&
1910 do_xmailer_test 0 "--no-xmailer"
1913 test_expect_success $PREREQ '--[no-]xmailer with sendemail.xmailer=true' '
1914 test_config sendemail.xmailer true &&
1915 do_xmailer_test 1 "" &&
1916 do_xmailer_test 0 "--no-xmailer" &&
1917 do_xmailer_test 1 "--xmailer"
1920 test_expect_success $PREREQ '--[no-]xmailer with sendemail.xmailer=false' '
1921 test_config sendemail.xmailer false &&
1922 do_xmailer_test 0 "" &&
1923 do_xmailer_test 0 "--no-xmailer" &&
1924 do_xmailer_test 1 "--xmailer"
1927 test_expect_success $PREREQ 'setup expected-list' '
1930 --from="Example <from@example.com>" \
1931 --to="To 1 <to1@example.com>" \
1932 --to="to2@example.com" \
1933 --to="to3@example.com" \
1934 --cc="Cc 1 <cc1@example.com>" \
1935 --cc="Cc2 <cc2@example.com>" \
1936 --bcc="bcc1@example.com" \
1937 --bcc="bcc2@example.com" \
1938 0001-add-master.patch | replace_variable_fields \
1942 test_expect_success $PREREQ 'use email list in --cc --to and --bcc' '
1945 --from="Example <from@example.com>" \
1946 --to="To 1 <to1@example.com>, to2@example.com" \
1947 --to="to3@example.com" \
1948 --cc="Cc 1 <cc1@example.com>, Cc2 <cc2@example.com>" \
1949 --bcc="bcc1@example.com, bcc2@example.com" \
1950 0001-add-master.patch | replace_variable_fields \
1952 test_cmp expected-list actual-list
1955 test_expect_success $PREREQ 'aliases work with email list' '
1956 echo "alias to2 to2@example.com" >.mutt &&
1957 echo "alias cc1 Cc 1 <cc1@example.com>" >>.mutt &&
1958 test_config sendemail.aliasesfile ".mutt" &&
1959 test_config sendemail.aliasfiletype mutt &&
1962 --from="Example <from@example.com>" \
1963 --to="To 1 <to1@example.com>, to2, to3@example.com" \
1964 --cc="cc1, Cc2 <cc2@example.com>" \
1965 --bcc="bcc1@example.com, bcc2@example.com" \
1966 0001-add-master.patch | replace_variable_fields \
1968 test_cmp expected-list actual-list
1971 test_expect_success $PREREQ 'leading and trailing whitespaces are removed' '
1972 echo "alias to2 to2@example.com" >.mutt &&
1973 echo "alias cc1 Cc 1 <cc1@example.com>" >>.mutt &&
1974 test_config sendemail.aliasesfile ".mutt" &&
1975 test_config sendemail.aliasfiletype mutt &&
1976 TO1=$(echo "QTo 1 <to1@example.com>" | q_to_tab) &&
1977 TO2=$(echo "QZto2" | qz_to_tab_space) &&
1978 CC1=$(echo "cc1" | append_cr) &&
1979 BCC1=$(echo "Q bcc1@example.com Q" | q_to_nul) &&
1982 --from=" Example <from@example.com>" \
1985 --to=" to3@example.com " \
1987 --cc="Cc2 <cc2@example.com>" \
1989 --bcc="bcc2@example.com" \
1990 0001-add-master.patch | replace_variable_fields \
1992 test_cmp expected-list actual-list
1995 test_expect_success $PREREQ 'invoke hook' '
1996 mkdir -p .git/hooks &&
1998 write_script .git/hooks/sendemail-validate <<-\EOF &&
1999 # test that we have the correct environment variable, pwd, and
2009 test -f 0001-add-master.patch &&
2010 grep "add master" "$1"
2015 # Test that it works even if we are not at the root of the
2019 --from="Example <nobody@example.com>" \
2020 --to=nobody@example.com \
2021 --smtp-server="$(pwd)/../fake.sendmail" \
2022 ../0001-add-master.patch &&
2024 # Verify error message when a patch is rejected by the hook
2025 sed -e "s/add master/x/" ../0001-add-master.patch >../another.patch &&
2027 --from="Example <nobody@example.com>" \
2028 --to=nobody@example.com \
2029 --smtp-server="$(pwd)/../fake.sendmail" \
2030 ../another.patch 2>err
2031 test_i18ngrep "rejected by sendemail-validate hook" err
2035 test_expect_success $PREREQ 'test that send-email works outside a repo' '
2036 nongit git send-email \
2037 --from="Example <nobody@example.com>" \
2038 --to=nobody@example.com \
2039 --smtp-server="$(pwd)/fake.sendmail" \
2040 "$(pwd)/0001-add-master.patch"