Ubuntu13.10 下Postfix 郵件服務器安裝及基本的設置

一,安裝Postfix和相關軟件包
1.安裝Postfix
apt-get install postfix  
在安裝的過程當中,會提示輸入選擇類型和域名。
2.安裝mailx軟件包
apt-get install mailutils
mailx軟件包是一個命令行的郵件屬性程序,mail命令包含在mailx軟件包裏面

二,測試你的默認設置
1.添加測試用戶(以s爲例)
useradd -m -s /bin/bash s
passwd s
這裏密碼設置爲123456。在後述的測試中會用到。

2.用下面的命令測試,其實就是測試25端口是否打開
telnet localhost 25

3.Postfix將在終端中顯示以下提示,這樣你就能夠用來鍵入SMTP命令.
  1. root@ubuntu :~# telnet localhost 25  
  2. Trying 127.0.0.1...  
  3. Connected to localhost.  
  4. Escape character is '^]'.  
  5. 220 ubuntu ESMTP Postfix (Ubuntu)  
4.編寫郵件併發送
root@ubuntu :~# telnet localhost 25 
Trying 127.0.0.1...  
Connected to localhost.  
Escape character is '^]'. 
220 ubuntu ESMTP Postfix (Ubuntu)  
ehlo localhost               //   
250-ubuntu  
250-PIPELINING  
250-SIZE 10240000  
250-VRFY  
250-ETRN  
250-STARTTLS  
250-ENHANCEDSTATUSCODES  
250-8BITMIME  
250 DSN  
mail from: root@localhost    //   
250 2.1.0 Ok  
rcpt to: fmaster@localhost   //   
250 2.1.5 Ok  
data                         //  
354 End data with .  
Subject: My first mail on Postfix    //  
this ia the first postfix mail .     //  
.                                    //  
250 2.0.0 Ok: queued as 661C75F796  
quit                                 //  
221 2.0.0 Bye  
Connection closed by foreign host.  
5.切換到fmaster用戶,查看郵件
root@ubuntu :~# su - fmaster  
fmaster@ubuntu:~$ mail  
"/var/mail/fmaster": 1 message 1 new  
>N   1 root@localhost     火  1月 29 12:  12/435   My first mail on Postfix  

此時的郵件存放在/var/mail/fmaster文件中。
當這個郵件被打開以後,Postfix就會以mbox的風格處理郵件,
將郵件都保存到/home/fmaster/mbox這一個文件中。

6.設置Postfix以支持Maildir風格的郵箱(在修改配置以前備份配置文件)
  1. cp -pf /etc/postfix/main.cf /etc/postfix/main.cf_bak  
  2. vim /etc/postfix/main.cf  
在文件中末尾處,添加以下配置:
  1. home_mailbox=Maildir/  
7.重啓postfix,以使配置生效
  1. /etc/init.d/postfix restart  
8.測試
  1. root@ubuntu:/etc/postfix# telnet localhost 25  
  2. Trying 127.0.0.1...  
  3. Connected to localhost.  
  4. Escape character is '^]'.  
  5. 220 ubuntu ESMTP Postfix (Ubuntu)  
  6. ehlo localhost                       //   
  7. 250-ubuntu  
  8. 250-PIPELINING  
  9. 250-SIZE 10240000  
  10. 250-VRFY  
  11. 250-ETRN  
  12. 250-STARTTLS  
  13. 250-ENHANCEDSTATUSCODES  
  14. 250-8BITMIME  
  15. 250 DSN  
  16. mail from: root@localhost            //   
  17. 250 2.1.0 Ok  
  18. rcpt to: fmaster@localhost           //   
  19. 250 2.1.5 Ok  
  20. data                                 //   
  21. 354 End data with .  
  22. Subject: maildir test                   //   
  23. this is a maildir style mail test .     //   
  24. .                                       //   
  25. 250 2.0.0 Ok: queued as 249315F80D  
  26. quit                                    //   
  27. 221 2.0.0 Bye  
  28. Connection closed by foreign host.  
