安装openwebmail
openwebmail提供了可视化的邮件管理系统,它运行在Apache环境下。
1、安装必备软件
[[email protected] ~]# yum install – y perl-TextIconv perl-CGI perl-CPAN perl-suidper perl-YAML
|
2、在官网(http://openwebmail.org/openwebmail/download/release/)下载openwebmail,解压
[[email protected] ~]# tar – xvf openwebmail-2-53.tar
|
3、解压后得到两个目录“cgi-bin”和“data”,而且这两个目录下都会包含一个“openwebmail”目录。其中cgi-bin是要执行的程序,而data是数据部分。因此在后面我们要改的地方都集中在cgi-bin目录下的openwebmail
1)将cgi-bin下的openwebmail移动到网页cgi默认目录下
[[email protected] ~]# mv cgi-bin/openwebmail /var/www/cgi-bin/
|
2)将data复制到“/var/www”
[[email protected] ~]# cp – r data/ /var/www/
|
3)将data下的openwebmail移动到”/var/www/html/“
[[email protected] ~]# mv data/openwebmail /var/www/html/
|
4、修改cgi-bin下的openwebmail权限
[[email protected] ~]# chmod – R 777 /var/www/cgi-bin/openwebmail/
|
5、修改suidperl的权限
[[email protected] ~]# chmod 4555 /usr/bin/suidperl
|
6、修改配置文件openwebmail.conf,改变参数ow_cgidir、ow_htmldir,它们一个是网页默认目录,一个是数据默认目录
[[email protected] openwebmail]# gedit etc/openwebmail.conf
|
7、修改身份认证文件,这个文件需要从defaults目录拷贝,然后修改两个参数“passwdfile_enctypted“和”passwdmkdb“
[[email protected] openwebmail]# cp etc/defaults/auth_unix.conf etc/
|
8、修改dbm文件,首先从defaults目录下拷贝,然后改变参数“dbmopen_ext“和”dbmopen_haslock“
[[email protected] openwebmail]# cp etc/defaults/dbm.conf etc/
|
9、初始化openwebmail服务
[[email protected] openwebmail]# ./openwebmail-tool.pl --init
|
10、重启Apache
[[email protected] openwebmail]# service httpd restart
|
11、在浏览器输入“127.0.0.1/cgi-bin/openwebmail/openwebmail.pl“,可以看到下面的登录窗口
12、在登录窗口输入一个已经存在的用户名和密码,由于是第一次登录,我们需要做一些设置
13、设置个人模板
原文地址:https://www.cnblogs.com/wj78080458/p/10172603.html