From 191396db174a3642e6e4df3e5017fc14d6c8a649 Mon Sep 17 00:00:00 2001 From: Zbigniew Szmyd Date: Fri, 30 Sep 2016 21:42:06 +0200 Subject: [PATCH] The error log is redirected to logs/ldap_ppolicy.err --- plugins/password/drivers/ldap_ppolicy.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/password/drivers/ldap_ppolicy.php b/plugins/password/drivers/ldap_ppolicy.php index b926734af..0b2b02282 100644 --- a/plugins/password/drivers/ldap_ppolicy.php +++ b/plugins/password/drivers/ldap_ppolicy.php @@ -31,7 +31,7 @@ class rcube_ldap_ppolicy_password $descriptorspec = array( 0 => array("pipe", "r"), // stdin is a pipe that the child will read from 1 => array("pipe", "w"), // stdout is a pipe that the child will write to - 2 => array("file", "/tmp/ppolicy_ldap.err", "a") // stderr is a file to write to + 2 => array("file", "logs/ldap_ppolicy.err", "a") // stderr is a file to write to ); $cwd = 'plugins/password/drivers/';