Skip to content

조회 수 9325 추천 수 0 댓글 0
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄

courier-imap install

 

http://www.courier-mta.org/imap/

http://www.courier-mta.org/download.php

 

1. ( courier-authlib )

 

# tar xvf courier-authlib-0.57.20050930.tar
# chown -R root.root courier-authlib-0.57.20050930
# cd courier-authlib-0.57.20050930
# ./configure \
--prefix=/usr/local/courier-authlib \
--without-authpam \
--without-authldap \
--without-authpwd \
--without-authmysql \
--without-authpgsql \
--without-authshadow \
--without-authuserdb \
--without-authcustom \
--without-authcram \
--without-authpipe \
--with-authvchkpw \
--with-redhat

# make
# make install
# make install-configure

 

# vi /usr/local/courier-authlib/etc/authlib/authdaemonrc
authmodulelist="authvchkpw"

 

# cp courier-authlib.sysvinit /etc/rc.d/init.d/courier-authlib
# chmod 755 /etc/rc.d/init.d/courier-authlib


 

2. ( courier-imap-4.0.6 )

 

# tar xvf courier-imap-4.0.6.tar
# chown -R root.root courier-imap-4.0.6
# su test -> 일반유저로 로그인
# cd courier-imap-4.0.6

CFLAGS="-DHAVE_OPEN_SMTP_RELAY"; export CFLAGS \
./configure \
--prefix=/usr/local/courier-imap \
--disable-root-check \
--with-ssl \
--with-redhat

# make
# make check  =>컴파일 이상 없이 되었는지 체크
------- 일반유저 작업완료 ---------------------------

 

# find /* > /root/courier-imap1

# make install-strip  ->실제 설치 시작
# make install-configure  ->설정 파일 설치

# find /* > /root/courier-imap2
# diff /root/courier-imap1 /root/courier-imap2 > courier-imap-install

 

# cp -f courier-imap.sysvinit /etc/rc.d/init.d/courier-imap
# chown root.root /etc/rc.d/init.d/courier-imap
# chmod 700 /etc/rc.d/init.d/courier-imap

 

# vi /etc/rc.d/init.d/courier-imap

--------------------- /etc/rc.d/init.d/courier-imap  start ---------------------------------
#!/bin/sh
#
# This is a sample /etc/init.d file for Courier-IMAP
#
# chkconfig: 2345 80 30
# description: Courier-IMAP - IMAP server
#
#
#

prefix=/usr/local/courier-imap
exec_prefix=/usr/local/courier-imap
bindir=${exec_prefix}/bin
sbindir=${exec_prefix}/sbin

case "$1" in
start)
        cd /
        . ${prefix}/etc/imapd
        touch /var/lock/subsys/courier-imap

        echo -n "Starting Courier-IMAP server:"

        case x$IMAPDSTART in
        x[yY]*)
                # Start daemons.
                /usr/local/courier-imap/libexec/imapd.rc start
                echo -n " imap"
                ;;
        esac

        . ${prefix}/etc/imapd-ssl
        case x$IMAPDSSLSTART in
        x[yY]*)
                if test -x $COURIERTLS
                then

                # First time we start this, generate a dummy SSL certificate.

                        if test ! -f $TLS_CERTFILE
                        then
                                echo -n " generating-SSL-certificate..."
                                ${prefix}/share/mkimapdcert >/dev/null 2>&1
                        fi
                        /usr/local/courier-imap/libexec/imapd-ssl.rc start
                        echo -n " imap-ssl"
                fi
                ;;
        esac

        echo ""
        ;;
stop)
        echo -n "Stopping Courier-IMAP server:"
        . ${prefix}/etc/imapd
        . ${prefix}/etc/imapd-ssl
        /usr/local/courier-imap/libexec/imapd.rc stop
        echo -n " imap"
        if test -x $COURIERTLS
        then
                /usr/local/courier-imap/libexec/imapd-ssl.rc stop
                echo -n " imap-ssl"
        fi

        echo ""
        rm -f /var/lock/subsys/courier-imap
        ;;
restart)
        $0 stop
        $0 start
        ;;
esac
exit 0
-------------------- /etc/rc.d/init.d/courier-imap  end -----------------------------------

 

# chkconfig --add courier-imap
# chkconfig --level 345 courier-imap on

 

# vi /usr/local/courier-imap/etc/imapd
ADDRESS=192.100.10.43
.......................
IMAPDSTART=YES


List of Articles
번호 제목 글쓴이 날짜 조회 수
102 zimbra 메일솔루션 ldap_url and ldap_master_url cannot ... ADMINPLAY 2014.02.07 7598
101 간단한 메일 로그 분석 ADMINPLAY 2009.06.04 7835
100 qmail 구조도 ADMINPLAY 2009.06.04 7881
99 squirremail "알수 없는 사용자 로그인 에러 조치 사항" ADMINPLAY 2009.06.04 7991
98 qmail + vpopmail 관리팁 ADMINPLAY 2009.06.04 8044
97 qmail 한글 홈페이지 FAQ ADMINPLAY 2009.06.04 8052
96 Sendmail 구동원리 및 설치 활용 ADMINPLAY 2009.06.04 8271
95 Sendmail에서 milter 사용으로 spam, 바이러스 막기 ADMINPLAY 2009.10.20 8279
94 qmail 설치시 궁금한점 ADMINPLAY 2009.06.04 8297
93 메일 릴레이 허용 테스트 페이지 ADMINPLAY 2009.06.04 8453
92 kisa rbl 설정 ADMINPLAY 2009.06.04 8484
91 sendmail.cf 파일 내용 들여다보기 ADMINPLAY 2008.11.10 8582
90 sendmail : rejecting connections on port 25 : load ave... ADMINPLAY 2009.09.20 8604
89 sendmail 설정 후 생기는 pop3 로그온 문제 ADMINPLAY 2008.11.08 8667
88 vpopmail 과 mysql 연동 관련 장애 처리 ADMINPLAY 2009.08.08 8669
87 Jun 26 11:15:15 www sendmail[27135]: g5Q2FES27135: col... ADMINPLAY 2009.09.20 8678
86 /var/spool/mail/에 저장된 메일 다른 메일로 보내기 ADMINPLAY 2009.06.04 8737
85 [스팸관련] 외국 RBL 확인하는 방법 ADMINPLAY 2009.07.18 8741
84 imap, ipop3 on xinetd ADMINPLAY 2009.06.12 8745
83 vpopmail 에서 각 바이너리 파일들의 용도 ADMINPLAY 2009.06.04 8771
Board Pagination Prev 1 2 3 4 5 6 Next
/ 6

Copyright ADMINPLAY corp. All rights reserved.

abcXYZ, 세종대왕,1234

abcXYZ, 세종대왕,1234