|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2007-02-14 12:04 UTC] tony2001@php.net
[2007-02-22 01:00 UTC] php-bugs at lists dot php dot net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Dec 06 10:00:01 2025 UTC |
Description: ------------ If localpart of "to" contains "-" characters, then they are truncated with all of the following characters before "@" Reproduce code: --------------- <?php mail('somename@mailserver.loc','msg1','msg1'); mail('somename-abc@mailserver.loc','msg2','msg2'); ?> Expected result: ---------------- Message 'msg1' in 'somename' mailbox and message 'msg2' in 'somename-abc' mailbox Actual result: -------------- Two messages ('msg1' and 'msg2') in 'somename' mailbox