sjchoi’s Blob
자긍심이 없는 것은 우리를 모르기 때문이다.

Archive for the 'Linux' Category

Fedora Core 8 sendmail & pop3 설정

4월 22, 2008

1. sendmail 설치
# yum install sendmail
 2. sendmail config 수정
# vi  /etc/mail/sendmail.cf
# SMTP daemon options
O DaemonPortOptions=Port=smtp,Addr=0.0.0.0, Name=MTA
# list of authentication mechanisms
O AuthMechanisms=EXTERNAL GSSAPI KERBEROS_V4 DIGEST-MD5 CRAM-MD5 PLAIN
3. sendmail 재시작
# service sendmail restart
4. dovecot 설치
# yum install dovecot
5. dovecot config 수정
# vi  /etc/dovecot.conf
protocols = imap imaps pop3 pop3s
listen = [::]
6. dovecot 서비스 재시작
# service dovecot restart

Fedora Core 8 DNS 설정하기

4월 22, 2008

오랜만에 리눅스를 설치했더니 설정이 약간시 수정되어 최신 배포본으로 다시 정리하였다. 예전에 비해 설정법은 많이 정리가 된 듯한 느낌임
1. Named  설치
yum -y install bind bind-chroot
2.  /var/named/chroot/etc/named.conf  설정
options {
        version “mydomain.com”;
        directory “/var/named”;
        allow-transfer {
                127.0.0.1;
        };
        allow-query { any; };
        notify no;
};
logging {
        //category queries { query-log; };
        category lame-servers { null; };
        category unmatched { null; [...]