File: debianize-config.patch

package info (click to toggle)
roundcube 1.6.11%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 44,868 kB
  • sloc: javascript: 195,588; php: 76,818; sql: 3,150; sh: 2,882; pascal: 1,079; makefile: 234; xml: 93; perl: 73; ansic: 48; python: 21
file content (36 lines) | stat: -rw-r--r-- 1,191 bytes parent folder | download | duplicates (3)
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
From: Sandro Knauß <bugs@sandroknauss.de>
Date: Mon, 9 May 2016 23:45:20 +0200
Subject: Debianize sample config file

  * By default we do not have any plugins available (these are in
    roundcube-plugins).
  * Disable spellchecking, because it needs recommended packages.

Forwarded: not-needed
---
 config/config.inc.php.sample | 10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)

diff --git a/config/config.inc.php.sample b/config/config.inc.php.sample
index cc7d6f4..b460d1f 100644
--- a/config/config.inc.php.sample
+++ b/config/config.inc.php.sample
@@ -52,10 +52,16 @@ $config['product_name'] = 'Roundcube Webmail';
 $config['des_key'] = 'rcmail-!24ByteDESkey*Str';
 
 // List of active plugins (in plugins/ directory)
+// Debian: install roundcube-plugins first to have any
 $config['plugins'] = [
-    'archive',
-    'zipdownload',
+    // 'archive',
+    // 'zipdownload',
 ];
 
 // skin name: folder from skins/
 $config['skin'] = 'elastic';
+
+// Disable spellchecking
+// Debian: spellchecking needs additional packages to be installed, or calling external APIs
+//         see defaults.inc.php for additional informations
+$config['enable_spellcheck'] = false;