mirror of
https://github.com/roundcube/roundcubemail.git
synced 2026-03-03 14:54:01 +01:00
34 lines
645 B
PHP
34 lines
645 B
PHP
<?php
|
|
|
|
$config = [];
|
|
|
|
// Database configuration
|
|
$config['db_dsnw'] = 'sqlite:////tmp/sqlite.db?mode=0646';
|
|
|
|
// Test user credentials
|
|
$config['tests_username'] = 'test';
|
|
$config['tests_password'] = 'test';
|
|
|
|
// GreenMail
|
|
$config['smtp_port'] = 25;
|
|
|
|
// Settings required by the tests
|
|
|
|
$config['create_default_folders'] = true;
|
|
$config['skin'] = 'elastic';
|
|
$config['support_url'] = 'http://support.url';
|
|
|
|
// Plugins with tests
|
|
|
|
$config['plugins'] = [
|
|
'archive',
|
|
'attachment_reminder',
|
|
'markasjunk',
|
|
'zipdownload'
|
|
];
|
|
|
|
$config['archive_mbox'] = 'Archive';
|
|
|
|
$config['enable_spellcheck'] = true;
|
|
$config['spellcheck_engine'] = 'pspell';
|