전산쟁이의 기억노트

Centos에서 POSTFIX설치하기 본문

SMTP노트

Centos에서 POSTFIX설치하기

잘나가는전산쟁이 2022. 8. 19. 01:28
728x90
반응형
SMALL

Centos6이후부터는 기본SMTP가 Sendmail에서 postfix로 변경되었습니다.

  1. Sendmail 패키지 삭제
    $> yum erase sendmail -y
  2. Postfix 패키지 설치
    $> yum install postfix -y
  3. Postfix 설정
     
     
    vi /etc/postfix/main.cf
    
    mydomain = localhost (발송 호스트네임 기재)
    mynetworks_style = host (로컬에서만 발송가능 설정)
    mynetworks = 127.0.0.1, 192.168.0/24 (발송할 대역기재)
    smtpd_sasl_auth_enable = yes (인증라이브러리 연동)
    inet_interfaces = $myhostname (open relay차단, 설정 해제시 all 으로 변경)
    postfix,인증라이브러리 연동
     
    $> vi /usr/lib/sasl2/smtpd.conf
    pwcheck_method: saslauthd
    chkconfig postfix on
    chkconfig saslauthd on
    /etc/init.d/postfix start
    /etc/init.d/saslauthd start
     
  4. 기본 Trouble Shooting
      1. 디렉토리 구조
        1. postfix 파일 디렉토리 : /var/spool/postfix
        2. incoming : 모든 메시지
        3. active : 배달 준비 중인 메시지
        4. deferred : 재전송 시도하는 메시지
        5. corrupt : 배달할 수 없는 메시지
      2. 데이터 관리
        1. 메일 발송 로그는 sendmail 과 동일하게 /var/log/maillog에 기재됨
        2. 메일 데이터는 /var/spool/mail/계정명
      3. Queue관리
         
        1. 가상 도메인 세팅
          $> vi /etc/postfix/main.cf
          virtual_alias_domain = test.com example.com (등록할 호스트명 기재)
        2. Alias 설정
          $> vi /etc/postfix/main.cf
          virtual_alias_maps = hash:/etc/postfix/virtual
           
          $> vi /etc/postfix/virtual
          postmaster@example.com postmaster
          info@example.com joe
          sales@example.com jane
          (메일주소) (실계정명)
           
        3. 적용
          [root@localhost /]# postmap /etc/postfix/virtual
      4. [root@localhost /]# mailq –> Queue에 쌓인 메일 확인 [root@localhost /]# postfix flush –> Queue 전체 지우기 [root@localhost /]# postsuper -d ALL deferred –> Queue메일 중 Deferred(지연발송메일) 만 삭제
      5. 출처 -
    http://igoni.kr/books/linux/page/centos-postfix
 

Centos에서 POSTFIX설치하기 | igoni.kr

Centos6이후부터는 기본SMTP가 Sendmail에서 postfix로 변경되었습니다. Sendmail 패키지 삭제 $> yum er...

igoni.kr

 

728x90
반응형
LIST

'SMTP노트' 카테고리의 다른 글

procmailrc를 이용한 스팸메일 차단  (0) 2022.08.19
Dovecot Trouble Shooting  (0) 2022.08.19
clamd설치 / Sendmail 연동하기  (0) 2022.08.19
centos6에서 dovecot 설치하기  (0) 2022.08.19
Centos5에서 dovecot 설치하기  (0) 2022.08.19
Comments