You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

config.inc.php 1.6KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <?php
  2. // RoundCube plugin authres_status default settings
  3. //
  4. // If you wish to protect certain variables to be overriden by the user, add them to
  5. // dont_override in your main config/config.inc.php
  6. //
  7. // Set to true to enable authentication result column in message list, default false
  8. $config['enable_authres_status_column'] = true;
  9. // Set to true to use internal DKIM verifier, default false
  10. // (only when a signature sfound but no auth. results header)
  11. $config['use_fallback_verifier'] = true;
  12. // Set the statuses that should be shown
  13. //
  14. // Available statuses:
  15. // STATUS_NOSIG -> Show an icon for emails without a signature
  16. // STATUS_NORES -> Show an icon for emails with a signature but no authentication results header
  17. // STATUS_PASS -> Show an icon if all signatures have passed validation
  18. // STATUS_PARS -> Show an icon if at least one signature passed validation
  19. // STATUS_THIRD -> Show an icon for third party signatures
  20. // STATUS_WARN -> Show an icon when the signature temporary failed
  21. // STATUS_FAIL -> Show an icon when the signature permanently failed
  22. // STATUS_ALL -> Show an icon for all statuses
  23. //
  24. // statuses should be prefixed by 'authres_status::'
  25. //
  26. // default value: authres_status::STATUS_ALL & ~authres_status::STATUS_NOSIG
  27. //
  28. //$config['show_statuses'] = authres_status::STATUS_ALL & ~authres_status::STATUS_NOSIG;
  29. $config['dont_override'][] = 'trusted_mtas';
  30. $config['dont_override'][] = 'use_fallback_verifier';
  31. $config['dont_override'][] = 'show_statuses';
  32. $config['dont_override'][] = 'enable_authres_status_column';
  33. //$config['trusted_mtas'] = array('mail.example.com');