-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.xml
1037 lines (1033 loc) · 34.8 KB
/
package.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8"?>
<package packagerversion="1.9.4" version="2.0" xmlns="http://pear.php.net/dtd/package-2.0" xmlns:tasks="http://pear.php.net/dtd/tasks-1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://pear.php.net/dtd/tasks-1.0 http://pear.php.net/dtd/tasks-1.0.xsd http://pear.php.net/dtd/package-2.0 http://pear.php.net/dtd/package-2.0.xsd">
<name>Mail_Mime</name>
<channel>pear.php.net</channel>
<summary>Mail_Mime provides classes to create MIME messages.</summary>
<description>Mail_Mime provides classes to deal with the creation and manipulation of MIME messages.
It allows people to create e-mail messages consisting of:
* Text Parts
* HTML Parts
* Inline HTML Images
* Attachments
* Attached messages
It supports big messages, base64 and quoted-printable encodings and
non-ASCII characters in filenames, subjects, recipients, etc. encoded
using RFC2047 and/or RFC2231.</description>
<lead>
<name>Cipriano Groenendal</name>
<user>cipri</user>
<email>[email protected]</email>
<active>no</active>
</lead>
<lead>
<name>Aleksander Machniak</name>
<user>alec</user>
<email>[email protected]</email>
<active>yes</active>
</lead>
<date>2024-03-10</date>
<time>21:20:00</time>
<version>
<release>1.10.12</release>
<api>1.10.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD Style</license>
<notes>
* Prevent from "PHP Deprecated: file_exists(): Passing null to parameter #1 ($filename) of type string" [alec]
* PHPDoc improvements [alec]
</notes>
<contents>
<dir name="/">
<dir name="tests">
<file baseinstalldir="Mail" name="class-filename.phpt" role="test" />
<file baseinstalldir="Mail" name="content_transfer_encoding.phpt" role="test" />
<file baseinstalldir="Mail" name="encoding_case.phpt" role="test" />
<file baseinstalldir="Mail" name="headers_with_mbstring.phpt" role="test" />
<file baseinstalldir="Mail" name="headers_without_mbstring.phpt" role="test" />
<file baseinstalldir="Mail" name="qp_encoding_test.phpt" role="test" />
<file baseinstalldir="Mail" name="sleep_wakeup_EOL-bug3488-part1.phpt" role="test" />
<file baseinstalldir="Mail" name="sleep_wakeup_EOL-bug3488-part2.phpt" role="test" />
<file baseinstalldir="Mail" name="test_Bug_3513_1.phpt" role="test" />
<file baseinstalldir="Mail" name="test_Bug_3513_2.phpt" role="test" />
<file baseinstalldir="Mail" name="test_Bug_3513_3.phpt" role="test" />
<file baseinstalldir="Mail" name="test_Bug_7561_1.phpt" role="test" />
<file baseinstalldir="Mail" name="test_Bug_8386_1.phpt" role="test" />
<file baseinstalldir="Mail" name="test_Bug_8541_1.phpt" role="test" />
<file baseinstalldir="Mail" name="test_Bug_9722_1.phpt" role="test" />
<file baseinstalldir="Mail" name="test_Bug_10596_1.phpt" role="test" />
<file baseinstalldir="Mail" name="test_Bug_10816_1.phpt" role="test" />
<file baseinstalldir="Mail" name="test_Bug_10999_1.phpt" role="test" />
<file baseinstalldir="Mail" name="test_Bug_11381.phpt" role="test" />
<file baseinstalldir="Mail" name="test_Bug_11731.phpt" role="test" />
<file baseinstalldir="Mail" name="test_Bug_12165.phpt" role="test" />
<file baseinstalldir="Mail" name="test_Bug_12385_1.phpt" role="test" />
<file baseinstalldir="Mail" name="test_Bug_12411.phpt" role="test" />
<file baseinstalldir="Mail" name="test_Bug_12466.phpt" role="test" />
<file baseinstalldir="Mail" name="test_Bug_13032.phpt" role="test" />
<file baseinstalldir="Mail" name="test_Bug_13444.phpt" role="test" />
<file baseinstalldir="Mail" name="test_Bug_13962.phpt" role="test" />
<file baseinstalldir="Mail" name="test_Bug_14529.phpt" role="test" />
<file baseinstalldir="Mail" name="test_Bug_14779.phpt" role="test" />
<file baseinstalldir="Mail" name="test_Bug_14780.phpt" role="test" />
<file baseinstalldir="Mail" name="test_Bug_15320.phpt" role="test" />
<file baseinstalldir="Mail" name="test_Bug_16539.phpt" role="test" />
<file baseinstalldir="Mail" name="test_Bug_17025.phpt" role="test" />
<file baseinstalldir="Mail" name="test_Bug_17175.phpt" role="test" />
<file baseinstalldir="Mail" name="test_Bug_18083.phpt" role="test" />
<file baseinstalldir="Mail" name="test_Bug_18772.phpt" role="test" />
<file baseinstalldir="Mail" name="test_Bug_19497.phpt" role="test" />
<file baseinstalldir="Mail" name="test_Bug_20226.phpt" role="test" />
<file baseinstalldir="Mail" name="test_Bug_20273.phpt" role="test" />
<file baseinstalldir="Mail" name="test_Bug_20563.phpt" role="test" />
<file baseinstalldir="Mail" name="test_Bug_20564.phpt" role="test" />
<file baseinstalldir="Mail" name="test_Bug_21027.phpt" role="test" />
<file baseinstalldir="Mail" name="test_Bug_21098.phpt" role="test" />
<file baseinstalldir="Mail" name="test_Bug_21205.phpt" role="test" />
<file baseinstalldir="Mail" name="test_Bug_21206.phpt" role="test" />
<file baseinstalldir="Mail" name="test_Bug_21255.phpt" role="test" />
<file baseinstalldir="Mail" name="test_Bug_GH16.phpt" role="test" />
<file baseinstalldir="Mail" name="test_Bug_GH19.phpt" role="test" />
<file baseinstalldir="Mail" name="test_Bug_GH26.phpt" role="test" />
<file baseinstalldir="Mail" name="test_linebreak_dot.phpt" role="test" />
<file baseinstalldir="Mail" name="test_linebreak_larger_76.phpt" role="test" />
</dir> <!-- /tests -->
<dir name="Mail">
<file baseinstalldir="/" name="mime.php" role="php" />
<file baseinstalldir="/" name="mimePart.php" role="php" />
</dir>
</dir> <!-- / -->
</contents>
<dependencies>
<required>
<php>
<min>5.2.0</min>
</php>
<pearinstaller>
<min>1.6.0</min>
</pearinstaller>
</required>
</dependencies>
<phprelease />
<changelog>
<release>
<version>
<release>1.0</release>
<api>1.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<date>2001-12-28</date>
<license uri="http://www.php.net/license">PHP</license>
<notes>
This is the initial release of the Mime_Mail package.
</notes>
</release>
<release>
<version>
<release>1.1</release>
<api>1.1</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<date>2002-04-03</date>
<license uri="http://www.php.net/license">PHP</license>
<notes>
This is a maintenance release with various bugfixes and minor enhancements.
</notes>
</release>
<release>
<version>
<release>1.2</release>
<api>1.2</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<date>2002-07-14</date>
<license uri="http://www.php.net/license">PHP</license>
<notes>
* Added header encoding
* Altered mimePart to put boundary parameter on newline
* Changed addFrom() to setFrom()
* Added setSubject()
* Made mimePart inherit crlf setting from mime
</notes>
</release>
<release>
<version>
<release>1.2.1</release>
<api>1.2.1</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<date>2002-07-27</date>
<license uri="http://www.php.net/license">PHP</license>
<notes>
* License change
* Applied a few changes From Ilia Alshanetsky
</notes>
</release>
<release>
<version>
<release>1.3.0RC1</release>
<api>1.3.0RC1</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<date>2005-03-20</date>
<license uri="http://www.php.net/license">PHP</license>
<notes>
* First release in over 2.5 years (!)
* MANY bugfixes (see the bugtracker)
* added a few tests
</notes>
</release>
<release>
<version>
<release>1.3.0</release>
<api>1.3.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<date>2005-04-01</date>
<license uri="http://www.php.net/license">PHP</license>
<notes>
* First (stable) release in over 2.5 years (!)
* MANY bugfixes (see the bugtracker)
* added a few tests
* one small fix after RC1 (bug #3940)
</notes>
</release>
<release>
<version>
<release>1.3.1</release>
<api>1.3.1</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<date>2005-07-13</date>
<license uri="http://www.php.net/license">PHP</license>
<notes>
</notes>
</release>
<release>
<version>
<release>1.4.0a1</release>
<api>1.3.1</api>
</version>
<stability>
<release>alpha</release>
<api>stable</api>
</stability>
<date>2007-03-08</date>
<license uri="http://www.opensource.org/licenses/bsd-license.php">bsd style</license>
<notes>
* Changed License to BSD Style license, as that's what the code was since the beginning [cipri]
* Fix Bug #30: Mail_Mime: _encodeHeaders is not RFC-2047 compliant. [cipri]
* Fix Bug #3513: support of RFC2231 in header fields. [cipri]
* Fix Bug #4696: addAttachment crash [cipri]
* Fix Bug #5333: Only variables should be returned by reference; triggers notices since php 4.4.0 [cipri]
* Fix Bug #7561: Mail_mimePart::_quotedPrintableEncode() misbehavior with mbstring overload [cipri]
* Fix Bug #8223: Incorrectly encoded quoted-printable headers [cipri]
* Fix Bug #8386: HTML body not correctly encoded if attachments present [cipri]
* Fix Bug #8541: mimePart.php line delimiter is \r [cipri]
* Fix Bug #9347: Notices about references [cweiske]
* Fix Bug #9558: Broken multiline headers [cipri]
* Fix Bug #9956: Notices being thrown [cipri]
* Fix Bug #9976: Subject encoded twice [cipri]
* Implement Feature #2952: Mail_mime::headers() saves extra headers [cipri]
* Implement Feature #3636: Allow specification of charsets and encoding [cipri]
* Implement Feature #4057: Mail_Mime: Add name parameter for Content-Type [cipri]
* Implement Feature #4504: addHTMLImage does not work in cases when filename contains a path [cipri]
* Implement Feature #5837: Mail_Mime: Build message for Net_SMTP [cipri]
* Implement Feature #5934: Mail_Mime: choice for content disposition [cipri]
* Implement Feature #6568: Mail_Mime: inline images referenced in CSS definitions not replaced. [cipri]
</notes>
</release>
<release>
<version>
<release>1.4.0a2</release>
<api>1.3.1</api>
</version>
<stability>
<release>alpha</release>
<api>stable</api>
</stability>
<date>2007-04-05</date>
<license uri="http://www.opensource.org/licenses/bsd-license.php">bsd style</license>
<notes>
* Fix Bug #9722: _quotedPrintableEncode does not encode dot at start of line on Windows
platform [cipri]
* Fix Bug #9725: multipart/related & alternative wrong order [cipri]
* Fix Bug #10146: mbstring fails to recognize encodings. [cipri]
* Fix Bug #10158: Inline images not displayed on Mozilla Thunderbird [cipri]
* Fix Bug #10298: Mail_mime, double Quotes and Specialchars in from and to Adress [cipri]
* Fix Bug #10306: Strings with Double Quotes get encoded wrongly [cipri]
* Fix Bug #10596: Incorrect handling of text and html '0' bodies [cipri]
</notes>
</release>
<release>
<version>
<release>1.4.0a3</release>
<api>1.3.1</api>
</version>
<stability>
<release>alpha</release>
<api>stable</api>
</stability>
<date>2007-04-05</date>
<license uri="http://www.opensource.org/licenses/bsd-license.php">bsd style</license>
<notes>
* Fix Bug #10298: Mail_mime, double Quotes and Specialchars in from and to Adress [cipri]
* Fix Bug #10306: Strings with Double Quotes get encoded wrongly [cipri]
</notes>
</release>
<release>
<version>
<release>1.4.0RC1</release>
<api>1.3.1</api>
</version>
<stability>
<release>beta</release>
<api>stable</api>
</stability>
<date>2007-04-12</date>
<license uri="http://www.opensource.org/licenses/bsd-license.php">bsd style</license>
<notes>
* Fix Bug #10232: Gmail creates double line break when \r\n is used [cipri]
</notes>
</release>
<release>
<version>
<release>1.4.0RC2</release>
<api>1.3.1</api>
</version>
<stability>
<release>beta</release>
<api>stable</api>
</stability>
<date>2007-04-22</date>
<license uri="http://www.opensource.org/licenses/bsd-license.php">bsd style</license>
<notes>
* Fix Bug #10791: Unit tests fail [cipri]
* Fix Bug #10792: No unit tests for recently fixed bugs [cipri]
* Fix Bug #10793: Long headers don't get wrapped since fix for Bug #10298 [cipri]
</notes>
</release>
<release>
<version>
<release>1.4.0RC3</release>
<api>1.3.1</api>
</version>
<stability>
<release>beta</release>
<api>stable</api>
</stability>
<date>2007-04-24</date>
<license uri="http://www.opensource.org/licenses/bsd-license.php">bsd style</license>
<notes>
* Fix Bug #10816: Unwanted linebreak at the end of output [cipri]
</notes>
</release>
<release>
<version>
<release>1.4.0RC4</release>
<api>1.3.1</api>
</version>
<stability>
<release>beta</release>
<api>stable</api>
</stability>
<date>2007-04-28</date>
<license uri="http://www.opensource.org/licenses/bsd-license.php">bsd style</license>
<notes>
* Fix Bug #3513: support of RFC2231 in header fields. [cipri]
* Fix Bug #10838: bad use of MIME encoding in header. [cipri]
</notes>
</release>
<release>
<version>
<release>1.4.0</release>
<api>1.3.1</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<date>2007-05-05</date>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD Style</license>
<notes>
Release notes:
* No more notices in PHP 5 /4.4.0.
* Improved inline HTML image function.
* Improved header encoding with foreign charsets.
* Improved long header rendering.
* More control over used Charsets and encoding schemes.
* More configurable attachments and inline images.
* Full RFC 2047 Support
* Full RFC 2231 Support
* Unit-tests
Fixed bugs:
* Fix Bug #30: Mail_Mime: _encodeHeaders is not RFC-2047 compliant. [cipri]
* Fix Bug #3513: support of RFC2231 in header fields. [cipri]
* Fix Bug #4696: addAttachment crash [cipri]
* Fix Bug #5333: Only variables should be returned by reference; triggers notices since
php 4.4.0 [cipri]
* Fix Bug #5400: Do not return function reference [cipri]
* Fix Bug #5710: Little reference bugs [cipri]
* Fix Bug #5890: Only variable references should be returned by reference [cipri]
* Fix Bug #6260: Just a notice with PHP5 [cipri]
* Fix Bug #6261: php 5.1.1 upgrade [cipri]
* Fix Bug #6663: Notice about reference passing [cipri]
* Fix Bug #7561: Mail_mimePart::_quotedPrintableEncode() misbehavior with mbstring
overload [cipri]
* Fix Bug #7713: PHP5 Notice: Only variable references should be returned by reference [cipri]
* Fix Bug #8223: Incorrectly encoded quoted-printable headers [cipri]
* Fix Bug #8386: HTML body not correctly encoded if attachments present [cipri]
* Fix Bug #8541: mimePart.php line delimiter is \r [cipri]
* Fix Bug #8812: user header updates overwritten [cipri]
* Fix Bug #9347: Notices about references [cweiske]
* Fix Bug #9558: Broken multiline headers [cipri]
* Fix Bug #9722: _quotedPrintableEncode does not encode dot at start of line on Windows
platform [cipri]
* Fix Bug #9725: multipart/related & alternative wrong order [cipri]
* Fix Bug #9956: Notices being thrown [cipri]
* Fix Bug #9976: Subject encoded twice [cipri]
* Fix Bug #10146: mbstring fails to recognize encodings. [cipri]
* Fix Bug #10158: Inline images not displayed on Mozilla Thunderbird [cipri]
* Fix Bug #10232: Gmail creates double line break when \r\n is used [cipri]
* Fix Bug #10298: Mail_mime, double Quotes and Specialchars in from and to Adress [cipri]
* Fix Bug #10306: Strings with Double Quotes get encoded wrongly [cipri]
* Fix Bug #10596: Incorrect handling of text and html '0' bodies [cipri]
* Fix Bug #10791: Unit tests fail [cipri]
* Fix Bug #10792: No unit tests for recently fixed bugs [cipri]
* Fix Bug #10793: Long headers don't get wrapped since fix for Bug #10298 [cipri]
* Fix Bug #10816: Unwanted linebreak at the end of output [cipri]
* Fix Bug #10838: bad use of MIME encoding in header. [cipri]
Implemented Features:
* Implement Feature #2952: Mail_mime::headers() saves extra headers [cipri]
* Implement Feature #3636: Allow specification of charsets and encoding [cipri]
* Implement Feature #4057: Mail_Mime: Add name parameter for Content-Type [cipri]
* Implement Feature #4504: addHTMLImage does not work in cases when filename contains a path [cipri]
* Implement Feature #5837: Mail_Mime: Build message for Net_SMTP [cipri]
* Implement Feature #5934: Mail_Mime: choice for content disposition [cipri]
* Implement Feature #6568: Mail_Mime: inline images referenced in CSS definitions not replaced. [cipri]
* Implement Feature #10604: Put an option to specify Content-Location in the header [cipri]
</notes>
</release>
<release>
<version>
<release>1.5.0a1</release>
<api>1.3.1</api>
</version>
<stability>
<release>alpha</release>
<api>stable</api>
</stability>
<date>2007-06-10</date>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD Style</license>
<notes>
Split off mail_MimeDecode
</notes>
</release>
<release>
<version>
<release>1.5.0RC1</release>
<api>1.3.1</api>
</version>
<stability>
<release>beta</release>
<api>stable</api>
</stability>
<date>2007-06-10</date>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD Style</license>
<notes>
Split off mail_MimeDecode
</notes>
</release>
<release>
<version>
<release>1.5.0</release>
<api>1.3.1</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<date>2007-06-17</date>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD Style</license>
<notes>
Split off Mail_MimeDecode
</notes>
</release>
<release>
<version>
<release>1.5.1</release>
<api>1.3.1</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<date>2007-06-20</date>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD Style</license>
<notes>
* Fix Bug #11344: Error at line 644 in mime.php [cipri]
</notes>
</release>
<release>
<version>
<release>1.5.2</release>
<api>1.3.1</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<date>2007-06-21</date>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD Style</license>
<notes>
* Fix Bug #11381: domain name is attached to content-id, trailing greater-than sign is
not remove [cipri]
</notes>
</release>
<release>
<version>
<release>1.5.3</release>
<api>1.3.2</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<date>2009-12-29</date>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD Style</license>
<notes>
Fixed bugs:
* Fix Bug #14678: srand() lowers security [clockwerx]
* Fix Bug #12921: _file2str not binary safe [walter]
* Fix Bug #12385: Bad regex when replacing css style attachments [cipri]
* Fix Bug #16911: Excessive semicolon in MIME header [alec]
* Fix Bug #15320: Attachment charset is not set in Content-Type header [alec]
* Fix Bug #16911: Lack of semicolon separator for MIME header parameters [alec]
* Fix Bug #16846: Use preg_replace_callback() instead of /e modifier [alec]
* Fix Bug #14779: Problem with an empty attachment [alec]
* Fix Bug #15913: Optimize the memory used by Mail_mimePart::encode.
Avoid having attachments data duplicated in memory [alec]
* Fix Bug #16539: Headers longer than 998 characters aren't wrapped [alec]
* Fix Bug #11238: Wrong encoding of structured headers [alec]
* Fix Bug #13641: iconv_mime_encode() seems to work different/errorious than
the build in logic. Removed 'ignore_iconv' param. [alec]
* Fix Bug #16706: Incorrect double-quotes RFC 2231-encoded parameter values [alec]
* Fix Bug #14232: RFC2231: tspecials encoding in _buildHeaderParam() [alec]
Implemented Features:
* Implement Feature #10438: Function (encodeHeader) for encoding of given header [alec]
</notes>
</release>
<release>
<version>
<release>1.6.0</release>
<api>1.4.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<date>2010-01-27</date>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD Style</license>
<notes>
Bugs Fixed:
* Don't break specified headers folding [alec]
* Bug #17025: Wrong headers() result for long unwrapable header value [alec]
Implemented Features:
* Allow setting Content-ID for HTML Images [alec]
* Added one setParam() in place of many set*() functions [alec]
* Added getParam(), getTXTBody(), getHTMLBody() [alec]
* Skip RFC2231's charset if filename contains only ASCII characters [alec]
* Make sure that Received: headers are returned on the top [alec]
* Added saveMessageBody() and getMessageBody() functions [alec]
</notes>
</release>
<release>
<version>
<release>1.6.1</release>
<api>1.4.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<date>2010-03-08</date>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD Style</license>
<notes>
Bugs Fixed:
* Fix encoding of Return-Receipt-To and Disposition-Notification-To headers [alec]
Implemented Features:
* Implement Feature #12466: Build parameters validation [alec]
* Implement Feature #17175: Content-Description support for attachments [alec]
</notes>
</release>
<release>
<version>
<release>1.6.2</release>
<api>1.4.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<date>2010-03-23</date>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD Style</license>
<notes>
Bugs Fixed:
* Fix Bug #17226: Non RFC-compliant quoted-printable encoding of structured headers [alec]
</notes>
</release>
<release>
<version>
<release>1.7.0</release>
<api>1.4.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<date>2010-04-12</date>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD Style</license>
<notes>
Implemented Features:
* Added Mail_mime::setContentType() function with possibility to set various
types in Content-Type header (also fixes problem with boundary parameter when Content-Type
header was specified by user) [alec]
</notes>
</release>
<release>
<date>2010-07-29</date>
<version>
<release>1.8.0</release>
<api>1.4.1</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD Style</license>
<notes>
Bugs Fixed:
* Double-addition of e-mail domain to content ID in HTML images [alec]
* #17311: Multi-octet characters are split across adjacent 'encoded-word's [alec]
* #17573: Place charset parameter in first line of Content-Type header (if possible) [alec]
Implemented Features:
* #17518: addTo() method [alec]
</notes>
</release>
<release>
<date>2010-12-01</date>
<version>
<release>1.8.1</release>
<api>1.4.1</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD Style</license>
<notes>
Bugs Fixed:
* #18083: Not possible to set separate charset for attachment content and headers [alec]
</notes>
</release>
<release>
<date>2011-08-10</date>
<version>
<release>1.8.2</release>
<api>1.4.1</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD Style</license>
<notes>
Bugs Fixed:
* #18426: Fixed backward compatibility for "dfilename" parameter [alec]
* Removed xmail.dtd, xmail.xsl from the package [alec]
* Fixed handling of email addresses with quoted local part [alec]
</notes>
</release>
<release>
<date>2012-03-12</date>
<version>
<release>1.8.3</release>
<api>1.4.1</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD Style</license>
<notes>
* Request #19009: Remove error_reporting from tests [alec]
* Fixed Bug #19094: Email addresses do not have to contain a space between the name and address part [alec]
* Fixed Bug #19328: Wrong encoding of filenames with comma [alec]
</notes>
</release>
<release>
<date>2012-05-17</date>
<version>
<release>1.8.4</release>
<api>1.4.2</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD Style</license>
<notes>
* Request #19406: Allow to set individual attachment part headers [alec]
* Fixed Bug #18982: Non-static method Mail_mimePart::encodeHeader() should not be called statically [alec]
</notes>
</release>
<release>
<date>2012-06-09</date>
<version>
<release>1.8.5</release>
<api>1.4.3</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD Style</license>
<notes>
* Added possibility to set additional parameters of message part header, e.g. attachment size [alec]
* Added automatic setting of attachment size via Content-Disposition header size parameter [alec]
</notes>
</release>
<release>
<date>2012-10-23</date>
<version>
<release>1.8.6</release>
<api>1.4.3</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD Style</license>
<notes>
* Bug #19473: PEAR::isError() compatibility problem with PHP 5.4 [alec]
* Bug #19497: Attachment filename is cut on slash character [alec]
* Bug #19665: Add Mail-Reply-To and Mail-Followup-To to structured recipient headers list [alec]
</notes>
</release>
<release>
<date>2012-12-25</date>
<version>
<release>1.8.7</release>
<api>1.4.3</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD Style</license>
<notes>
* Bug #5333: Fix more return by reference errors [alec]
* Bug #19754: Fix compatibility with PHP4 [alec]
</notes>
</release>
<release>
<date>2013-07-05</date>
<version>
<release>1.8.8</release>
<api>1.4.3</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD Style</license>
<notes>
* Fixed warning/notice on (static vs. non-static) PEAR::raiseError() usage [alec]
* Fixed Bug #19761: PHP5 warnings about return by reference [alec]
* Fixed Bug #19770: Make cid generator more unique on Windows [alec]
* Fixed Bug #19987: E_STRICT warning when null is passed by reference [alec]
</notes>
</release>
<release>
<date>2014-05-14</date>
<version>
<release>1.8.9</release>
<api>1.4.3</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD Style</license>
<notes>
* Fixed Bug #20273: Incorrect handling of HTAB in encodeHeader() [alec]
* Fixed Bug #20226: Mail_mimePart::encodeHeader does not encode ISO-2022-JP string [alec]
* Fixed Bug #20222: Broken Compatybility with PHP4 [alec]
</notes>
</release>
<release>
<date>2015-07-05</date>
<time>12:50:00</time>
<version>
<release>1.9.0RC1</release>
<api>2.0.0</api>
</version>
<stability>
<release>beta</release>
<api>beta</api>
</stability>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD Style</license>
<notes>
* Drop PHP4 support, Fix warnings on PHP7 [alec]
* Request #20564: Added possibility to unset headers [alec]
* Request #20563: Added isMultipart() method [alec]
* Request #20565: Accept also a file pointer in Mail_mimePart::encodeToFile(),
Mail_mime::get() and Mail_mime::saveMessageBody() [alec]
</notes>
</release>
<release>
<date>2015-08-06</date>
<time>12:00:00</time>
<version>
<release>1.9.0</release>
<api>1.9.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD Style</license>
<notes>
* Bug #20921: Make Mail_mimePart::encodeHeaderValue() a static method [alec]
* Bug #20931: Really remove unset headers [alec]
* Request #18772: Added methods for creating text/calendar messages [alec]
</notes>
</release>
<release>
<date>2015-09-13</date>
<time>12:00:00</time>
<version>
<release>1.10.0</release>
<api>1.10.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD Style</license>
<notes>
* Add possibility to add externally created Mail_mimePart objects as attachments [alec]
* Add possibility to set preamble text for multipart messages [alec]
</notes>
</release>
<release>
<date>2017-05-21</date>
<time>12:00:00</time>
<version>
<release>1.10.1</release>
<api>1.10.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD Style</license>
<notes>
* Fix Bug 21206: explodeQuotedString() does not handle quoted strings correctly [dfukagaw28]
* Fix Bug 21205: Invalid encoding of headers with quoted multibyte strings in non-unicode charset [dfukagaw28]
* Fix Bug 21098: Discrepancy in handling of empty (but set) plain text part [alec]
</notes>
</release>
<release>
<date>2017-11-17</date>
<time>11:00:00</time>
<version>
<release>1.10.2</release>
<api>1.10.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD Style</license>
<notes>
* Fix Bug #21255: Boundary gets added twice when using setContentType() [alec]
* PHP 7.2 compatibility fixes [alec]
</notes>
</release>
<release>
<date>2019-09-25</date>
<time>08:00:00</time>
<version>
<release>1.10.3</release>
<api>1.10.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD Style</license>
<notes>
* Fix deprecation warning for get_magic_quotes_runtime() use on PHP 7.4 [alec]
</notes>
</release>
<release>
<date>2019-10-13</date>
<time>11:00:00</time>
<version>
<release>1.10.4</release>
<api>1.10.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD Style</license>
<notes>
* Fix E_STRICT errors introduced in the previous release [alec]
</notes>
</release>
<release>
<date>2020-01-24</date>
<time>19:00:00</time>
<version>
<release>1.10.5</release>
<api>1.10.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD Style</license>
<notes>
* Make sure to not set Content-Transfer-Encoding on multipart messages [alec]
* Added support for calendar invitations with attachments/html/images [jacalben]
</notes>
</release>
<release>
<date>2020-01-30</date>
<time>08:25:00</time>
<version>
<release>1.10.6</release>
<api>1.10.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD Style</license>
<notes>
* Fix different boundary in headers and body when using headers() after get() [alec]
* Removed phail.php script [alec]
</notes>
</release>
<release>
<date>2020-03-01</date>
<time>08:50:00</time>
<version>
<release>1.10.7</release>
<api>1.10.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD Style</license>
<notes>
* Fix invalid Content-Type for messages with only html part and inline images [alec]
</notes>
</release>
<release>
<date>2020-06-13</date>
<time>08:50:00</time>
<version>
<release>1.10.8</release>
<api>1.10.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD Style</license>
<notes>
* Fix encoding issues with ISO-2022-JP-MS input labelled with ISO-2022-JP [shirosaki]
</notes>
</release>
<release>
<date>2020-06-27</date>
<time>10:30:00</time>
<version>
<release>1.10.9</release>
<api>1.10.0</api>
</version>
<stability>
<release>stable</release>
<api>stable</api>
</stability>
<license uri="http://www.opensource.org/licenses/bsd-license.php">BSD Style</license>
<notes>
* Added a workaround for an opcache bug on OpenSuse 15.1 [alec]
</notes>
</release>
<release>