Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

config.inc.php.dist 2.0KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <?php
  2. // Enigma Plugin options
  3. // --------------------
  4. // A driver to use for PGP. Default: "gnupg".
  5. $config['enigma_pgp_driver'] = 'gnupg';
  6. // A driver to use for S/MIME. Default: "phpssl".
  7. $config['enigma_smime_driver'] = 'phpssl';
  8. // Enables logging of enigma operations (including Crypt_GPG debug info)
  9. $config['enigma_debug'] = false;
  10. // Keys directory for all users. Default 'enigma/home'.
  11. // Must be writeable by PHP process
  12. $config['enigma_pgp_homedir'] = null;
  13. // Location of gpg binary. By default it will be auto-detected.
  14. // This is also a way to force gpg2 use if there are both 1.x and 2.x on the system.
  15. $config['enigma_pgp_binary'] = '';
  16. // Location of gpg-agent binary. By default it will be auto-detected.
  17. // It's used with GnuPG 2.x.
  18. $config['enigma_pgp_agent'] = '';
  19. // Location of gpgconf binary. By default it will be auto-detected.
  20. // It's used with GnuPG >= 2.1.
  21. $config['enigma_pgp_gpgconf'] = '';
  22. // Enables signatures verification feature.
  23. $config['enigma_signatures'] = true;
  24. // Enables messages decryption feature.
  25. $config['enigma_decryption'] = true;
  26. // Enables messages encryption and signing feature.
  27. $config['enigma_encryption'] = true;
  28. // Enable signing all messages by default
  29. $config['enigma_sign_all'] = false;
  30. // Enable encrypting all messages by default
  31. $config['enigma_encrypt_all'] = false;
  32. // Enable attaching a public key to all messages by default
  33. $config['enigma_attach_pubkey'] = false;
  34. // Default for how long to store private key passwords (in minutes).
  35. // When set to 0 passwords will be stored for the whole session.
  36. $config['enigma_password_time'] = 5;
  37. // With this option you can lock composing options
  38. // of the plugin forcing the user to use configured settings.
  39. // The array accepts: 'sign', 'encrypt', 'pubkey'.
  40. //
  41. // For example, to force your users to sign every email,
  42. // you should set:
  43. // - enigma_sign_all = true
  44. // - enigma_options_lock = array('sign')
  45. // - dont_override = array('enigma_sign_all')
  46. $config['enigma_options_lock'] = array();