【问题标题】:Location of settings file for RoundcubeRoundcube 设置文件的位置
【发布时间】:2020-07-22 15:23:13
【问题描述】:

有人能告诉我这些设置(webmail/roundcube)保存到文件中的位置吗? 谢谢! check this link please https://i.stack.imgur.com/j6as3.jpg

【问题讨论】:

    标签: webmail roundcube


    【解决方案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 值。

    【讨论】:

      猜你喜欢
      • 2017-05-14
      • 1970-01-01
      • 2012-09-28
      • 2012-01-27
      • 2013-05-10
      • 2014-03-06
      • 2015-06-05
      • 2021-02-22
      • 2021-10-15
      相关资源
      最近更新 更多