일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- disk 100% 사용
- centos7
- Oracle
- nginx
- Laravel
- ZipArchive 오류
- error 1728
- navicat
- DOTCOM 마케팅 설계자 SECRET
- 디스크 용량 확인
- nginx 1.12.0
- CSS
- php 파일 삭제
- 국민은행(기업)
- php 업로드 파일 삭제
- php zip 모듈
- MariaDB
- 갈레라
- mysql.proc 오류
- html 구성
- OTP 오류
- 복구
- php excel
- OTP 보정오류
- php 7.3
- postfix
- wsrep
- author style
- disk full
- user style
- Today
- Total
Jehna :)
CentOS7 postfix로 mail보내기 본문
" CentOS7 postfix로 mail보내기 "
- CentOS7에서는 postfix가 기본으로 설치되어 있음
(다른 버전일 경우, yum -y install postfix로 설치 해야 함)
1. 메일 발송을 위해 /etc/postfix/main.cf 수정
(기본적인 것만 수정했습니당)
# 메일 호스트명 myhostname = mail.example.com // 사용하려는 이메일 호스트 입력 # 도메인 명 mydomain = example.com // 사용하려는 이메일 도메인 입력 # 서버에서 메일 발송시 나타나는 도메인 (From 도메인 설정) myorigin = $myhostname # 서버에서 메일받을 주소 입력 (all: 전체 수신) inet_interfaces = all # 메일 수신 도메인 설정 mydestination = $myhostname, localhost.$mydomain, localhost, $mydomain # 메일 서버가 메일을 중계 할 대상을 지정 relay_domains = $mydestination |
2. postfix 재시작
systemctl restart postfix |
3. 메일 발송 테스트
# telnet localhost 25 Trying 192.168.0.128... Connected to mail.example.com. Escape character is '^]'. 220 mail.example.com ESMTP Postfix MAIL FROM: test@example.com 250 2.1.0 Ok RCPT TO: OOOO@gmail.com 250 2.1.5 Ok DATA 354 End data with <CR><LF>.<CR><LF> Subject: title content12312312312312 . 250 2.0.0 Ok: queued as 918C510055C7 quit 221 2.0.0 Bye Connection closed by foreign host. |
'윌리 > System 이것저것' 카테고리의 다른 글
CentOS7 minimal 네트워크 설정 (0) | 2017.03.31 |
---|---|
CentOS7 pyenv 및 파이썬 3.6.1 설치 (0) | 2017.03.31 |
CentOS7 DNS 설치 및 설정 (0) | 2017.03.31 |
[yum 에러] Another app is currently holding the yum lock; waiting for it to exit... (0) | 2017.03.31 |
윈도우 hosts 파일 수정 (0) | 2016.12.14 |