9.查收郵件這個時候Postfix會在/home/fmaster目錄下面生成一個名爲Maildir的文件夾,全部的郵件都保存在/home/fmaster/Maildir這個文件夾內。
  1. fmaster@ubuntu:~$ ll /home/fmaster/Maildir  
  2. 合計 20  
  3. drwx------ 5 fmaster fmaster 4096  1月 29 12:35 ./  
  4. drwxr-xr-x 3 fmaster fmaster 4096  1月 29 12:35 ../  
  5. drwx------ 2 fmaster fmaster 4096  1月 29 12:35 cur/  
  6. drwx------ 2 fmaster fmaster 4096  1月 29 12:35 new/  
  7. drwx------ 2 fmaster fmaster 4096  1月 29 12:35 tmp/  
  8.   
  9. fmaster@ubuntu:~/Maildir$ cd new  
  10.   
  11. fmaster@ubuntu:~/Maildir/new$ ll  
  12. 合計 12  
  13. drwx------ 2 fmaster fmaster 4096  1月 29 12:35 ./  
  14. drwx------ 5 fmaster fmaster 4096  1月 29 12:35 ../  
  15. -rw------- 1 fmaster fmaster  426  1月 29 12:35 1359430545.Vfc00I16daM671946.ubuntu  
  16.   
  17. fmaster@ubuntu:~/Maildir/new$ less 1359430545.Vfc00I16daM671946.ubuntu  
  18. Return-Path:   
  19. X-Original-To: fmaster@localhost  
  20. Delivered-To: fmaster@localhost  
  21. Received: from localhost (localhost [127.0.0.1])  
  22.         by ubuntu (Postfix) with ESMTP id 249315F80D  
  23.         for ; Tue, 29 Jan 2013 12:35:13 +0900 (JST)  
  24. Subject: maildir test  
  25. Message-Id: <20130129033517.249315F80D@ubuntu>  
  26. Date: Tue, 29 Jan 2013 12:35:13 +0900 (JST)  
  27. From: root@localhost  
  28.   
  29. this is a maildir style mail test .  
  30. 1359430545.Vfc00I16daM671946.ubuntu (END)  
到此爲止發送郵件的服務器就搭建成功了,接下來配置收信服務器。
在配置收信服務器中,須要使用到域名,若是沒有域名能夠修改hosts文件來進行測試。
下面配置中用到的域名: dotuian.com
郵件服務器的IP地址  
: 192.168.0.114 (ubutun)
測試客戶端      : 192.168.0.80  (windows 7)

三,配置收信服務器
1.修改郵件服務器的hosts文件
  1. vim /etc/hosts  
在文件中添加
  1. 127.0.0.1       dotuian.com  
2.修改測試客戶端的hosts文件
以管理員權限運行一個文本編輯器,打開"C:\Windows\System32\drivers\etc\hosts",在裏面添加
  1. 192.168.0.114   dotuian.com  
若是已經存在域名了,就不要上述的修改hosts文件的兩步了。
3.安裝收信服務器
  1. apt-get install courier-pop  
  2. apt-get install courier-imap  
4.修改配置文件
  1. vim /etc/postfix/main.cf  
 (a)將域名增長到"mydestination"。配置以下
  1. mydestination = localhost, ubuntu, localhost.localdomain, localhost, dotuian.com  
 (b)將本地網絡增長到"mynetworks"。由於服務器IP地址爲192.168.0.114,因此配置以下
  1. mynetworks = 192.168.0.0/24, 127.0.0.0/8 [::ffff:127.0.0.0]/104 [::1]/128  
 (c)爲了可以經過網絡接受郵件,修改"inet_interfaces"爲"all"
  1. #inet_interfaces = loopback-only  
  2. inet_interfaces = all  

5.重啓postfix服務器
  1. /etc/init.d/postfix restart  
