From 944c4fa7a2232bc1a6b63fff83f451bea899056e Mon Sep 17 00:00:00 2001 From: Pierre Jaury Date: Sun, 29 May 2016 15:56:44 +0200 Subject: [PATCH] Use the environment secret key instead of default one --- roundcube/config.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roundcube/config.inc.php b/roundcube/config.inc.php index 075f377a..78f0c646 100644 --- a/roundcube/config.inc.php +++ b/roundcube/config.inc.php @@ -4,7 +4,7 @@ $config = array(); // Generals $config['db_dsnw'] = 'sqlite:////data/roundcube.db'; -$config['des_key'] = 'rcmail-!24ByteDESkey*Str'; +$config['des_key'] = getenv('SECRET_KEY'); $config['identities_level'] = 3; $config['reply_all_mode'] = 1;