summaryrefslogtreecommitdiffstats
path: root/test/mail.test
Commit message (Collapse)AuthorAgeFilesLines
* test: Extend mail.test to check for more than 2 duplicate subject linesJean Delvare2014-04-251-0/+11
|
* Tree-wide white-space cleanupsJean Delvare2014-01-201-1/+1
| | | | | | | * Delete blank lines at end of files. * Delete white space at end of lines. * Delete spaces before tab. * Replace 8 spaces by a tab where it makes sense.
* add a test case where we CC someone w/o a nameMartin Quinson2013-12-081-7/+16
|
* Separate working directory for each test caseJean Delvare2010-01-231-6/+1
| | | | | | | | | | | | | | | | | Let the test suite runner script create a separate working directory for each test. This makes it possible to run several tests in parallel, speeding up testing on SMP systems. It also ensures that a broken test case can no longer cause another test case to fail. At this point, it is possible to run the test suite in parallel, the final result (success or failure) will be correct, however the output is hardly readable because the progress of all tests are interlaced. This will be improved later. As a nice side effect, this means we can drop the setup and clean-up steps that were present in all test cases.
* - quilt/mail.in: Remove the Recipient-* and Replace-* headersAndreas Gruenbacher2007-11-051-1/+1
| | | | | used internally from the resulting emails; not sure how that was missed so far.
* - quilt/mail.in: Make sure that shell meta-characters like * inAndreas Gruenbacher2007-10-251-6/+13
| | | | | | | | | | subjects won't get expanded by accident (this was broken). Add test case. - quilt/mail.in: ``formail -x Foo'' will extract all Foo* headers, so use ``formail -x Foo:'' instead. - quilt/mail.in: Recognize sequences of common subject prefixes like Fwd:, Fw:, Re:, Aw:, Tr:, [foo] only at the beginning of subjects.
* - quilt/main.in: Add a --signature flag that allows to overrideAndreas Gruenbacher2007-10-151-7/+7
| | | | | the signature used. (The test suite still depended on the .signature file of the user runnig it; fixed now.)
* - quilt/mail.in, test/mail.test: Fix signature separator. PatchJean Delvare2006-09-051-7/+7
| | | | from Ville Syrjala.
* - test/mail.in: Test UTF-8 header encoding.Andreas Gruenbacher2006-03-261-1/+4
|
* - test/mail.in: Test for recipients with a dot in their name.Jean Delvare2006-03-261-7/+9
|
* - Filter duplicates with awk instead of usig uniq -D.Andreas Gruenbacher2006-02-011-1/+1
|
* - quilt/mail.in: Use $(hostname) for the sender address forAndreas Gruenbacher2006-01-301-4/+4
| | | | platforms on which $(hostname -f) doesn't work.
* - test/mail.test: Use --sender option to avoid callingAndreas Gruenbacher2006-01-301-4/+4
| | | | hostname -f on platforms that don't support -f.
* - test/mail.test: /dev/stdin & /dev/stdout dont exist on Tru64.Andreas Gruenbacher2006-01-301-6/+6
|
* - Also strip any bracketed fields and Re:, Fwd:, Fw:, Aw: fromAndreas Gruenbacher2006-01-291-1/+1
| | | | subject headers.
* - Also strip any literal "[patch]" from subject headers.Andreas Gruenbacher2006-01-291-1/+1
|
* - quilt/mail.in:Andreas Gruenbacher2006-01-291-0/+85
+ Add -m and --prefix options so that the mail command can be used without invoking an editor. + Verify that each message generated will have a unique subject. + Verify that the introduction has a subject header. + Fix a bug in the heuristic for adding recipients. + Add a heuristic for extracting subject headers + Clarify some messages. + Add a test case. + Update the documentation.