6.測試域名配置是否成功(a)經過域名dotuian.com發送郵件
  1. root@ubuntu:/etc/postfix# telnet dotuian.com 25  
  2. Trying 127.0.0.1...  
  3. Connected to dotuian.com.  
  4. Escape character is '^]'.  
  5. 220 ubuntu ESMTP Postfix (Ubuntu)  
  6. ehlo dotuian.com                      //  
  7. 250-ubuntu  
  8. 250-PIPELINING  
  9. 250-SIZE 10240000  
  10. 250-VRFY  
  11. 250-ETRN  
  12. 250-STARTTLS  
  13. 250-ENHANCEDSTATUSCODES  
  14. 250-8BITMIME  
  15. 250 DSN  
  16. mail from: shou@dotuian.com          //  
  17. 250 2.1.0 Ok  
  18. rcpt to: fmaster@dotuian.com         //  
  19. 250 2.1.5 Ok  
  20. data                                 //  
  21. 354 End data with .  
  22. Subject: mail test with domain       //  
  23. this is a test mail .                //  
  24. dotuian.com                          //  
  25. .  
  26. 250 2.0.0 Ok: queued as 9E95D5F809  
  27. quit                                 //  
  28. 221 2.0.0 Bye  
  29. Connection closed by foreign host.  
(b)查收郵件檢查/home/fmaster/Maildir/new,能夠看到新建了一個獨立的文件
  1. fmaster@ubuntu:~/Maildir/new$ ll  
  2. 合計 16  
  3. drwx------ 2 fmaster fmaster 4096  1月 29 14:10 ./  
  4. drwx------ 5 fmaster fmaster 4096  1月 29 12:35 ../  
  5. -rw------- 1 fmaster fmaster  426  1月 29 12:35 1359430545.Vfc00I16daM671946.ubuntu  
  6. -rw------- 1 fmaster fmaster  446  1月 29 14:10 1359436215.Vfc00I16d8M538132.ubuntu  
  7.   
  8. fmaster@ubuntu:~/Maildir/new$ less 1359436215.Vfc00I16d8M538132.ubuntu  
  9.   
  10. Return-Path:   
  11. X-Original-To: fmaster@dotuian.com  
  12. Delivered-To: fmaster@dotuian.com  
  13. Received: from dotuian.com (localhost [127.0.0.1])  
  14.         by ubuntu (Postfix) with ESMTP id 9E95D5F809  
  15.         for ; Tue, 29 Jan 2013 14:09:35 +0900 (JST)  
  16. Subject: mail test with domain  
  17. Message-Id: <20130129050947.9E95D5F809@ubuntu>  
  18. Date: Tue, 29 Jan 2013 14:09:35 +0900 (JST)  
  19. From: shou@dotuian.com  
  20.   
  21. this is a test mail .  
  22. dotuian.com  
  23. 1359436215.Vfc00I16d8M538132.ubuntu (END)  
7.測試Courier POP3
  1. root@ubuntu:/etc/postfix# telnet dotuian.com 110  
  2. Trying 127.0.0.1...  
  3. Connected to dotuian.com.  
  4. Escape character is '^]'.  
  5. +OK Hello there.  
  6. user fmaster          //  
  7. +OK Password required.  
  8. pass test1234         //  
  9. +OK logged in.  
  10. quit                  //  
  11. +OK Bye-bye.  
  12. Connection closed by foreign host.  
8.測試 Courier IMAP
  1. root@ubuntu:/etc/postfix# telnet dotuian.com 143  
  2. Trying 127.0.0.1...  
  3. Connected to dotuian.com.  
  4. Escape character is '^]'.  
  5. * OK [CAPABILITY IMAP4rev1 UIDPLUS CHILDREN NAMESPACE THREAD=ORDEREDSUBJECT THREAD=REFERENCES SORT QUOTA IDLE ACL ACL2=UNION] Courier-IMAP ready. Copyright 1998-2011 Double Precision, Inc.  See COPYING for distribution information.  
  6. a login fmaster test1234            //  
  7. a OK LOGIN Ok.  
  8. a logout                            //  
  9. * BYE Courier-IMAP server shutting down  
  10. a OK LOGOUT completed  
  11. Connection closed by foreign host.  
9.經過Microsoft Outlook收發郵件是的配置
相關文章
相關標籤/搜索