45 lines
1.2 KiB
PHP
45 lines
1.2 KiB
PHP
<?php
|
|
// Name your service. This is displayed on the login screen and in the window title
|
|
$config['product_name'] = 'MultiBox Webmail';
|
|
|
|
// This key is used to encrypt the users imap password which is stored
|
|
// in the session record. For the default cipher method it must be
|
|
// exactly 24 characters long.
|
|
// YOUR KEY MUST BE DIFFERENT THAN THE SAMPLE VALUE FOR SECURITY REASONS
|
|
$config['des_key'] = 'jybvdIgYeTxiEx61YQ5VUkm0';
|
|
|
|
|
|
// ----------------------------------
|
|
// USER INTERFACE
|
|
// ----------------------------------
|
|
|
|
// the default locale setting (leave empty for auto-detection)
|
|
// RFC1766 formatted language name like en_US, de_DE, de_CH, fr_FR, pt_BR
|
|
$config['language'] = 'en_GB';
|
|
|
|
// use this format for date display (date or strftime format)
|
|
$config['date_format'] = 'd.m.Y';
|
|
|
|
$config['license_key'] = 'RCP-zxM5wAi4xnpx';
|
|
|
|
// List of active plugins (in plugins/ directory)
|
|
$config['plugins'] = [
|
|
'xskin',
|
|
'archive',
|
|
'zipdownload',
|
|
'http_authentication',
|
|
'managesieve',
|
|
'markasjunk',
|
|
'new_user_dialog',
|
|
'new_user_identity',
|
|
'newmail_notifier',
|
|
'enigma',
|
|
'contextmenu',
|
|
'automatic_addressbook',
|
|
'carddav',
|
|
'message_highlight',
|
|
];
|
|
|
|
// skin name: folder from skins/
|
|
$config['skin'] = 'litecube-f';
|