"Sendmail"의 두 판 사이의 차이

오픈소스 비즈니스 컨설팅
둘러보기로 가기 검색하러 가기
 
 
(같은 사용자의 중간 판 하나는 보이지 않습니다)
13번째 줄: 13번째 줄:
  
 
==사용자 가이드==
 
==사용자 가이드==
===메일 발송===
+
=== 메일 발송 ===
 +
 
 
*Command Line에서 메일 발송
 
*Command Line에서 메일 발송
 +
 +
yum -y install sendmail sendmail-cf
 +
yum -y install telnet
 +
 
  #--- 메일 발송
 
  #--- 메일 발송
 
  echo "this is a test" | sendmail -s test@gmail.com
 
  echo "this is a test" | sendmail -s test@gmail.com
 
  #--- 첨부 파일을 포함한 메일 발송
 
  #--- 첨부 파일을 포함한 메일 발송
  mutt -s "Test Backup" -a /test.tar -- test@gmail.com < message.txt
+
  mutt -s "Test Backup" -a /test.tar -- test@gmail.com < message.txt<font face="sans-serif, Arial, Verdana, Trebuchet MS"><span style="white-space: normal;">
 +
</span></font>
  
 
==관리자 가이드==
 
==관리자 가이드==
  
 
==참고 문헌==
 
==참고 문헌==
 +
*[[Qmail]]
  
 
[[Category:오픈소스]]
 
[[Category:오픈소스]]
 
[[Category:email]]
 
[[Category:email]]

2018년 7월 19일 (목) 02:47 기준 최신판

메일 발송 프로그램인 sendmail을 정리 한다.

  • 홈페이지 :
  • 다운로드 :
  • 라이선스 :
  • 플랫폼 :


설치 가이드

Ubuntu Server에서 sendmail 설치

CentOS에서 sendmail 설치

사용자 가이드

메일 발송

  • Command Line에서 메일 발송
yum -y install sendmail sendmail-cf
yum -y install telnet

#--- 메일 발송
echo "this is a test" | sendmail -s test@gmail.com
#--- 첨부 파일을 포함한 메일 발송
mutt -s "Test Backup" -a /test.tar -- test@gmail.com < message.txt

관리자 가이드

참고 문헌