Skip to content

Commit cb3a1df

Browse files
committed
Merge branch 'PHP-7.2' into PHP-7.3
* PHP-7.2: add imap.enable_insecure_rsh in php.ini
2 parents a5991a2 + fd0077b commit cb3a1df

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed

php.ini-development

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -986,6 +986,13 @@ cli_server.color = On
986986
; otherwise output encoding conversion cannot be performed.
987987
;iconv.output_encoding =
988988

989+
[imap]
990+
; rsh/ssh logins are disabled by default. Use this INI entry if you want to
991+
; enable them. Note that the IMAP library does not filter mailbox names before
992+
; passing them to rsh/ssh command, thus passing untrusted data to this function
993+
; with rsh/ssh enabled is insecure.
994+
;imap.enable_insecure_rsh=0
995+
989996
[intl]
990997
;intl.default_locale =
991998
; This directive allows you to produce PHP errors when some error

php.ini-production

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -993,6 +993,13 @@ cli_server.color = On
993993
; otherwise output encoding conversion cannot be performed.
994994
;iconv.output_encoding =
995995

996+
[imap]
997+
; rsh/ssh logins are disabled by default. Use this INI entry if you want to
998+
; enable them. Note that the IMAP library does not filter mailbox names before
999+
; passing them to rsh/ssh command, thus passing untrusted data to this function
1000+
; with rsh/ssh enabled is insecure.
1001+
;imap.enable_insecure_rsh=0
1002+
9961003
[intl]
9971004
;intl.default_locale =
9981005
; This directive allows you to produce PHP errors when some error

0 commit comments

Comments
 (0)