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