| | |
| | | // A driver to use for S/MIME. Default: "phpssl". |
| | | $config['enigma_smime_driver'] = 'phpssl'; |
| | | |
| | | // Enables logging of enigma operations (including Crypt_GPG debug info) |
| | | $config['enigma_debug'] = false; |
| | | |
| | | // Keys directory for all users. Default 'enigma/home'. |
| | | // Must be writeable by PHP process |
| | | $config['enigma_pgp_homedir'] = null; |
| | |
| | | // To solve that a hardware entropy generator or |
| | | // an entropy gathering daemon may be installed (e.g. randomsound). |
| | | $config['enigma_keygen_server'] = false; |
| | | |
| | | // With this option you can lock composing options |
| | | // of the plugin forcing the user to use configured settings. |
| | | // The array accepts: 'sign', 'encrypt', 'pubkey'. |
| | | // |
| | | // For example, to force your users to sign every email, |
| | | // you should set: |
| | | // - enigma_sign_all = true |
| | | // - enigma_options_lock = array('sign') |
| | | // - dont_override = array('enigma_sign_all') |
| | | $config['enigma_options_lock'] = array(); |