mirror of
https://github.com/php/php-src.git
synced 2026-04-25 08:58:28 +02:00
22 lines
408 B
PHP
22 lines
408 B
PHP
--TEST--
|
|
Bug #69115 crash in mail (plus indirect pcre test)
|
|
--SKIPIF--
|
|
<?php
|
|
if( substr(PHP_OS, 0, 3) != 'WIN' ) {
|
|
die('skip...Windows only test');
|
|
}
|
|
?>
|
|
--INI--
|
|
SMTP =
|
|
smtp_port =
|
|
--FILE--
|
|
<?php
|
|
/* Just ensure it doesn't crash when trimming headers */
|
|
$message = "Line 1\r\nLine 2\r\nLine 3";
|
|
mail('user@example.com', 'My Subject', $message, "From: me@me.me");
|
|
?>
|
|
===DONE===
|
|
--EXPECTREGEX--
|
|
.*
|
|
===DONE===
|