作者:雨之夜惊恐_136 | 来源:互联网 | 2014-05-28 08:44
系统利用RHEL5.4,搭建好YUM。安装包的时候解决依赖包问题。apache和mysql都是用rpm包。发邮件用postfix;使用源码包;收邮件用dovecot;用rpm包。图形化界面用Extmail和Extman;官网:www.extmail.org################################
系统利用RHEL5.4,搭建好YUM。安装包的时候解决依赖包问题。
apache和mysql都是用rpm包。
发邮件用postfix;使用源码包;
收邮件用dovecot;用rpm包。
图形化界面用Extmail和Extman;官网:www.extmail.org
###########################################################################################
一、安装前的准备工作:
1、安装所需的rpm包:
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
//它们处于不同的作用,在出现问题时应分开判断是那个文件的影响!
2、关闭sendmail,并将它的随系统自动启动功能关闭:
# service sendmail stop
# chkconfig sendmail off
//因为系统运行需要邮件服务的提供,所以最后在没有安装postfix之前,请不要#rpm -e sendmail;
3、安装以下开发所用到的rpm包组:
#yum groupinstall -y "Development
Libraries"
"Development Tools"
"Legacy Software Development"
"X Software Development"
4、启动mysql数据库,并给mysql的root用户设置密码:
#service mysqld
start
#chkconfig mysqld
on
#mysqladmin -uroot password
'123456'
#mysql -uroot
-p
enter-->
123456
//简单测试
5、启动saslauthd服务,并将其加入到自动启动队列:
# service saslauthd start
//启用smtp认证
# chkconfig saslauthd on
二、安装配置postfix
# groupadd -g 2525 postfix
# useradd -g postfix -u 2525 -s
/sbin/nologin -M postfix
# groupadd -g 2526
postdrop
# useradd -g postdrop -u 2526 -s
/bin/false -M postdrop
# tar zxvf
postfix-2.6.5.tar.gz
# cd
postfix-2.6.5
# 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'
//编译时修改的一些参数 //
如果没有特殊需要,只作为邮件传输MTA应用,不必要添加此类参数;
# make
# make
install
//如果编译出错,检查出错情况,一般是有包忘了装,要不是参数路径错误;
【注释】:
xsasl_cyrus_server.c:598: error: 'SASL_OK' undeclared (first use in
this function)
xsasl_cyrus_server.c:600: warning: format '%s' expects type 'char
*', but argument 3 has type 'int'
xsasl_cyrus_server.c:603: error: 'XSASL_CYRUS_SERVER' has no member
named 'username'
xsasl_cyrus_server.c:604: error: 'XSASL_CYRUS_SERVER' has no member
named 'username'
xsasl_cyrus_server.c:605: error: 'XSASL_CYRUS_SERVER' has no member
named 'username'
xsasl_cyrus_server.c:606: error: 'XSASL_CYRUS_SERVER' has no member
named 'username'
xsasl_cyrus_server.c:607: error: 'XSASL_CYRUS_SERVER' has no member
named 'username'
make: *** [xsasl_cyrus_server.o] Error 1
make: *** [update] Error 1
#
缺少cyrus认证包:有cyrus-sasl-md5 cyrus-sasl-lib cyrus-sasl-plain
cyrus-sasl
cyrus-sasl-devel
//2010年12月01日更新
按照以下的提示输入相关的路径([]号中的是缺省值,”]”后的是输入值,省略的表示采用默认值)(可全部采用默认值)
install_root: [/]
/
tempdir:
[/root/postfix-2.6.5]
config_directory:
[/etc/postfix]
command_directory:
[/usr/sbin]
daemon_directory:
[/usr/libexec/postfix]
data_directory:
[/var/lib/postfix]
html_directory: [no] /
mail_owner:
[postfix]
mailq_path:
[/usr/bin/mailq]
manpage_directory:
[/usr/local/man]
newaliases_path:
[/usr/bin/newaliases]
queue_directory:
[/var/spool/postfix]
readme_directory:
[no]
sendmail_path:
[/usr/sbin/sendmail]
setgid_group:
[postdrop]
(注意)生成别名二进制文件,这个步骤如果忽略,会造成postfix效率极低:
# newaliases
2.进行一些基本配置,测试启动postfix并进行发信
#vim
/etc/postfix/main.cf
修改以下几项为您需要的配置
myhostname =
mail.test.com
myorigin =
test.com
mydomain =
test.com
mydestination = $myhostname,
localhost.$mydomain, localhost, $mydomain
mynetworks = 192.168.1.0/24,
127.0.0.0/8
说明:
myorigin参数用来指明发件人所在的域名;
mydestination参数指定postfix接收邮件时收件人的域名,即您的postfix系统要接收到哪个域名的邮件;
myhostname 参数指定运行postfix邮件系统的主机的主机名,默认情况下,其值被设定为本地机器名;
mydomain参数指定您的域名,默认情况下,postfix将myhostname的第一部分删除而作为mydomain的值;
mynetworks
参数指定你所在的网络的网络地址,postfix系统根据其值来区别用户是远程的还是本地的,如果是本地网络用户则允许其访问;
inet_interfaces 参数指定postfix系统监听的网络接口;
启动postfix
#/usr/sbin/postfix start
postfix/postfix-script: starting the Postfix mail
system
连接postfix,验正服务启动状况:
#netstat -tnlp | grep
:25
tcp
0 0
0.0.0.0:25
0.0.0.0:*
LISTEN 15497/master
# telnet localhost
25
Trying
127.0.0.1...
Connected to
localhost.localdomain (127.0.0.1).
Escape character is
'^]'.
220 mail.test.com ESMTP
Postfix
ehlo
mail.test.com
//本postfix的hostname字段;
250-mail.test.com
250-PIPELINING
250-SIZE 10240000
250-VRFY
250-ETRN
250-ENHANCEDSTATUSCODES
250-8BITMIME
250 DSN
mail
from:root@test.com //输入发信人邮箱
250 2.1.0 Ok
rcpt
to:hanfeng@test.com //输入收信人邮箱
250 2.1.5 Ok