選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

config.inc.php.dist 1.6KB

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