본문 바로가기
OS/Linux

cent os / mutt

by 하하IT 2020. 4. 22.

1.설지

 yum install mutt

 apt-get install mutt

2. 환경설정

mkdir ~/.mutt

vi ~/.mutt/muttrc

 

 

set from="보내는사람이름 <보내는메일주소@gmail.com>"

set imap_user ='보내는 메일주소@gmail.com'

set imap_pass ='보내는 메일주소계정비번'

set spoolfile = imaps://imap.gmail.com:993/INBOX

set folder = imaps://imap.gmail.com:993

set record="imaps://imap.gmail.com/[Gmail]/Sent Mail"

set postponed="imaps://imap.gmail.com/[Gmail]/Drafts"

set header_cache="~/.mutt/cache/headers"

set message_cachedir="~/.mutt/cache/bodies"

set certificate_file="~/.mutt/certificates"

 

 

 

설정후 mutt 실행하여 받은메일함 목록을 못가져오는경우 

https://www.google.com/settings/security/lesssecureapps

에 접속하여 "보안수준이 낮은 앱의 액세스"를 "사용"으로 선택함

 

3. 발송

 3.1 내용없이 제목만 보내는경우 

     mutt -s "subject" -- 수신메일주소 < /dev/null

 

 3.1 내용없이 제목,첨부파일 만 보내는경우 

     mutt -s "subject" -a  파일명 -- 수신메일주소 < /dev/null

 

 3.2 첨부파일없이 제목("subject")과 내용("/opt/context.txt")을 보내는경우 

     mutt -s "subject"  -- 수신메일주소 <  /opt/context.txt

 

 3.3 n개의 첨부파일  ,n명의 수신자  제목("subject")과 내용("/opt/context.txt")을 보내는경우 

     mutt -s "subject"  -a 첨부파일1 -a 첨부파일2 -a 첨부파일3   -- 수신메일주소1,수신메일주소2 <  /opt/context.txt

 

 

4. imap방식의 설정

##### setting

# mkdir ~/.mutt

# vi ~/.mutt/muttrc

 

# me

set realname = "이름"

set from = "계정@도메인"

set envelope_from = yes

 

# work account info

set imap_user="계정"

set imap_pass="비밀번호"

set folder = imaps://imap서버주소/

 

# default mailboxes

## this is an exchange server, so this is where Outlook puts its stuff

set spoolfile = "=INBOX"

set record = "=Sent Items"

set postponed = "=Drafts"

## save copies of sent mail to $record

set copy=yes

 

# color scheme

#source ~/.mutt/solarized/mutt-colors-solarized-dark-16.muttrc 

 

# things I can't live without

set sort = threads

 

# vim-ish keybindings for going to the bottom of things

#bind pager "G" bottom

#bind index "G" bottom

#bind browser "G" bottom

 

 

5. smtp 설정방법

 # Set smtp url

set smtp_url = "smtp://user@smtp.domain:25"  # ESMTP with TLS  set smtp_url="smtp://user@domain.org[:port]"

set smtp_pass="pass"  # 비밀번호

set from="user@domain" #보내는사람 메일주소

set realname="username" #보내는사람이름

'OS > Linux' 카테고리의 다른 글

centos / yum  (0) 2020.04.24
linux / rdate / 시간동기화  (0) 2020.04.24
centos / timezone변경 UTC --> KST  (0) 2020.04.22
centos / ntp  (0) 2020.04.21
linux / scp / 원격지 <-> 로컬 파일 복사  (0) 2020.04.20