From 1ad5db219b4e3c8e919546a497cf64236a31c214 Mon Sep 17 00:00:00 2001 From: Jerome Jutteau Date: Wed, 31 Jul 2013 06:30:57 +0000 Subject: [PATCH] Disable encryption by default --- lib/config.original.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/config.original.php b/lib/config.original.php index a2c3fa0..a867268 100644 --- a/lib/config.original.php +++ b/lib/config.original.php @@ -47,9 +47,9 @@ $cfg['download_page'] = false; The scripting interface can propose to create, read, write, delete blocks of data. */ $cfg['enable_blocks'] = false; -/* Encryption feature. enabled by default (if possible). - * By disabling it, file-level deduplication will be effective. */ -$cfg['enable_crypt'] = true; +/* Encryption feature. disable it by default. + * By enabling it, file-level deduplication won't work. */ +$cfg['enable_crypt'] = false; /* Split lenght of link refenrece. */ $cfg['link_name_lenght'] = 8; -- 2.34.1