mirror of
https://github.com/roundcube/roundcubemail.git
synced 2025-12-28 07:55:07 +00:00
CS fixes in .php.dist files
This commit is contained in:
parent
622cc8d555
commit
77ae91f213
@ -2,6 +2,7 @@
|
||||
|
||||
$finder = PhpCsFixer\Finder::create()
|
||||
->in([__DIR__])
|
||||
->name('*.php.dist')
|
||||
->exclude(['vendor']);
|
||||
|
||||
return (new PhpCsFixer\Config())
|
||||
|
||||
@ -2,7 +2,7 @@
|
||||
|
||||
// Default look of access rights table
|
||||
// In advanced mode all access rights are displayed separately
|
||||
// In simple mode access rights are grouped into four groups: read, write, delete, full
|
||||
// In simple mode access rights are grouped into four groups: read, write, delete, full
|
||||
$config['acl_advanced_mode'] = false;
|
||||
|
||||
// LDAP addressbook that would be searched for user names autocomplete.
|
||||
|
||||
@ -10,5 +10,3 @@
|
||||
|
||||
// To remove (e.g. X-Sender) message header use null value
|
||||
// $config['additional_message_headers']['X-Sender'] = null;
|
||||
|
||||
?>
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
<?php
|
||||
|
||||
// if you want to load localization strings for specific sub-libraries of jquery-ui, configure them here
|
||||
// if you want to load localization strings for specific sub-libraries of jquery-ui, configure them here
|
||||
$config['jquery_ui_i18n'] = ['datepicker'];
|
||||
|
||||
// map Roundcube skins with jquery-ui themes here
|
||||
|
||||
@ -153,7 +153,7 @@ $config['markasjunk_amacube_config'] = '../amacube/config.inc.php';
|
||||
// TEST CAREFULLY BEFORE USE ON REAL MESSAGES
|
||||
$config['markasjunk_spam_patterns'] = [
|
||||
'patterns' => [],
|
||||
'replacements' => []
|
||||
'replacements' => [],
|
||||
];
|
||||
|
||||
// Patterns to match and replace headers for spam messages
|
||||
@ -163,5 +163,5 @@ $config['markasjunk_spam_patterns'] = [
|
||||
// TEST CAREFULLY BEFORE USE ON REAL MESSAGES
|
||||
$config['markasjunk_ham_patterns'] = [
|
||||
'patterns' => [],
|
||||
'replacements' => []
|
||||
'replacements' => [],
|
||||
];
|
||||
|
||||
@ -408,7 +408,7 @@ $config['hmailserver_remote_dcom'] = false;
|
||||
$config['hmailserver_server'] = [
|
||||
'Server' => 'localhost', // hostname or ip address
|
||||
'Username' => 'administrator', // windows username
|
||||
'Password' => 'password' // windows user password
|
||||
'Password' => 'password', // windows user password
|
||||
];
|
||||
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user