ubuntu安裝sendmail服務

2021-09-01 20:21:53 字數 1371 閱讀 8696

參考:

cat /etc/hostname

1.sudo apt-get install sendmail -y

sudo apt-get install sendmail-cf

2.安裝需要帶附件的服務

sudo apt-get install mailutils

3.sudo vi /etc/mail/sendmail.mc

daemon_options(`family=inet, name=mta-v4, port=smtp, addr=127.0.0.1')dnl

修改addr=0.0.0.0 表明可以連線到任何伺服器

daemon_options(`port=2500, name=mta')dnl

修改埠

4.sudo vi /etc/hosts 第一行 新增郵件網域名稱位址

127.0.0.1 ***.com hostname中的主機名 localhost

5.sudo vi /etc/mail/local-host-names 第一行 新增郵件網域名稱位址

echo "***.com">>/etc/mail/local-host-names

***.com

6.sudo vi /etc/mail/access

connect:hostname中的主機名 relay

connect:localhost.localdomain relay

connect:localhost relay

connect:127.0.0.1

connect:***.com relay

7.生成新的配置檔案

cd /etc/mail

mv sendmail.cf sendmail.org

mv sendmail.cf sendmail.cf~

m4 sendmail.mc > sendmail.cf

8.配置sendmail

sendmailconfig

9./etc/init.d/sendmail restart

service sendmail restart

檢測版本

netstat -napt|grep sendmail

telnet 127.0.0.1 25

10.echo "郵件正文" | mail -s 郵件主題 [email protected]

注意qq與163郵箱有時傳送不成功

mail -s '郵件主題' [email protected] < body.txt

11.發附件

apt-get install sharutils

uuencode 1.doc 2.doc | mail -s 郵件主題 [email protected]

Ubuntu之旅(一)安裝Ubuntu

說起linux,以前搞過rhel5,紅旗等,但是都只是用來做伺服器,沒在上面搞過開發。據說ubuntu易用性和完善性比較好,適合做開發,於是準備裝乙個試試。記述下一路過來的經驗。一 安裝ubuntu 唯一需要注意的是,wubi.exe會自動根據你的電腦判斷安裝32位還是64位的ubuntu作業系統。...

ubuntu簡單安裝

ubuntu簡單安裝 本例介紹硬碟安裝 單ubuntu系統 首先你要獲得ubuntu的安裝盤,設定bios,選擇開機從cdrom安裝。重啟插入ubuntu安裝盤,看到提示,選擇install.第乙個 然後進入橘黃色的介面,不要以為安裝好了。真正的安裝現在才開始。在視窗下雙擊install圖示,開始安...

ubuntu 安裝google chrome瀏覽器

google chrome的開源版本chromium,現在他支援ubuntu了 首先要增加源,我們修改sources.list sudo gedit etc apt sources.list 然後加入源,這裡有兩個不同的源 ubuntu 9.04 jaunty s5 g h8 f x google ...