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.dist 1.5KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <?php
  2. // Help content iframe source
  3. // %l will be replaced by the language code resolved using the 'help_language_map' option
  4. $config['help_source'] = 'http://docs.roundcube.net/doc/help/1.0/%l/';
  5. // Map task/action combinations to deep-links
  6. // Use '<task>/<action>' or only '<task>' strings as keys
  7. // The values will be appended to the 'help_source' URL
  8. $config['help_index_map'] = array(
  9. 'login' => 'login.html',
  10. 'mail' => 'mail/index.html',
  11. 'mail/compose' => 'mail/compose.html',
  12. 'addressbook' => 'addressbook/index.html',
  13. 'settings' => 'settings/index.html',
  14. 'settings/preferences' => 'settings/preferences.html',
  15. 'settings/folders' => 'settings/folders.html',
  16. 'settings/identities' => 'settings/identities.html',
  17. );
  18. // Map to translate Roundcube language codes into help document languages
  19. // The '*' entry will be used as default
  20. $config['help_language_map'] = array('*' => 'en_US');
  21. // Enter an absolute URL to a page displaying information about this webmail
  22. // Alternatively, create a HTML file under <this-plugin-dir>/content/about.html
  23. $config['help_about_url'] = null;
  24. // Enter an absolute URL to a page displaying information about this webmail
  25. // Alternatively, put your license text to <this-plugin-dir>/content/license.html
  26. $config['help_license_url'] = null;
  27. // Determine whether to open the help in a new window
  28. $config['help_open_extwin'] = false;
  29. // URL to additional information about CSRF protection
  30. $config['help_csrf_info'] = null;