php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #29933 Certain subject Line characters cause mail() to fail
Submitted: 2004-09-01 18:50 UTC Modified: 2004-09-02 08:13 UTC
From: b dot parish at arts dot ac dot uk Assigned:
Status: Not a bug Package: Mail related
PHP Version: 4.3.8 OS: Windows 2000 SP 4
Private report: No CVE-ID: None
 [2004-09-01 18:50 UTC] b dot parish at arts dot ac dot uk
Description:
------------
The mail function cannot send the email has certain characters. For instance the following will not work

$subject = "Joe bloggs edited the Personnel Record of Joe bloggs";

If I strip out the 'd's, it does work:

$subject = "Joe bloggs edite the Personnel Recor of Joe bloggs";

mail("j.bloggs@arts.ac.uk", $subject, "test", "");

My php.ini has the following values:

[mail function]
; For Win32 only.
SMTP = mail.arts.ac.uk

; For Win32 only.
sendmail_from = j.bloggs@arts.ac.uk

The problem also occurs on Linux running PHP Version 4.3.2

Looking in /var/log/maillog:

Sep  1 17:41:57 www-b sendmail[27241]: i81GfvD27241: from=nobody, size=92, class=0, nrcpts=1, msgid=<200409011641.i81GfvD27241@www-b.linst.ac.uk>, relay=nobody@localhost
Sep  1 17:41:57 www-b sendmail[27244]: i81GfvD27241: to=j.bloggs@arts.ac.uk, ctladdr=nobody (99/99), delay=00:00:00, xdelay=00:00:00, mailer=relay, pri=30092, relay=mail.linst.ac.uk [195.195.78.11], dsn=2.0.0, stat=Sent (OK id=1C2YBJ-0002Nd-00)


Reproduce code:
---------------
$subject = "Joe bloggs edited the Personnel Record of Joe bloggs";

mail("j.bloggs@arts.ac.uk", $subject, "test", "");

Expected result:
----------------
An email is sent with:

to/from: j.bloggs@arts.ac.uk

subject: 'Joe bloggs edited the Personnel Record of Joe bloggs'

body: 'test'

Actual result:
--------------
No email is sent at all.

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2004-09-01 19:11 UTC] b dot parish at arts dot ac dot uk
I am investigating the possibility that it is a problem with our mail relay software.

The problem can be replicated using a standard email client and therefore it is very unlikely to be PHP related.

I will report back once we have done more diagnostics.
 [2004-09-02 08:13 UTC] derick@php.net
As PHP doesn't mangle addresses anyway, I don't believe this can't be a bug in PHP and such I'm marking it as bogus. Of your little investigation brings any new evidence, feel free to reopen.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Tue Apr 16 17:01:30 2024 UTC