|
25 | 25 |
|
26 | 26 | // Database connection string (DSN) for read+write operations |
27 | 27 | // Format (compatible with PEAR MDB2): db_provider://user:password@host/database |
| 28 | +<<<<<<< HEAD |
28 | 29 | // Currently supported db_providers: mysql, pgsql, sqlite, mssql, sqlsrv, oracle |
29 | 30 | // For examples see http://pear.php.net/manual/en/package.database.mdb2.intro-dsn.php |
| 31 | +======= |
| 32 | +// Currently supported db_providers: mysql, pgsql, sqlite |
| 33 | +// For examples see https://pear.php.net/manual/en/package.database.mdb2.intro-dsn.php |
| 34 | +>>>>>>> ccede1f27 (Update links in comments and config to https where available (#9759)) |
30 | 35 | // Note: for SQLite use absolute path (Linux): 'sqlite:////full/path/to/sqlite.db?mode=0646' |
31 | 36 | // or (Windows): 'sqlite:///C:/full/path/to/sqlite.db' |
32 | 37 | // Note: Various drivers support various additional arguments for connection, |
|
44 | 49 |
|
45 | 50 | // use persistent db-connections |
46 | 51 | // beware this will not "always" work as expected |
47 | | -// see: http://www.php.net/manual/en/features.persistent-connections.php |
| 52 | +// see: https://www.php.net/manual/en/features.persistent-connections.php |
48 | 53 | $config['db_persistent'] = false; |
49 | 54 |
|
50 | 55 | // you can define specific table (and sequence) names prefix |
|
75 | 80 | $config['log_driver'] = 'file'; |
76 | 81 |
|
77 | 82 | // date format for log entries |
78 | | -// (read http://php.net/manual/en/function.date.php for all format characters) |
| 83 | +// (read https://php.net/manual/en/function.date.php for all format characters) |
79 | 84 | $config['log_date_format'] = 'd-M-Y H:i:s O'; |
80 | 85 |
|
81 | 86 | // length of the session ID to prepend each log line with |
|
89 | 94 | $config['syslog_id'] = 'roundcube'; |
90 | 95 |
|
91 | 96 | // Syslog facility to use, if using the 'syslog' log driver. |
| 97 | +<<<<<<< HEAD |
92 | 98 | // For possible values see installer or http://php.net/manual/en/function.openlog.php |
93 | 99 | $config['syslog_facility'] = LOG_USER; |
| 100 | +======= |
| 101 | +// For possible values see installer or https://php.net/manual/en/function.openlog.php |
| 102 | +$config['syslog_facility'] = \LOG_USER; |
| 103 | +>>>>>>> ccede1f27 (Update links in comments and config to https where available (#9759)) |
94 | 104 |
|
95 | 105 | // Activate this option if logs should be written to per-user directories. |
96 | 106 | // Data will only be logged if a directory <log_dir>/<username>/ exists and is writable. |
|
153 | 163 | $config['imap_auth_type'] = null; |
154 | 164 |
|
155 | 165 | // IMAP socket context options |
156 | | -// See http://php.net/manual/en/context.ssl.php |
| 166 | +// See https://php.net/manual/en/context.ssl.php |
157 | 167 | // The example below enables server certificate validation |
| 168 | +<<<<<<< HEAD |
158 | 169 | //$config['imap_conn_options'] = [ |
159 | 170 | // 'ssl' => [ |
160 | 171 | // 'verify_peer' => true, |
161 | 172 | // 'verify_depth' => 3, |
162 | 173 | // 'cafile' => '/etc/openssl/certs/ca.crt', |
163 | 174 | // ], |
| 175 | +======= |
| 176 | +// |
| 177 | +// proxy_protocol is used to inject HAproxy style headers in the TCP stream |
| 178 | +// See https://www.haproxy.org/download/1.6/doc/proxy-protocol.txt |
| 179 | +// WARNING: Please note this is currently incompatible with implicit ssl, |
| 180 | +// since the proxy protocol preamble is expected before the ssl handshake. |
| 181 | +// $config['imap_conn_options'] = [ |
| 182 | +// 'ssl' => [ |
| 183 | +// 'verify_peer' => true, |
| 184 | +// 'verify_depth' => 3, |
| 185 | +// 'cafile' => '/etc/openssl/certs/ca.crt', |
| 186 | +// ], |
| 187 | +// 'proxy_protocol' => 1 | 2 | [ // required (either version number (1|2) or array with 'version' key) |
| 188 | +// 'version' => 1 | 2, // required, if array |
| 189 | +// 'remote_addr' => $_SERVER['REMOTE_ADDR'], // optional |
| 190 | +// 'remote_port' => $_SERVER['REMOTE_PORT'], // optional |
| 191 | +// 'local_addr' => $_SERVER['SERVER_ADDR'], // optional |
| 192 | +// 'local_port' => $_SERVER['SERVER_PORT'], // optional |
| 193 | +// ], |
| 194 | +>>>>>>> ccede1f27 (Update links in comments and config to https where available (#9759)) |
164 | 195 | // ]; |
165 | 196 | // Note: These can be also specified as an array of options indexed by hostname |
166 | 197 | $config['imap_conn_options'] = null; |
|
307 | 338 | $config['smtp_timeout'] = 0; |
308 | 339 |
|
309 | 340 | // SMTP socket context options |
310 | | -// See http://php.net/manual/en/context.ssl.php |
| 341 | +// See https://php.net/manual/en/context.ssl.php |
311 | 342 | // The example below enables server certificate validation, and |
312 | 343 | // requires 'smtp_timeout' to be non zero. |
313 | 344 | // $config['smtp_conn_options'] = [ |
|
347 | 378 | $config['oauth_identity_uri'] = null; |
348 | 379 |
|
349 | 380 | // Optional: disable SSL certificate check on HTTP requests to OAuth server |
350 | | -// See http://docs.guzzlephp.org/en/stable/request-options.html#verify for possible values |
| 381 | +// See https://docs.guzzlephp.org/en/stable/request-options.html#verify for possible values |
351 | 382 | $config['oauth_verify_peer'] = true; |
352 | 383 |
|
353 | 384 | // Mandatory: OAuth scopes to request (space-separated string) |
|
426 | 457 | $config['memcache_hosts'] = null; |
427 | 458 |
|
428 | 459 | // Controls the use of a persistent connections to memcache servers |
429 | | -// See http://php.net/manual/en/memcache.addserver.php |
| 460 | +// See https://php.net/manual/en/memcache.addserver.php |
430 | 461 | $config['memcache_pconnect'] = true; |
431 | 462 |
|
432 | 463 | // Value in seconds which will be used for connecting to the daemon |
433 | | -// See http://php.net/manual/en/memcache.addserver.php |
| 464 | +// See https://php.net/manual/en/memcache.addserver.php |
434 | 465 | $config['memcache_timeout'] = 1; |
435 | 466 |
|
436 | 467 | // Controls how often a failed server will be retried (value in seconds). |
437 | 468 | // Setting this parameter to -1 disables automatic retry. |
438 | | -// See http://php.net/manual/en/memcache.addserver.php |
| 469 | +// See https://php.net/manual/en/memcache.addserver.php |
439 | 470 | $config['memcache_retry_interval'] = 15; |
440 | 471 |
|
441 | 472 | // Use these hosts for accessing Redis. |
|
777 | 808 | // Absolute path to a local mime.types mapping table file. |
778 | 809 | // This is used to derive mime-types from the filename extension or vice versa. |
779 | 810 | // Such a file is usually part of the apache webserver. If you don't find a file named mime.types on your system, |
780 | | -// download it from http://svn.apache.org/repos/asf/httpd/httpd/trunk/docs/conf/mime.types |
| 811 | +// download it from https://svn.apache.org/repos/asf/httpd/httpd/trunk/docs/conf/mime.types |
781 | 812 | $config['mime_types'] = null; |
782 | 813 |
|
783 | 814 | // path to imagemagick identify binary (if not set we'll use Imagick or GD extensions) |
|
942 | 973 | // - 'googie' - the default (also used for connecting to Nox Spell Server, see 'spellcheck_uri' setting) |
943 | 974 | // - 'pspell' - requires the PHP Pspell module and aspell installed |
944 | 975 | // - 'enchant' - requires the PHP Enchant module |
945 | | -// - 'atd' - install your own After the Deadline server or check with the people at http://www.afterthedeadline.com before using their API |
| 976 | +// - 'atd' - install your own After the Deadline server or check with the people at https://www.afterthedeadline.com before using their API |
946 | 977 | // Since Google shut down their public spell checking service, the default settings |
947 | | -// connect to http://spell.roundcube.net which is a hosted service provided by Roundcube. |
| 978 | +// connect to https://spell.roundcube.net which is a hosted service provided by Roundcube. |
948 | 979 | // You can connect to any other googie-compliant service by setting 'spellcheck_uri' accordingly. |
949 | 980 | $config['spellcheck_engine'] = 'googie'; |
950 | 981 |
|
951 | 982 | // For locally installed Nox Spell Server or After the Deadline services, |
952 | 983 | // please specify the URI to call it. |
953 | 984 | // Get Nox Spell Server from http://orangoo.com/labs/?page_id=72 or |
954 | | -// the After the Deadline package from http://www.afterthedeadline.com. |
| 985 | +// the After the Deadline package from https://www.afterthedeadline.com. |
955 | 986 | // Leave empty to use the public API of service.afterthedeadline.com |
956 | 987 | $config['spellcheck_uri'] = ''; |
957 | 988 |
|
|
0 commit comments