Roundcube 设置文件的位置

问题描述 投票:0回答:2

有人可以告诉我这些设置(webmail/roundcube)保存在文件中吗? 谢谢你! 请检查此链接 https://i.sstatic.net/j6as3.jpg

webmail roundcube
2个回答
1
投票

您可以在 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 值。


0
投票

这实际上并不是回答所提出的问题; 人们对 roundcube 配置的问题是它有一个变量 RCUBE_CONFIG_DIR ,它确定从哪里读取 config.inc.php 。但是在任何安装说明中都没有明确设置该变量。应该是 Nr 1 指令:我的配置位于哪里?

不知道是谁写的这些 roundcube 文档,但实际上,你能让它变得多么混乱?特别是因为有 roundcube 的软件包安装程序、roundcube 的控制面板安装程序,再加上人们使用的 github 主源,并且它们都通过不同的教程和操作方法混合在一起。

© www.soinside.com 2019 - 2024. All rights reserved.