mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
Fix #74139: mail.add_x_header default inconsistent with docs [ci skip]
mail.add_x_header actually defaults to `Off`, so we should use this default in the provided `php.ini`s.
This commit is contained in:
parent
cab354debd
commit
25f324fad7
3 changed files with 3 additions and 2 deletions
1
NEWS
1
NEWS
|
@ -23,6 +23,7 @@ PHP NEWS
|
||||||
name contains a \n). (Laruence)
|
name contains a \n). (Laruence)
|
||||||
|
|
||||||
- Standard:
|
- Standard:
|
||||||
|
. Fixed bug #74139 (mail.add_x_header default inconsistent with docs). (cmb)
|
||||||
. Fixed bug #76068 (parse_ini_string fails to parse "[foo]\nbar=1|>baz" with
|
. Fixed bug #76068 (parse_ini_string fails to parse "[foo]\nbar=1|>baz" with
|
||||||
segfault). (Anatol)
|
segfault). (Anatol)
|
||||||
|
|
||||||
|
|
|
@ -1049,7 +1049,7 @@ smtp_port = 25
|
||||||
;mail.force_extra_parameters =
|
;mail.force_extra_parameters =
|
||||||
|
|
||||||
; Add X-PHP-Originating-Script: that will include uid of the script followed by the filename
|
; Add X-PHP-Originating-Script: that will include uid of the script followed by the filename
|
||||||
mail.add_x_header = On
|
mail.add_x_header = Off
|
||||||
|
|
||||||
; The path to a log file that will log all mail() calls. Log entries include
|
; The path to a log file that will log all mail() calls. Log entries include
|
||||||
; the full path of the script, line number, To address and headers.
|
; the full path of the script, line number, To address and headers.
|
||||||
|
|
|
@ -1049,7 +1049,7 @@ smtp_port = 25
|
||||||
;mail.force_extra_parameters =
|
;mail.force_extra_parameters =
|
||||||
|
|
||||||
; Add X-PHP-Originating-Script: that will include uid of the script followed by the filename
|
; Add X-PHP-Originating-Script: that will include uid of the script followed by the filename
|
||||||
mail.add_x_header = On
|
mail.add_x_header = Off
|
||||||
|
|
||||||
; The path to a log file that will log all mail() calls. Log entries include
|
; The path to a log file that will log all mail() calls. Log entries include
|
||||||
; the full path of the script, line number, To address and headers.
|
; the full path of the script, line number, To address and headers.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue