文档详情

Postfix+ldap安装过程.doc

发布:2017-08-07约9.4千字共8页下载文档
文本预览下载声明
作者:张惠(jimzhang) QQ号E-mail、msn:zhanghui8059@126.com 个人blog: 注:本文章的内容归作者所有,欢迎大家转载,但请转载的时候,务必保留作者完整信息,因为作者写的文章,都是来自实际经验跟项目实施,每一片文章都有作者心血在里面,谢谢! 欢迎大家批评指点,有疑问,请与本作者联系! ? ? postfix+mysql网上有很多文章,可以关于OPENLDAP比较少,参照了一些朋友在BSD环境下面的文章,由于本人对centos比较熟悉,所以就写了一篇关于LDAP的POSTFIX。希望对有需要的朋友有帮助。 关掉selinux及firewall vi /etc/selinux/config 1、? mkdir -p /mail/mailbox/ groupadd -g 10005 postfix useradd -u 10005 -g 10005 -c postfix -d/dev/null -s/sbin/nologin postfix groupadd -g 10006 postdrop groupadd vmail -g 1000 useradd -u 1000 -d /mail/mailbox -s /bin/true -g vmail vmail chown -R vmail.vmail /mail/ 2、配置ldap cp /usr/src/extman-0.2.4/docs/extmail.schema /etc/openldap/schema/extmail.schema vi /etc/openldap/slapd.conf include???????? ?/etc/openldap/schema/core.schema include???? ?????/etc/openldap/schema/cosine.schema include ?????????/etc/openldap/schema/inetorgperson.schema include???????? ?/etc/openldap/schema/nis.schema include include???????? ?/etc/openldap/schema/extmail.schema //用一tab键,不要两个。 ? database??????? ?bdb suffix??? ???????dc= rootdn????????? cn=Manager,dc= rootpw????????? secret ? index objectClass eq vi /etc/openldap/ldap.conf HOST BASE dc= URI ldap:// ldap://:389 SIZELIMIT 12 TIMELIMIT 15 DEREF nerver ? cp /etc/openldap/DB_CONFIG.example /var/lib/ldap/DB_CONFIG slapd -d 256 -u ldap ?//刚开始不要用/etc/rc.d/init.d/ldap start启动,用此命令启动,查看LDAP的日志。 ldapadd -x -D cn=Manager,dc= -w secret -f init.ldif service ldap restart? //查看启动是否正常 ? ldapsearch -x -W -D cn=Manager,dc= -b o=extmailAccount,dc= -h localhost?? //搜索ldap数据 3、????????? Courier-authlib 新版本的imap不再包含authentication library,必须先安装 Courier authentication library ? /courier tar jxfv courier-authlib-0.60.6.tar.bz2 ??//在centos5.0 tar jxvf cd courier-authlib-0.60.6 ./configure --with-redhat \ --with-mailuser=vmail --with-mailgroup=vmail \ --with-authldaprc=/etc/authlib/authldaprc --sysconfdir=/etc \ --prefix=/usr/ --without-stdheaderdir make make install make install-configure ? vi /etc/authlib/authldaprc LDAP_URI???
显示全部
相似文档