PEAR is archived and read-only

This mirror preserves historical PEAR package releases and metadata so existing references remain available.

Home » Mail » Mail_Queue » Bug #8287

Period in name is stripped?

Details

Submitted2006-07-25 17:02 UTC
Fromchris at velocimedia dot com
Assignedtill
StatusBogus
PackageMail_Queue
PHP Version5.0.5
OSLinux Debian
Roadmaps(Not assigned)

Comments

[2006-07-25 17:02 UTC] chris at velocimedia dot com

Description:
------------
This bug shows up on my *build* (where you can actually send mail to multiple recipients by changing the database table to receive an array).

When the NAME (not the email) has a "period", for example: "Mr. Test" OR "Test Person Jr.", the email does not get sent out. If you do directly to the database to edit anything (like remove the period), you "break" the serialization and therefore the message will also die.

Examples:

Mr. Test <test@test.com>
Test Person Jr. <testpersonjr@test.com>

For now, to *not* touch the PEAR part of it, I have to parse out (using str_replace('.',' ',$name)) the "period" character on all the NAME portions before calling the Mail_Queue->put() method.