본문 바로가기
푸닥거리

dovecot pop3s imaps

by [김경민]™ ┌(  ̄∇ ̄)┘™ 2022. 4. 1.
728x90

 

https://tecadmin.net/install-dovecot-on-debian-10/

 

How to Install Dovecot (POP/IMAP) on Debian 10

Dovecot is an open-source service for IMAP and POP3 on Unix-like operating systems. It focused on lightweight and secure mail server available for most of the Linux operating system. POP3 (Post Office Protocol 3) and IMAP (Internet Message Access Protocol)

tecadmin.net

 

sudo apt install dovecot-imapd dovecot-pop3d

 

A. 10-auth.conf : 접속권한

 

auth_mechanisms = plain login

disable_plaintext_auth = yes

 

B. 10-mail : 메일 전반

 

mail_location = maildir:~/Maildir

 

C. 10-master : dovecot 전반

 

service pop3-login{

  inet_listener po3{

    port = 110

  }

  inet_listener pop3s {

    port = 995

    ssl = yes

  }

}

 

unix_listener /var/spool/postfix/private/auth {

 mode = 0666

 user = postfix

 group = postfix

}

 

D. 10-ssl.conf : SSL 설정

 

ssl = yes

ssl_cert = </etc/letsencrypt/live/domain/fullchain.pem

ssl_key = </etc/letsencrypt/live/domain/privkey.pem

 

E. 20-pop3 : pop3 전반

 

pop3_uidl_format = %08Xu%08Xv

 

dovecot 적용 = sudo systemctl restart postfix.service

 

 

 

728x90

댓글