Contributing Advent 3: Zetacomponent's Mail
Years ago when I was working for eZ Systems I worked on "eZ Components", which then became the now defunct "Apache Zeta Components", and now finally it's hosted on GitHub as Zeta Components. In the last weeks Thomas Bachem has been providing a few fixes to the Mail component. The Mail component in Zeta Components has by far the most extensive implementation of various email, MIME and header RFCs. This allows it to parse almost every mail that is thrown at it. Combined with an excellent POP3, IMAP and SMTP implementation is is the best Mail utility for PHP—and I am not only saying that because I wrote parts of it.
However, just like as many other components in the package, it has not seen a lot of love lately, and its test suite is still using some of the old hard coded email servers that we used to use for testing when still at eZ Systems.
My first patch fixes a few notices that were raised while running the tests. The notices were all through by the following line in the code:
declare(encoding="latin1");
These lines were initially added because of PHP 6 functionality that allowed you to set a character set for each file. As PHP 5 didn't really care, these lines didn't hurt either. However, now PHP supports the line as part of the Zend multibyte functionality, which I hadn't enabled, it started spewing errors like:
Warning: declare(encoding=...) ignored because Zend multibyte feature is turned off by settings in /home/derick/dev/zeta-new/Mail/src/transports/file/file_set.php on line 2
This tiny patch made those warnings go away, but there are still plenty of things to fix left over:
PHPUnit 3.7.10 by Sebastian Bergmann. Configuration read from /home/derick/dev/zeta-new/Mail/phpunit.xml.dist ....................FS..............F.......F.................. 63 / 639 ( 9%) ...F.F................F........................................ 126 / 639 ( 19%) ....................................................S.S.FFFFFF. 189 / 639 ( 29%) .....S......................................................... 252 / 639 ( 39%) ......................F..S.............FEEEEEEEEEEEEEEEEEEEEEEE 315 / 639 ( 49%) EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE 378 / 639 ( 59%) EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE 441 / 639 ( 69%) EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE................. 504 / 639 ( 78%) .............EEEEE.......E.EEEEEEEEEEEEEEEE.EEE.E...E......EE.. 567 / 639 ( 88%) .E......E...E....E.E..F.....FFFFFF....FSSSSSSS........EEEEEEEEE 630 / 639 ( 98%) EEEEE....
So I've a bit more to do to make this test suite work fine again…
Life Line
I know my French is pretty terrible, but I'm sure I'm closer to the correct answer than what's shown here...
Merge branch 'v2022'
Merge pull request #169 from psumbera/solaris-2
I walked 7.0km in 1h6m48s
Fixed some ffing sidewalks again.
I walked 10.5km in 1h40m26s
Updated a pet_grooming shop
I walked 8.6km in 2h12m58s
I walked 8.7km in 1h24m16s
Updated a restaurant
I walked 2.4km in 24m20s
I walked 6.6km in 1h4m32s
I walked 0.6km in 4m38s
I walked 8.5km in 1h22m35s
Merged pull request #1029
Reflow some comments
Add comments, add end of file newlines, fix php 8.5 compilation
Benchmark Xdebug performance
Merged pull request #1051
PHP 8.6: printf() is now optimised out if it only uses %s and %d (and…
PHP 8.6: The object IDs of objects changed in tests
PHP 8.6: ZSTR_INIT_LITERAL() no longer takes non-literals, so use zen…
PHP 8.6: WRONG_PARAM_COUNT has been removed in favour of zend_wrong_p…
PHP 8.6: zval_dtor() has been deprecated in favour of zval_ptr_dtor_n…
Update test for version constraints, as well as the error messages


Shortlink
This article has a short URL available: https://drck.me/adv1303-aes