• |
  • |
  • |
HOST : ns1.ohseon.com
I P   : 35.185.153.15
HOST : ns2.ohseon.com
I P   : 104.155.205.11
>
웹호스팅
>
보안서버 SSL
>
SSL 설치가이드
>
Lync 2010

1. postfix 환경파일 열기
[root@localhost postfix]# pwd
/etc/postfix
[root@localhost postfix]# vi main.cf

* 환경설정파일 : 예. /etc/postfix/main.cf
2. postifx TLS 환경 설정
# This parameter is obsolete as of Postfix 2.1.
#

sample_directory = /usr/share/doc/postfix-2.3.3/samples

# readme_directory: The location of the Postfix README files.
#

readme_directory = /usr/share/doc/postfix-2.3.3/README_FILES

smtpd_use_tls = yes
smtpd_tls_auth_only = no
smtpd_tls_key_file = /etc/postfix/ssl/www.ucert.co.kr.key
* 개인키 파일 경로 지정
smtpd_tls_cert_file = /etc/postfix/ssl/www.ucert.co.kr.crt
* 인증서 파일 경로 지정
smtpd_tls_CAfile = /etc/postfix/ssl/www.ucert.co.kr.ca-bundle
* Chain 파일 경로 지정
smtpd_tls_loglevel = 3
smtpd_tls_received_header = yes
smtpd_tls_session_cache_timeout = 3600s
tls_random_source = dev:/dev/urandom
smtpd_tls_session_cache_database = btree:${data_directory}/smtpd_scache
smtp_tls_session_cache_database = btree:${data_directory}/smtp_scache
3. postifx 테스트
[root@localhost postfix]# telnet localhost 25
Trying 127.0.0.1...
Connected to localhost.
Escape character is '^]'.
220 mail.democloud.com ESMTP Postfix (Ubuntu)

MAIL FROM:ucert@ucert.co.kr
* 발송 메일
250 2.1.0 Ok

RCPT TO:test@naver.com
* 수신 메일
250 2.1.5 Ok

DATA
* 메일 내용
354 End data with .

Subject: TLS TEST!!!
TLS TEST!!!!!!!
.
* . 으로 마무리 합니다.
250 2.0.0 Ok: queued as 9620FF0087

QUIT
* 종료

[root@localhost postfix]# tail -n 15 /var/log/mailling
* 로그에 문제가 없는지 확인 합니다.



  • |
  • |
  • |
  • |
  • |