Skip to content

Commit fd0077b

Browse files
committed
Merge branch 'PHP-7.1' into PHP-7.2
* PHP-7.1: add imap.enable_insecure_rsh in php.ini
2 parents 290671e + 4288674 commit fd0077b

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
@@ -968,6 +968,13 @@ cli_server.color = On
968968
; otherwise output encoding conversion cannot be performed.
969969
;iconv.output_encoding =
970970

971+
[imap]
972+
; rsh/ssh logins are disabled by default. Use this INI entry if you want to
973+
; enable them. Note that the IMAP library does not filter mailbox names before
974+
; passing them to rsh/ssh command, thus passing untrusted data to this function
975+
; with rsh/ssh enabled is insecure.
976+
;imap.enable_insecure_rsh=0
977+
971978
[intl]
972979
;intl.default_locale =
973980
; 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
@@ -975,6 +975,13 @@ cli_server.color = On
975975
; otherwise output encoding conversion cannot be performed.
976976
;iconv.output_encoding =
977977

978+
[imap]
979+
; rsh/ssh logins are disabled by default. Use this INI entry if you want to
980+
; enable them. Note that the IMAP library does not filter mailbox names before
981+
; passing them to rsh/ssh command, thus passing untrusted data to this function
982+
; with rsh/ssh enabled is insecure.
983+
;imap.enable_insecure_rsh=0
984+
978985
[intl]
979986
;intl.default_locale =
980987
; This directive allows you to produce PHP errors when some error

0 commit comments

Comments
 (0)