본문으로 바로가기

[참고] https://help.ubuntu.com

blog.naver.com/budget74

주로 help.ubuntu.com에서 도움을 많이 받았는데 설정하는 것이 많다보니 일일이 다 정리를 못 하겠습니다.

맥락만 정리하고 세부설정을 참고 사이트를 활용하세요.

1. postfix 설치

#sudo apt-get install postfix

설치 후 설정 작업이 필요합니다. 아래 페이지를 참고하세요.

Troubleshooting: https://help.ubuntu.com/community/Postfix

2. mailutils 설치

#sudo apt-get install mailutils

3. POP3 설치

#sudo apt-get install courier-pop

Troubleshooting: https://help.ubuntu.com/community/PostfixBasicSetupHowto#Installing courier IMAP and POP3

4. IMAP 설치

#sudo apt-get install courier-imap

Troubleshooting: https://help.ubuntu.com/community/PostfixBasicSetupHowto#Installing courier IMAP and POP3

5. Anti-Spam 설치

#sudo apt-get install amavisd-new spamassassin clamav-daemon

#sudo apt-get install libnet-dns-perl libmail-spf-query-perl pyzor razor

#sudo apt-get install arj bzip2 cabextract cpio file gzip lha nomarch pax rar unrar unzip zip zoo

설치 후 설정 작업이 필요합니다. 아래 페이지를 참고하세요.

Troubleshooting: https://help.ubuntu.com/community/PostfixAmavisNew

6. [옵션 Webmail] squirrelmail 설치

#sudo apt-get install squirrelmail

#sudo squirrelmail-configure

설치 후 설정 작업이 필요합니다. 아래 페이지를 참고하세요. (설정 완료 후 http://your-domain/squirrelmail 로 접속)

Troubleshooting: https://help.ubuntu.com/community/Squirrelmail

* 한글 설정

System 언어를 확인하여 'i18n.php'에 설정해 주셔야 합니다.

저는 아래와 같이 'ko_KR.UTF-8' 를 사용하고 있어서 944라인에 다음과 같이 삽입하였습니다.

#echo $LANG

ko_KR.UTF-8

#sudo vi /usr/share/squirrelmail/functions/i18n.php

939 $languages['ko_KR']['NAME'] = 'Korean';
940 $languages['ko_KR']['CHARSET'] = 'euc-KR';
941 // Function does not provide all needed options
942 // $languages['ko_KR']['XTRA_CODE'] = 'korean_charset_xtra';
943 $languages['ko']['ALIAS'] = 'ko_KR';
944 $languages['ko_KR']['LOCALE'] = 'ko_KR.UTF-8';

그럼 Ubuntu 에서 Mail / WebMail 모두 잘 설치하시기 바랍니다.