postfix是Wietse Venema在 IBM GPL协议 之下开发的 MTA (邮件传输代理)软件。postfix是Wietse Venema想要为使用最广泛的sendmail提供替代品的一个尝试。在Internet世界中,大部分的电子邮件都是通过sendmail来投递的,大约有100万用户使用sendmail,每天投递上亿封邮件。这真是一个让人吃惊的数字。Postfix试图更快、更容易管理、更安全,同时还与sendmail保持足够的兼容性。
一.准备工作
1.安装所需环境,必要的软件包
[root@localhost ~]# mount /dev/cdrom /mnt/cdrom/
mount: block device /dev/cdrom is write-protected, mounting read-only
[root@localhost ~]# yum install -y httpd php php-mysql mysql mysql-server mysql-devel openssl-devel dovecot perl-DBD-MySQL tcl tcl-devel libart_lgpl libart_lgpl-devel libtool-ltdl libtool-ltdl-devel expect
[root@localhost ~]# yum groupinstall "Development Libraries","Development Tools","Legacy Software Development","X Software Development"
2.停用sendmail
[root@localhost ~]# service sendmail stop
关闭 sm-client:                                           [确定]
关闭 sendmail:                                            [确定]
[root@localhost ~]# chkconfig sendmail off
[root@localhost ~]# rpm -e sendmail –nodeps
二.安装dns
1.安装所需包
[root@localhost ~]# cd /mnt/cdrom/Server/
[root@localhost Server]# yum  install  bind bind-chroot caching-nameserver -y
[root@localhost Server]# cd /var/named/chroot/etc/
[root@localhost etc]# cp -p named.caching-nameserver.conf named.conf
[root@localhost etc]# vim named.conf
wps_clip_p_w_picpath-25936
修改区域声明文件
[root@localhost etc]# vim named.rfc1912.zones
wps_clip_p_w_picpath-12029
生成数据库文件
[root@localhost etc]# cd ../var/named/
[root@localhost named]# ll
总计 72
drwxrwx--- 2 named named 4096 2004-08-26 data
-rw-r----- 1 root  named  198 2009-07-30 localdomain.zone
-rw-r----- 1 root  named  195 2009-07-30 localhost.zone
-rw-r----- 1 root  named  427 2009-07-30 named.broadcast
-rw-r----- 1 root  named 1892 2009-07-30 named.ca
-rw-r----- 1 root  named  424 2009-07-30 named.ip6.local
-rw-r----- 1 root  named  426 2009-07-30 named.local
-rw-r----- 1 root  named  427 2009-07-30 named.zero
drwxrwx--- 2 named named 4096 2004-07-27 slaves
[root@localhost named]# cp -p localhost.zone a.org.db
[root@localhost named]# vim a.org.db
wps_clip_p_w_picpath-11507
[root@localhost named]# vim /etc/resolv.conf
wps_clip_p_w_picpath-28047
修改主机名
[root@localhost named]# vim /etc/sysconfig/network
wps_clip_p_w_picpath-23031
重启系统
[root@localhost ~]# init 6
重新启动dns
[root@mail ~]# service named start
启动 named:                                               [确定]
[root@mail ~]# chkconfig --add named
[root@mail ~]# chkconfig named on
[root@mail ~]# dig -t mx a.org
wps_clip_p_w_picpath-12534
Dns安装完成
2.启动mysql数据库,并给mysql的root用户设置密码“redhat”
[root@mail ~]# service mysqld start
[root@mail ~]# chkconfig mysqld on
[root@mail ~]# netstat -tupln|grep mysql
tcp        0      0 0.0.0.0:3306                0.0.0.0:*                   LISTEN      3249/mysqld        
[root@mail ~]# mysqladmin -uroot password 'redhat
3.启动saslauthd服务,并将其加入到自动启动队列
[root@mail ~]# service saslauthd start
启动 saslauthd:                                           [确定]
[root@mail ~]# chkconfig saslauthd on
三.安装配置postfix
1.下面是步骤
[root@mail ~]# groupadd -g 2525 postfix
[root@mail ~]# useradd -g postfix -u 2525 -s /sbin/nologin -M postfix
[root@mail ~]# groupadd -g 2526 postdrop
[root@mail ~]# useradd -g postdrop -u 2526 -s /bin/false -M postdrop
[root@mail ~]# tar -zxvf postfix-2.8.2.tar.gz -C /usr/src/
[root@mail ~]# cd /usr/src/postfix-2.8.2/
[root@localhost postfix-2.8.2]# make makefiles 'CCARGS=-DHAS_MYSQL -I/usr/include/mysql -DUSE_SASL_AUTH -DUSE_CYRUS_SASL -I/usr/include/sasl  -DUSE_TLS ' 'AUXLIBS=-L/usr/lib/mysql -lmysqlclient -lz -lm -L/usr/lib/sasl2 -lsasl2   -lssl -lcrypto'
[root@localhost postfix-2.8.2]# make
[root@localhost postfix-2.8.2]# make install
按照以下的提示输入相关的路径([]号中的是缺省值,”]”后的是输入值,省略的表示采用默认值)
install_root: [/] /
tempdir: [/usr/local/src/ postfix-2.8.2] /tmp
config_directory: [/etc/postfix] /etc/postfix
daemon_directory: [/usr/libexec/postfix]
command_directory: [/usr/sbin]
queue_directory: [/var/spool/postfix]
sendmail_path: [/usr/sbin/sendmail]
newaliases_path: [/usr/bin/newaliases]
mailq_path: [/usr/bin/mailq]
mail_owner: [postfix]
setgid_group: [postdrop]  
    html_directory: [no] /var/www/postfix_html
    manpages: [/usr/local/man]
    readme_directory: [no]
