1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
From 132a807dff7fc2d173e2e3bebb18ee181c7b27d9 Mon Sep 17 00:00:00 2001
From: Remi Collet <fedora@famillecollet.com>
Date: Mon, 28 Dec 2015 08:47:37 +0100
Subject: [PATCH 1/2] add .log suffix to all log file names
---
program/lib/Roundcube/rcube.php | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/program/lib/Roundcube/rcube.php b/program/lib/Roundcube/rcube.php
index 3694c5c4b..ef5dcb94e 100644
--- a/program/lib/Roundcube/rcube.php
+++ b/program/lib/Roundcube/rcube.php
@@ -1246,7 +1246,7 @@ public static function write_log($name, $line)
$log_dir = RCUBE_INSTALL_PATH . 'logs';
}
- return file_put_contents("$log_dir/$name", $line, FILE_APPEND) !== false;
+ return file_put_contents("$log_dir/$name.log", $line, FILE_APPEND) !== false;
}
/**
From 6ca4eab399adad22ed93b26c5870896425631dfa Mon Sep 17 00:00:00 2001
From: Remi Collet <remi@remirepo.net>
Date: Tue, 27 Jun 2017 13:35:01 +0200
Subject: [PATCH 2/2] add 'log_file_ext' configuration option
---
config/defaults.inc.php | 3 +++
program/lib/Roundcube/rcube.php | 8 +++++++-
2 files changed, 10 insertions(+), 1 deletion(-)
diff --git a/config/defaults.inc.php b/config/defaults.inc.php
index e2db2b726..050803231 100644
--- a/config/defaults.inc.php
+++ b/config/defaults.inc.php
@@ -77,6 +77,9 @@
// set to 0 to avoid session IDs being logged.
$config['log_session_id'] = 8;
+// Default extension used for log file name
+$config['log_file_ext'] = '.log';
+
// Syslog ident string to use, if using the 'syslog' log driver.
$config['syslog_id'] = 'roundcube';
diff --git a/program/lib/Roundcube/rcube.php b/program/lib/Roundcube/rcube.php
index ef5dcb94e..401cd3f86 100644
--- a/program/lib/Roundcube/rcube.php
+++ b/program/lib/Roundcube/rcube.php
@@ -1242,11 +1242,17 @@ public static function write_log($name, $line)
}
}
+ if (self::$instance) {
+ $log_suf = self::$instance->config->get('log_file_ext', '.log');
+ } else {
+ $log_suf = '.log';
+ }
+
if (empty($log_dir)) {
$log_dir = RCUBE_INSTALL_PATH . 'logs';
}
- return file_put_contents("$log_dir/$name.log", $line, FILE_APPEND) !== false;
+ return file_put_contents("$log_dir/$name$log_suf", $line, FILE_APPEND) !== false;
}
/**
diff -up ./program/lib/Roundcube/rcube_config.php.suf ./program/lib/Roundcube/rcube_config.php
--- ./program/lib/Roundcube/rcube_config.php.suf 2018-01-15 07:32:16.149315868 +0100
+++ ./program/lib/Roundcube/rcube_config.php 2018-01-15 07:32:19.436332757 +0100
@@ -253,7 +253,7 @@ class rcube_config
ini_set('error_log', 'syslog');
}
else {
- ini_set('error_log', $this->prop['log_dir'].'/errors');
+ ini_set('error_log', $this->prop['log_dir'].'/errors.log');
}
}
|