Reputation: 31
Where are webmail/roundcube settings saved into a file?
Upvotes: 1
Views: 3642
Reputation: 1499
The RCUBE_CONFIG_DIR
variable determines where the RoundCube config file, config.inc.php, is read from.
Upvotes: 0
Reputation: 95
You can find the settings in Roundcube Web directory > config/defaults.inc.php
Ref Link : RoundcubeMail Github
// Interface layout. Default: 'widescreen'.
// 'widescreen' - three columns
// 'desktop' - two columns, preview on bottom
// 'list' - two columns, no preview
$config['layout'] = 'widescreen';
// default messages sort column. Use empty value for default server's sorting,
// or 'arrival', 'date', 'subject', 'from', 'to', 'fromto', 'size', 'cc'
$config['message_sort_col'] = '';
// default messages sort order
$config['message_sort_order'] = 'DESC';
// These cols are shown in the message list. Available cols are:
// subject, from, to, fromto, cc, replyto, date, size, status, flag, attachment, priority
$config['list_cols'] = array('subject', 'status', 'fromto', 'date', 'size', 'flag', 'attachment');
But, it is not good idea to manipulate the default.inc.php file, rather you can copy the code in config.inc.php page which overrides the default.inc.php values.
Upvotes: 1