您现在的位置是:首页 > 折腾心得折腾心得

iredmail roundcube安装全局通讯录插件

高晓波2023-02-14【折腾心得】人已围观

简介此前我们搭建了iredmail邮件服务器,webmail使用的是roundcube,本篇我们为roundcube安装全局联系人管理插件。

1、下载插件


插件介绍:https://plugins.roundcube.net/#/packages/johndoh/globaladdressbook

当前最新稳定版是2.1,下载地址:https://github.com/johndoh/roundcube-globaladdressbook/archive/refs/tags/2.1.tar.gz
 
wget https://github.com/johndoh/roundcube-globaladdressbook/archive/refs/tags/2.1.tar.gz

2、解压

tar -zxvf 2.1.tar.gz 

3、安装

将解压后的文件夹复制到roundcube安装目录的plugins目录下

mv /usr/local/src/roundcube-globaladdressbook-2.1/ /opt/www/roundcubemail/plugins/globaladdressbook

修改roundcube配置文件,启用插件
vi /opt/www/roundcubemail/config/config.inc.php
//将globaladdressbook添加至插件配置中
$config['plugins'] = array('managesieve', 'password', 'zipdownload','globaladdressbook');

4、修改globaladdressbook配置

 
vi /opt/www/roundcubemail/plugins/globaladdressbook/config.inc.php

 

//通讯录显示名称
'name' => 'xxxxx有限公司',


'user' => 'global_addressbook@%d',

//管理员账户
'admin' => 'admin@gaoxiaobo.com',

// 默认用户权限
// 0 - 只读
// 1 - 所有用户都可对全局联系进行添加、编辑、删除
// 2 - 所有用户都可添加,但不能编辑、删除
// 3 - 所有用户都可以添加、编辑,但不能删除
'perms' => 0,

 

5、重启php

service php7.4-fpm restart 

 

Tags:iredmail

很赞哦! ()

文章评论