【发布时间】:2020-07-22 15:23:13
【问题描述】:
有人能告诉我这些设置(webmail/roundcube)保存到文件中的位置吗? 谢谢! check this link please https://i.stack.imgur.com/j6as3.jpg
【问题讨论】:
有人能告诉我这些设置(webmail/roundcube)保存到文件中的位置吗? 谢谢! check this link please https://i.stack.imgur.com/j6as3.jpg
【问题讨论】:
您可以在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 值。
【讨论】: