/etc/horde/ingo/prefs.php is in php-horde-ingo 3.1.3-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 | <?php
/**
* See horde/config/prefs.php for documentation on the structure of this file.
*
* IMPORTANT: DO NOT EDIT THIS FILE!
* Local overrides MUST be placed in prefs.local.php or prefs.d/.
* If the 'vhosts' setting has been enabled in Horde's configuration, you can
* use prefs-servername.php.
*/
// This preference group will only be displayed if the configured script
// driver can create script files.
$prefGroups['script'] = array(
'column' => _("Other Preferences"),
'label' => _("Script Updating"),
'desc' => _("Preferences about script updating."),
'members' => array('auto_update'),
'suppress' => function() {
return !$GLOBALS['injector']->getInstance('Ingo_Factory_Script')
->hasFeature('script_file');
}
);
// Automatically update the script?
$_prefs['auto_update'] = array(
'value' => 1,
'locked' => false,
'type' => 'checkbox',
'desc' => _("Automatically activate the script after each change?")
);
// End script preferences
// The following preferences are only used for script drivers that can do
// on-demand filtering.
// Show detailed filter status messages?
// a value of 0 = no, 1 = yes
$_prefs['show_filter_msg'] = array(
'value' => 1,
'locked' => false,
'type' => 'implicit'
);
// Only filter [un]seen messages?
// Values: 0, Ingo::FILTER_UNSEEN, Ingo::FILTER_SEEN
$_prefs['filter_seen'] = array(
'value' => 0,
'locked' => false,
'type' => 'implicit'
);
// End on-demand filtering preferences
// The following preference are only used if using the 'prefs' storage driver.
// Filter rules.
$_prefs['rules'] = array(
'value' => 'a:5:{i:0;a:2:{s:4:"name";s:9:"Whitelist";s:6:"action";i:' . Ingo_Storage::ACTION_WHITELIST . ';}i:1;a:3:{s:4:"name";s:8:"Vacation";s:6:"action";i:' . Ingo_Storage::ACTION_VACATION . ';s:7:"disable";b:1;}i:2;a:2:{s:4:"name";s:9:"Blacklist";s:6:"action";i:' . Ingo_Storage::ACTION_BLACKLIST . ';}i:3;a:3:{s:4:"name";s:11:"Spam Filter";s:6:"action";i:' . Ingo_Storage::ACTION_SPAM . ';s:7:"disable";b:1;}i:4;a:2:{s:4:"name";s:7:"Forward";s:6:"action";i:' . Ingo_Storage::ACTION_FORWARD . ';}}',
'locked' => false,
'type' => 'implicit'
);
// Blacklist.
$_prefs['blacklist'] = array(
'value' => 'a:2:{s:1:"a";a:0:{}s:1:"f";s:0:"";}',
// Lock this preference to disable blacklists.
'locked' => false,
'type' => 'implicit'
);
// Whitelist.
$_prefs['whitelist'] = array(
'value' => 'a:0:{}',
// Lock this preference to disable whitelists.
'locked' => false,
'type' => 'implicit'
);
// Vacation notices.
$_prefs['vacation'] = array(
'value' => 'a:8:{s:9:"addresses";a:0:{}s:4:"days";i:7;s:8:"excludes";a:0:{}s:10:"ignorelist";b:1;s:6:"reason";s:0:"";s:7:"subject";s:0:"";s:5:"start";i:0;s:3:"end";i:0;}',
// Lock this preference to disable vacation notices.
'locked' => false,
'type' => 'implicit'
);
// Forwarding.
$_prefs['forward'] = array(
'value' => 'a:2:{s:1:"a";a:0:{}s:1:"k";i:0;}',
// Lock this preference to disable forwarding.
'locked' => false,
'type' => 'implicit'
);
// Spam rule.
$_prefs['spam'] = array(
'value' => 'a:2:{s:6:"folder";N;s:5:"level";i:5;}',
// Lock this preference to disable the spam rule.
'locked' => false,
'type' => 'implicit'
);
// End preferences storage driver entries
|