首页 > 解决方案 > Roundcube 设置文件的位置

问题描述

有人可以告诉我这些设置(webmail/roundcube)保存到文件中的位置吗?谢谢! 请检查此链接 https://i.stack.imgur.com/j6as3.jpg

标签: webmailroundcube

解决方案


您可以在 Roundcube Web 目录 > config/defaults.inc.php 中找到设置

参考链接: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');

但是,操作default.inc.php文件并不是一个好主意,您可以复制config.inc.php页面中的代码来覆盖 default.inc.php 值。


推荐阅读