//200prefs
// If NOT using the 'prefs' storage driver (see conf.php), you can comment out
// the below entries.

// 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:2:\{s:4:"name";s:7:"Forward";s:6:"action";i:' . INGO_STORAGE_ACTION_FORWARD . ';\}\}',
    'locked' => false,
    'shared' => false,
    'type' => 'implicit'
);
  
// Blacklist.
// Lock this preference to disable blacklists.
$_prefs['blacklist'] = array(
    'value' => 'a:2:\{s:1:"a";a:0:\{\}s:1:"f";s:0:"";\}',
    'locked' => false,
    'shared' => false,
    'type' => 'implicit'
);
  
// Whitelist.
// Lock this preference to disable whitelists.
$_prefs['whitelist'] = array(
    'value' => 'a:0:\{\}',
    'locked' => false,  
    'shared' => false,  
    'type' => 'implicit'
);
  
// Vacation notices.
// Lock this preference to disable 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:"";\}',
    'locked' => false,
    'shared' => false,
    'type' => 'implicit'
);
  
// Forwarding.
// Lock this preference to disable forwarding.
$_prefs['forward'] = array(
    'value' => 'a:2:\{s:1:"a";a:0:\{\}s:1:"k";i:0;\}',
    'locked' => false,
    'shared' => false,
    'type' => 'implicit'
);
  
// Spam rule.
// Lock this preference to disable the spam rule.
$_prefs['spam'] = array(
    'value' => 'a:2:\{s:6:"folder";N;s:5:"level";i:5;\}',
    'locked' => false,
    'shared' => false,
    'type' => 'implicit'
);

