Aleksander Machniak
2015-08-12 6b31846c438dc19cca0f2a01582bdf47dff61f81
commit | author | age
48e9c1 1 <?php
T 2
3 // Enigma Plugin options
4 // --------------------
5
6 // A driver to use for PGP. Default: "gnupg".
bcedf0 7 $config['enigma_pgp_driver'] = 'gnupg';
48e9c1 8
T 9 // A driver to use for S/MIME. Default: "phpssl".
bcedf0 10 $config['enigma_smime_driver'] = 'phpssl';
48e9c1 11
T 12 // Keys directory for all users. Default 'enigma/home'.
13 // Must be writeable by PHP process
bcedf0 14 $config['enigma_pgp_homedir'] = null;
a99c34 15
765736 16 // Enables signatures verification feature.
AM 17 $config['enigma_signatures'] = true;
18
19 // Enables messages decryption feature.
20 $config['enigma_decryption'] = true;
21
a99c34 22 // Enable signing all messages by default
AM 23 $config['enigma_sign_all'] = false;
24
25 // Enable encrypting all messages by default
26 $config['enigma_encrypt_all'] = false;
765736 27
AM 28 // Default for how long to store private key passwords (in minutes).
29 // When set to 0 passwords will be stored for the whole session.
30 $config['enigma_password_time'] = 5;