Notice
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- android 효과음
- FCM
- not working
- 설치
- curl
- 안드로이드 gcm
- Android
- chart.js
- Mail Server
- WebView
- php 시큐어코딩
- php 취약점
- 안드로이드 푸시
- mysql
- soundpool
- html5
- xe
- UML
- PHP
- 우분투
- javascript
- 자바스크립트
- 폼메일
- C#
- dovecot
- 안드로이드
- roundcube
- C# IO
- 자동 생성
- 안드로이드 푸쉬
Archives
- Today
- Total
그러냐
우분투 메일서버 세팅하기 postfix, dovecot, roundcube - 3 본문
반응형
우분투 12 버젼일경우 다음의 설정을 추가해야된다
출처 : https://www.server-world.info/en/note?os=Ubuntu_12.04&p=mail&f=2
root@mail:~#
aptitude -y install dovecot-common dovecot-pop3d dovecot-imapd
root@mail:~#
vi /etc/dovecot/dovecot.conf
# line 26: change ( if not listen IPv6 port )
listen =
*
root@mail:~#
vi /etc/dovecot/conf.d/10-auth.conf
# line 9: uncomment and change ( allow plain text auth )
disable_plaintext_auth =
no
# line 97: add
auth_mechanisms = plain
login
root@mail:~#
vi /etc/dovecot/conf.d/10-mail.conf
# line 30: uncomment and add
mail_location =
maildir:~/Maildir
root@mail:~#
vi /etc/dovecot/conf.d/10-master.conf
# line 88-90: uncomment and add
# Postfix smtp-auth
unix_listener /var/spool/postfix/private/auth {
mode = 0666
user = postfix
# add
group = postfix
# add
}
root@mail:~#
service dovecot restart
dovecot stop/waiting
dovecot start/running, process 5267
또한 로그인이 안되서 한참 애먹었다
설정값이 $config['default_host'] = 'localhost';
이렇게 되있을텐데 로컬호스트를 도메인으로 바꿔주어야한다..
----------------
* 참고폴더생성
maildirmake.dovecot ./Maildir
maildirmake.dovecot ./Maildir/.Drafts
maildirmake.dovecot ./Maildir/.Sent
maildirmake.dovecot ./Maildir/.Trash
maildirmake.dovecot ./Maildir/.Templates
chown pyj:pyj -R Maildir
smtpd_sender_restrictions = reject_unknown_sender_domain
반응형
'Linux' 카테고리의 다른 글
[robots.txt]이용 검색로봇 차단 가이드 (0) | 2017.10.19 |
---|---|
나도 모르게 내 Postfix 메일 서버가 쓰레기(spam) 메일들의 경유지로? (0) | 2016.11.09 |
우분투 메일서버 세팅하기 postfix, dovecot, roundcube - 2 (0) | 2016.11.09 |
우분투 메일서버 세팅하기 postfix, dovecot, roundcube - 1 (0) | 2016.11.09 |
우분투 php curl 설치 후 crontab undefined function (0) | 2016.10.05 |