生成别名二进制文件,这个步骤如果忽略,会造成postfix效率极低:
[root@localhost postfix-2.8.2]# newaliases
2.进行一些基本配置,测试启动postfix并进行发信
[root@mail postfix-2.8.2]# vim /etc/postfix/main.cf
wps_clip_p_w_picpath-8831
wps_clip_p_w_picpath-18631
wps_clip_p_w_picpath-2555
wps_clip_p_w_picpath-31786
说明:
myorigin参数用来指明发件人所在的域名;
mydestination参数指定postfix接收邮件时收件人的域名,即您的postfix系统要接收到哪个域名的邮件;
myhostname 参数指定运行postfix邮件系统的主机的主机名,默认情况下,其值被设定为本地机器名;
mydomain参数指定您的域名,默认情况下,postfix将myhostname的第一部分删除而作为mydomain的值;
mynetworks 参数指定你所在的网络的网络地址,postfix系统根据其值来区别用户是远程的还是本地的,如果是本地网络用户则允许其访问;
注意:
在postfix的配置文件中,参数行和注释行是不能处在同一行中的;
任何一个参数的值都不需要加引号,否则,引号将会被当作参数值的一部分来使用;
每修改参数及其值后执行 postfix reload 即可令其生效;但若修改了inet_interfaces,则需重新启动postfix;
如果一个参数的值有多个,可以将它们放在不同的行中,只需要在其后的每个行前多置一个空格即可;postfix会把第一个字符为空格或tab的文本行视为上一行的延续
3.编辑postfix的启动脚本
[root@mail cms]# cp /mnt/cdrom/Server/postfix-2.3.3-2.1.el5_2.i386.rpm ./
[root@mail cms]# ll
总计 3652
-r--r--r-- 1 root root 3734257 03-23 05:07 postfix-2.3.3-2.1.el5_2.i386.rpm
[root@mail cms]# rpm2cpio postfix-2.3.3-2.1.el5_2.i386.rpm |cpio -id
16333 blocks
[root@mail cms]# ll
总计 3664
drwxr-xr-x 5 root root    4096 03-23 05:08 etc
-r--r--r-- 1 root root 3734257 03-23 05:07 postfix-2.3.3-2.1.el5_2.i386.rpm
drwxr-xr-x 7 root root    4096 03-23 05:08 usr
drwxr-xr-x 3 root root    4096 03-23 05:08 var
[root@mail cms]# cd etc/rc.d/init.d/
[root@mail init.d]# ll
总计 4
-rwxr-xr-x 1 root root 2404 03-23 05:08 postfix
[root@mail init.d]# cp postfix /etc/init.d/postfix
[root@mail init.d]# service postfix start
启动 postfix:                                             [确定]
将其加入开机自启动
[root@mail init.d]# chkconfig --add postfix
[root@mail init.d]# chkconfig postfix on
[root@mail init.d]#
4.连接postfix,验正服务启动状况
[root@mail init.d]# telnet 192.168.1.100 25
Trying 192.168.1.100...
telnet: connect to address 192.168.1.100: Network is unreachable
telnet: Unable to connect to remote host: Network is unreachable
[root@mail init.d]# telnet 192.168.2.50 25
Trying 192.168.2.50...
Connected to 192.168.2.50 (192.168.2.50).
Escape character is '^]'.
220 mail.a.org ESMTP Postfix
EHLO mail.a.org            #此行为输入的内容
250-mail.a.org
250-PIPELINING
250-SIZE 10240000
250-VRFY
250-ETRN
250-ENHANCEDSTATUSCODES
250-8BITMIME
250 DSN
mail from:abc@a.org           #此行为输入的内容
250 2.1.0 Ok
rcpt to:root@a.org             #此行为输入的内容
250 2.1.5 Ok
data     #此行为输入的内容       
354 End data with <CR><LF>.<CR><LF>
111111111111111111111        #此行为输入的内容
.
250 2.0.0 Ok: queued as EC1D358197
quit                        #此行为输入的内容
221 2.0.0 Bye
Connection closed by foreign host.
You have new mail in /var/spool/mail/root
[root@mail init.d]# mail
wps_clip_p_w_picpath-20071
四.为postfix开启基于cyrus-sasl的认证功能
1.使用以下命令验正postfix是否支持cyrus风格的sasl认证,如果输出以下结果,则是支持的
[root@mail ~]# cd /usr/src/postfix-2.8.2/
[root@mail postfix-2.8.2]# postconf -a
cyrus
dovecot
[root@mail postfix-2.8.2]# vim /etc/postfix/main.cf
添加以下内容:
############################CYRUS-SASL############################
broken_sasl_auth_clients = yes
smtpd_recipient_restrictions=permit_mynetworks,permit_sasl_authenticated,reject_invalid_hostname,reject_non_fqdn_hostname,reject_unknown_sender_domain,reject_non_fqdn_sender,reject_non_fqdn_recipient,reject_unknown_recipient_domain,reject_unauth_pipelining,reject_unauth_destination
smtpd_sasl_auth_enable = yes
smtpd_sasl_local_domain = $myhostname
smtpd_sasl_security_options = noanonymous
smtpd_banner = Welcome to our $myhostname ESMTP,Warning: Version not Available!
如下
wps_clip_p_w_picpath-16068
[root@mail postfix-2.8.2]# vim /usr/lib/sasl2/smtpd.conf
添加如下内容:
pwcheck_method: saslauthd
mech_list: PLAIN LOGIN
wps_clip_p_w_picpath-21537
2.启动sasl服务
[root@mail postfix-2.8.2]# service saslauthd restart
停止 saslauthd:                                           [确定]
启动 saslauthd:                                           [确定]
[root@mail postfix-2.8.2]#
[root@mail postfix-2.8.2]# chkconfig  saslauthd on
让postfix重新加载配置文件
[root@mail postfix-2.8.2]# postfix reload
postfix/postfix-script: refreshing the Postfix mail system
[root@mail postfix-2.8.2]# telnet 192.168.2.50 25
Trying 192.168.2.50...
Connected to 192.168.2.50 (192.168.2.50).
Escape character is '^]'.
220 Welcome to our mail.a.org ESMTP,Warning: Version not Available!
Ehlo mail.a.org
250-mail.a.org
250-PIPELINING
250-SIZE 10240000
250-VRFY
250-ETRN
250-AUTH PLAIN LOGIN
250-AUTH=PLAIN LOGIN              #请确保您的输出以类似两行
250-ENHANCEDSTATUSCODES
250-8BITMIME
250 DSN
quit
221 2.0.0 Bye
Connection closed by foreign host.
[root@mail postfix-2.8.2]#
五.安装Courier authentication library
[root@mail ~]# tar -jxvf courier-authlib-0.63.1.20111230.tar.bz2
[root@mail ~]# cd courier-authlib-0.63.1.20111230
[root@mail courier-authlib-0.63.1.20111230]# ./configure --prefix=/usr/local/courier-authlib --sysconfdir=/etc --with-authmysql --with-mysql-libs=/usr/lib/mysql --with-mysql-includes=/usr/include/mysql --with-redhat --with-authmysqlrc=/etc/authmysqlrc --with-authdaemonrc=/etc/authdaemonrc --with-ltdl-lib=/usr/lib --with-ltdl-include=/usr/include
在这儿可能会出现错误,只是我们需要去检查日志,最后知道是前面有的包可能没装上,我们要检查并重新安装上去。
然后进行编译
[root@mail courier-authlib-0.63.1.20111230]# make
[root@mail courier-authlib-0.63.1.20111230]# make install
[root@mail courier-authlib-0.63.1.20111230]# chmod 755 /usr/local/courier-authlib/var/spool/authdaemon
[root@mail courier-authlib-0.63.1.20111230]# cp /etc/authdaemonrc.dist  /etc/authdaemonrcim
[root@mail courier-authlib-0.63.1.20111230]# cp /etc/authmysqlrc.dist  /etc/authmysqlrc
修改/etc/authdaemonrc 文件
[root@mail courier-authlib-0.63.1.20111230]# vim /etc/authdaemonrc
将以下内容添加到/etc/authdaemonrc文件中
authmodulelist="authmysql"
authmodulelistorig="authmysql"
daemons=10
wps_clip_p_w_picpath-25940
编辑/etc/authmysqlrc 为以下内容,其中2525,2525 为postfix 用户的UID和GID[root@mail courier-authlib-0.63.1.20111230]# vim /etc/authmysqlrc
在/etc/authmysqlrc文件中找到相似下面的内容并改成下面的一样
MYSQL_SERVER localhost
MYSQL_PORT 3306                 (指定你的mysql监听的端口,这里使用默认的3306)
MYSQL_USERNAME  extmail     (这是为后文要用的数据库的所有者的用户名)
MYSQL_PASSWORD extmail         (这是为后文要用的数据库的所有者的密码)
MYSQL_SOCKET  /var/lib/mysql/mysql.sock
MYSQL_DATABASE  extmail
MYSQL_USER_TABLE  mailbox
MYSQL_CRYPT_PWFIELD  password
MYSQL_UID_FIELD  '2525'
MYSQL_GID_FIELD  '2525'
MYSQL_LOGIN_FIELD  username
MYSQL_HOME_FIELD  concat('/var/mailbox/',homedir)
MYSQL_NAME_FIELD  name
MYSQL_MAILDIR_FIELD  concat('/var/mailbox/',maildir)
[root@mail courier-authlib-0.63.1.20111230]# cp courier-authlib.sysvinit /etc/init.d/courier-authlib
[root@mail courier-authlib-0.63.1.20111230]# chmod 755 /etc/init.d/courier-authlib
[root@mail courier-authlib-0.63.1.20111230]# chkconfig --add courier-authlib
[root@mail courier-authlib-0.63.1.20111230]# chkconfig courier-authlib on
[root@mail courier-authlib-0.63.1.20111230]# echo "/usr/local/courier-authlib/lib/courier-authlib" &gt;&gt; /etc/ld.so.conf.d/courier-authlib.conf
[root@mail courier-authlib-0.63.1.20111230]# ldconfig -v
启动服务
[root@mail courier-authlib-0.63.1.20111230]# service courier-authlib start
Starting Courier authentication services: authdaemond
新建虚拟用户邮箱所在的目录,并将其权限赋予postfix用户:
[root@mail courier-authlib-0.63.1.20111230]# mkdir -pv /var/mailbox
mkdir: 已创建目录 “/var/mailbox”
[root@mail courier-authlib-0.63.1.20111230]# chown -R postfix /var/mailbox
接下来重新配置SMTP 认证,编辑 /usr/lib/sasl2/smtpd.conf ,确保其为以下内容:
pwcheck_method: authdaemond
log_level: 3
mech_list:PLAIN LOGIN
authdaemond_path:/usr/local/courier-authlib/var/spool/authdaemon/socket[root@mail courier-authlib-0.63.1.20111230]# vim /usr/lib/sasl2/smtpd.conf
wps_clip_p_w_picpath-22778
六.让postfix支持虚拟域和虚拟用户
1.使用命令[root@mail ~]# vim /etc/postfix/main.cf编辑/etc/postfix/main.cf,
添加如下内容:
########################Virtual Mailbox Settings########################
virtual_mailbox_base = /var/mailbox
virtual_mailbox_maps = mysql:/etc/postfix/mysql_virtual_mailbox_maps.cf
virtual_mailbox_domains = mysql:/etc/postfix/mysql_virtual_domains_maps.cf
virtual_alias_domains =
virtual_alias_maps = mysql:/etc/postfix/mysql_virtual_alias_maps.cf
virtual_uid_maps = static:2525
virtual_gid_maps = static:2525
virtual_transport = virtual
maildrop_destination_recipient_limit = 1
maildrop_destination_concurrency_limit = 1
##########################QUOTA Settings########################
message_size_limit = 14336000
virtual_mailbox_limit = 20971520
virtual_create_maildirsize = yes
virtual_mailbox_extended = yes
virtual_mailbox_limit_maps = mysql:/etc/postfix/mysql_virtual_mailbox_limit_maps.cf
virtual_mailbox_limit_override = yes
virtual_maildir_limit_message = Sorry, the user's maildir has overdrawn his diskspace quota, please Tidy your mailbox and try again later.
virtual_overquota_bounce = yes
2.使用extman源码目录下docs目录中的extmail.sql和init.sql建立数据库
[root@mail ~]# tar -zxvf extman-1.1.tar.gz
[root@mail ~]# cd extman-1.1/docs
[root@mail docs]# mysql -u root -p <extmail.sql
Enter password:                     (密码是redhat,这个是在前面设置的,下面也一样)
[root@mail docs]#
[root@mail docs]# mysql -u root -p &lt;init.sql
Enter password:
[root@mail docs]# mysql -u root -p
Enter password:
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 9
Server version: 5.0.77 Source distribution
Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
mysql>
mysql&gt; show databases;
+--------------------+
| Database           |
+--------------------+
| information_schema |
| extmail            |
| mysql              |
| test               |
+--------------------+
4 rows in set (0.18 sec)
mysql&gt; \q
Bye
[root@mail docs]#
[root@mail docs]#
[root@mail docs]#
[root@mail docs]# cp mysql*  /etc/postfix/
3.授予用户extmail访问extmail数据库的权限
[root@mail docs]# mysql -u root -p
Enter password:
Welcome to the MySQL monitor.  Commands end with ; or \g.
Your MySQL connection id is 10
Server version: 5.0.77 Source distribution
Type 'help;' or '\h' for help. Type '\c' to clear the buffer.
mysql&gt; GRANT all privileges on extmail.* TO extmail@localhost IDENTIFIED BY 'extmail';
Query OK, 0 rows affected (0.00 sec)
mysql&gt; GRANT all privileges on extmail.* TO extmail@127.0.0.1 IDENTIFIED BY 'extmail';
Query OK, 0 rows affected (0.00 sec)
mysql&gt; FLUSH PRIVILEGES;          (让设置的内容生效)
Query OK, 0 rows affected (0.00 sec)
mysql&gt; \q
Bye
重启服务
[root@mail docs]# service  postfix  restart
关闭 postfix:                                             [确定]
启动 postfix:                                             [确定]
[root@mail docs]#
说明:启用虚拟域以后,需要取消中心域,即注释掉myhostname, mydestination, mydomain, myorigin几个指令;当然,你也可以把mydestionation的值改为你自己需要的。
七.配置dovecot
包在前面已经装过了,这里只需配置编辑
[root@mail ~]# vim /etc/dovecot.conf
mail_location = maildir:/var/mailbox/%d/%n/Maildir
……
auth default {
    mechanisms = plain
    passdb sql {
        args = /etc/dovecot-mysql.conf
    }
    userdb sql {
        args = /etc/dovecot-mysql.conf
    }
    ……
注意把userdb的其他相关禁用
postfix的配置文件也要该
[root@mail ~]# vim /etc/postfix/main.cf
home_mailbox = Maildir/
[root@mail ~]# vim /etc/dovecot-mysql.conf
将下面的内容添加到文件中
driver = mysql
connect = host=localhost dbname=extmail user=extmail password=extmail
default_pass_scheme = CRYPT
password_query = SELECT username AS user,password AS password FROM mailbox WHERE username = '%u'                           
user_query = SELECT maildir, uidnumber AS uid, gidnumber AS gid FROM mailbox WHERE username = '%u'
wps_clip_p_w_picpath-29371
接下来启动dovecot服务并设置为开机启动
[root@mail ~]# service dovecot start
启动 Dovecot Imap:                                        [确定]
[root@mail ~]# chkconfig dovecot on
[root@mail ~]#
八.安装Extmail-1.2  (先安装httpd)
1.安装
[root@mail ~]# tar zxvf extmail-1.2.tar.gz
[root@mail ~]# mkdir -pv /var/www/extsuite
mkdir: 已创建目录 “/var/www/extsuite”
[root@mail ~]# mv extmail-1.2 /var/www/extsuite/extmail
[root@mail ~]# cp /var/www/extsuite/extmail/webmail.cf.default  /var/www/extsuite/extmail/webmail.cf
[root@mail ~]#
2.修改主配置文件
#vi /var/www/extsuite/extmail/webmail.cf
部分修改选项的说明:
SYS_MESSAGE_SIZE_LIMIT = 5242880       (用户可以发送的最大邮件)
SYS_USER_LANG = zh_CN        (修改语言选项)
SYS_MAILDIR_BASE = /home/domains
此处即为在前文所设置的用户邮件的存放目录,可改作:
SYS_MAILDIR_BASE = /var/mailbox
SYS_MYSQL_USER = db_user
SYS_MYSQL_PASS = db_pass
以上两句用来设置连接数据库服务器所使用用户名、密码和邮件服务器用到的数据库,这里修改为:
SYS_MYSQL_USER = extmail
SYS_MYSQL_PASS = extmail
SYS_MYSQL_HOST = localhost         (指明数据库服务器主机名,这里默认即可)
SYS_MYSQL_TABLE = mailbox
SYS_MYSQL_ATTR_USERNAME = username
SYS_MYSQL_ATTR_DOMAIN = domain
SYS_MYSQL_ATTR_PASSWD = password
(以上用来指定验正用户登录里所用到的表,以及用户名、域名和用户密码分别对应的表中列的名称;这里默认即可)
SYS_AUTHLIB_SOCKET = /var/spool/authdaemon/socket
此句用来指明authdaemo socket文件的位置,这里修改为:
SYS_AUTHLIB_SOCKET = /usr/local/courier-authlib/var/spool/authdaemon/socket
3.由于extmail要进行本地邮件的投递操作,故必须将运行apache服务器用户的身份修改为您的邮件投递代理的用户;本例中打开了apache服务器的suexec功能,故使用以下方法来实现虚拟主机运行身份的指定。此例中的MDA为postfix自带,因此将指定为postfix用户
<VirtualHost *:80>
ServerName mail.test.com
DocumentRoot /var/www/extsuite/extmail/html/
ScriptAlias /extmail/cgi /var/www/extsuite/extmail/cgi
Alias /extmail /var/www/extsuite/extmail/html
SuexecUserGroup postfix postfix
</VirtualHost>
修改 cgi执行文件属主为apache运行身份用户
[root@mail ~]# chown -R postfix.postfix /var/www/extsuite/extmail/cgi/
如果您没有打开apache服务器的suexec功能,也可以使用以下方法解决
[root@mail ~]# vim /etc/httpd/conf/httpd.conf
将下面内容添加到文件末尾最好
<VirtualHost *:80>
ServerName mail.test.com
DocumentRoot /var/www/extsuite/extmail/html/
ScriptAlias /extmail/cgi /var/www/extsuite/extmail/cgi
Alias /extmail /var/www/extsuite/extmail/html
</VirtualHost>
4.解决依赖关系
extmail将会用到perl的Unix::syslogd功能,您可以去 http://search.cpan.org 搜索下载原码包进行安装。
[root@mail ~]# tar -zxvf Unix-Syslog-1.1.tar.gz
[root@mail ~]# cd Unix-Syslog-1.1
[root@mail Unix-Syslog-1.1]# perl Makefile.PL
Checking if your kit is complete...
Looks good
Writing Makefile for Unix::Syslog
[root@mail Unix-Syslog-1.1]# make
[root@mail Unix-Syslog-1.1]# make install
5.启动apache服务并设置为开机启动
[root@mail Unix-Syslog-1.1]# service httpd start
启动 httpd:httpd: Could not reliably determine the server's fully qualified domain name, using mail.a.org for ServerName                            [确定]
[root@mail Unix-Syslog-1.1]# chkconfig httpd on
[root@mail Unix-Syslog-1.1]#
九.安装Extman-1.1
安装及基本配置
[root@mail ~]# tar zxvf  extman-1.1.tar.gz
[root@mail ~]#  mv extman-1.1 /var/www/extsuite/extman
修改配置文件以符合本例的需要:
[root@mail ~]# cp /var/www/extsuite/extman/webman.cf.default  /var/www/extsuite/extman/webman.cf
[root@mail ~]# vim /var/www/extsuite/extman/webman.cf
SYS_MAILDIR_BASE = /home/domains
此处即为您在前文所设置的用户邮件的存放目录,可改作:
SYS_MAILDIR_BASE = /var/mailbox
SYS_CAPTCHA_ON = 1 修改为 SYS_CAPTCHA_ON = 0
修改cgi目录的属主:
# chown -R postfix.postfix /var/www/extsuite/extman/cgi/
在apache的主配置文件中Extmail的虚拟主机部分,添加如下两行:
ScriptAlias /extman/cgi /var/www/extsuite/extman/cgi
Alias /extman /var/www/extsuite/extman/html
[root@mail ~]# vim /etc/httpd/conf/httpd.conf
wps_clip_p_w_picpath-19342
创建其运行时所需的临时目录,并修改其相应的权限:
[root@mail ~]# mkdir  -pv  /tmp/extman
mkdir: 已创建目录 “/tmp/extman”
[root@mail ~]# chown postfix.postfix  /tmp/extman
[root@mail ~]#
注意:启用虚拟域以后,需要取消中心域,我们把下面的一行
#mydestination = $myhostname, localhost.$mydomain, localhost, $mydomain
好了,到此为止,重新启动apache服务器后,您的Webmail和Extman已经可以使用了,可以在浏览器中输入http://192.168.2.50就可以使用了
wps_clip_p_w_picpath-578
选择管理即可登入extman进行后台管理了。默认管理帐号为:root@extmail.org  密码为:extmail*123*
wps_clip_p_w_picpath-16461
添加一个域
wps_clip_p_w_picpath-11943
同样可以创建几个用户user1,user2,user3
wps_clip_p_w_picpath-15703
登陆user1,看是否能收发邮件
给自己发送邮件
wps_clip_p_w_picpath-19067
可以收到
wps_clip_p_w_picpath-25638
给其他用户发送邮件(例如user2)
wps_clip_p_w_picpath-19923
登陆user2查看是否收到邮件
wps_clip_p_w_picpath-16112
我们看到已经成功收到邮件
至此我们的基于虚拟用户的邮件服务器就搭建完成了,我们可以成功收发邮件了,大家可以做着试试。