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
'푸닥거리' 카테고리의 다른 글
아두이노 플랫폼을 활용한 코딩 기초(릴리패드)-2 (0) | 2022.04.02 |
---|---|
아두이노 플랫폼을 활용한 코딩 기초(릴리패드)-1 (0) | 2022.04.02 |
postfix dovecot imap (0) | 2022.03.31 |
vscode pem bad permissions windows (0) | 2022.03.31 |
[Error] The following PHP extensions are not available in your PHP configuration! dom (0) | 2022.03.30 |
댓글