當前位置:首頁 » 操作系統 » linux郵箱

linux郵箱

發布時間: 2023-05-27 11:10:29

❶ 怎樣訂閱linux郵件

1.申請hotmail郵箱
2.用申請的hotmail郵箱向[email protected]發送郵件,郵件內容如穗悉下:
subscribe linux-kernel
3.等待回信,將收到郵侍困件,如下:
Confirmation for subscribe linux-kernel
發件人:Majordomo
時 間:2012年5月10日(星期四) 凌晨0:27 (UTC-05:00 華盛頓、多倫多、古巴、智利)
收件人: chaozang<[email protected]>
Someone (possibly you) has requested thatyour email address be added
to or deleted from the mailing list"[email protected]".

If you really want this action to be taken,please send the following
commands (exactly as shown) back to"[email protected]":

auth e3622bdd subscribe linux-kernel [email protected]

If you do not want this action to be taken,simply ignore this message
and the request will be disregarded.

If your mailer will not allow you to sendthe entire command as a single
line, you may split it using backslashes,like so:

auth e3622bdd subscribe linux-kernel \
[email protected]

If you have any questions about the policyof the list owner, please
contact"[email protected]".

Thanks!

[email protected]
4.回信,內容如下:
auth e3622bdd subscribe linux-kernel [email protected]
至此,盡情享受每天接收>200封linux內核開發郵件的喜悅吧猜談乎!

❷ Linux認證系統管理:linuxmail命令發送郵件失敗

Linux認證系統管理:linuxmail命令發送郵件失敗

使用linux自帶的郵件功能測試郵件發送功能如下:

$ mail -s test [email protected]

sldkfjlskdjf[CTRL+D]

cc:

有時會出再提示:

You have a new mail in /var/spool/mail/root

並且在郵箱中看不到郵件;

解決辦法:

1.查看出錯的日誌

$ tail -n 50 /var/spool/mail/root

From MAILER-DAEMON@ltv_73 Thu Dec 12 11:35:28 2013

Return-Path:

Received: from localhost (localhost)

by ltv_73 (8.13.8/8.13.8) id rBC3ZSPe006446;

Thu, 12 Dec 2013 11:35:28 +0800

Date: Thu, 12 Dec 2013 11:35:28 +0800

From: Mail Delivery Subsystem

Message-Id: <201312120335.rBC3ZSPe006446@ltv_73>

To:

MIME-Version: 1.0

Content-Type: multipart/report; report-type=delivery-status;

boundary="rBC3ZSPe006446.1386819328/ltv_73"

Subject: Returned mail: see transcript for details

Auto-Submitted: auto-generated (failure)

This is a MIME-encapsulated message

--rBC3ZSPe006446.1386819328/ltv_73

The original message was received at Thu, 12 Dec 2013 11:35:18 +0800

from 41_154 [127.0.0.1]

----- The following addresses had permanent fatal errors -----

(reason: 530 5.7.1 Client was not authenticated)

----- Transcript of session follows -----

...while talking to mail.163.com.:

>>> MAIL From: SIZE=519

<<< 530 5.7.1 Client was not authenticated

554 5.0.0 Service unavailable

--rBC3ZSPe006446.1386819328/ltv_73

Content-Type: message/delivery-status

Reporting-MTA: dns; ltv_73

Received-From-MTA: DNS; sohu_41_154

Arrival-Date: Thu, 12 Dec 2013 11:35:18 +0800

Final-Recipient: RFC822; [email protected]

Action: failed

Status: 5.7.1

Diagnostic-Code: SMTP; 530 5.7.1 Client was not authenticated

Last-Attempt-Date: Thu, 12 Dec 2013 11:35:28 +0800

2.修改DNS

$ vim /etc/resolv.conf

修改成可用的DNS,這個地方的修改保存後即生效;

3.修改主機名【也可不做這一步】

$ sysctl kernel.hostname=newhostname

4.重啟郵件服務

$ service sendmail restart

;

❸ LINUX下如何搭建郵件伺服器

可以使用U-Mail郵件伺服器

步驟如下:
1、下載U-Mail郵件系統forCentOS(6.X)一體盤
請去http://www.comingchina.com/html/downloads/下載U-Mail郵件伺服器最新版本。
2、解析好域名,將域名的MX記錄和的A記錄解析到郵件伺服器的IP地址。
MX記錄和A記錄解析方法參考:http://www.comingchina.com/html/faq/anzhuangzhongzhuangbeifen/954.html
如果是將郵件伺服器放置在內網,通過埠映射的方式將外網IP的服務埠映射到內網,那麼必須映射埠:25、110、80等。
3、將BIOS啟動方式設置為光碟機啟動,並放入U-MailforCentOS(6.X)一體盤光碟
4、出現安裝界面後,按回車鍵
5、設置TCP/IP參數(使用Tab鍵切換,空格鍵選擇),選擇如下圖,按「OK」按鈕。

❹ linux能收取163郵箱發來的郵件嗎(非圖形化界面)如果能,該如何配置

mutt+msmtp 可以做到發郵件,目前還沒有在tty下收取商業郵箱的工具,mail -e只能收取系統管理員發送的郵件,而不是商業郵箱。
修改~/.msmtprc:
account qqmail
#設置認證方式, 此處為登錄
auth login
#發送郵件的主機名
host smtp.163.com
from [email protected]
#你在你所使用的郵箱系統中的用戶名
user [email protected]
#郵箱密碼, 當然在這里我的密碼是隨便寫的
password 123456
#日誌文件
logfile ~/.msmtprc.log
#參數指定發送賬戶, 具體世中殲參數名請看msmtp的man page
account default:163mail

配置文件寫好, 要將其許可權修改為 chmod ~/.msmtprc 0600, 然後修改mutt的配置文件, 它的配置搜沖文件名為 ~/.muttrc:
#此處填寫msmtp的絕對路徑名, 可使用 which msmtp 命令得到
set sendmail="/usr/bin/msmtp"
set use_from=yes
#收件人看到的郵件發送人姓名
set realname="xxx"
set [email protected]
#郵件內培模容使用vi編寫
set editor="vi"

兩個配置文件都寫好後, 嘗試發送一封郵件來測試. 在命令行中輸入
mutt -s 'just a test' [email protected]
郵件內容寫好後, 按 :wq 保存退出, 進入另一個界面,按a可添加附件, 按y正式發送郵件。

❺ Linux系統郵件客戶端 & Exchange賬戶相關

Linux系統下常見的郵件客戶端有Thunderbird, Evolution, KMail, Geary, Sylpheed, Claws Mail, Mailspring (之前枝清的Nylas N1), Mutt等。出於個人喜好,每次都是無腦裝Thunderbird。直到去年換了首搭簡工作,新單位郵箱伺服器是Exchange協議的,我就呵呵了。雖然Thunderbird可以裝owl等插件,擴展對Exchange協議的支持,但使用一段時間提示license快到期 -_-# 。

最近換了Mailspring嘗嘗鮮,還是不支持Exchange協議,但可以開DavMail中轉一把,估計後面還是會轉回Thunderbird吧。

sudo apt-get install davmail

然後如下圖簡單的者褲配置一下,填上單位的EWS郵箱伺服器地址,這里注意POP或IMAP/SMTP的本地埠,後面要用到的哦。

後面就可以配置郵件客戶端了,伺服器填本地的127.0.0.1,POP/IMAP/SMTP的埠和DavMail中設置的保持一致。收完郵件收工。

❻ linux下發送郵件過程

發郵件:
mail -s 「標題」 對方@地址.com
然後輸入內容
完成時 輸入 . 然後回車

❼ linux裡面怎樣配置郵件伺服器

Sendmail伺服器配置
首先,在DNS正向解析上添加一個郵件交換器的名稱
這里順便把dns的測試也附上:

啟動sendmail

正向主區域配置文件:

修改sendmail的配置文件
vi /etc/mail/sendmail.cf

改成

修改sendmail的配置文件
vi /etc/mail/sendmail.mc

去掉dnl

再添加兩行

做輸入重定向m4 /etc/mail/sendmail.mc>/etc/mail/sendmail.cf
編輯 /etc/mail/access

執行makemap hash /etc/mail/access.db </etc/mail/access

編輯vi /etc/mail/local-host-names把郵件伺服器使用的域名給添加上去

重啟sendmail服務

最後給[email protected]發送測試郵件

End。。。

❽ linux 怎麼發送郵件

可以從網頁上進行發送郵件,或者用郵件客戶端都可以,一般linux系統都自帶郵件客戶端,如Evolution等。

熱點內容
scratch少兒編程課程 發布:2025-04-16 17:11:44 瀏覽:641
榮耀x10從哪裡設置密碼 發布:2025-04-16 17:11:43 瀏覽:368
java從入門到精通視頻 發布:2025-04-16 17:11:43 瀏覽:88
php微信介面教程 發布:2025-04-16 17:07:30 瀏覽:310
android實現陰影 發布:2025-04-16 16:50:08 瀏覽:794
粉筆直播課緩存 發布:2025-04-16 16:31:21 瀏覽:346
機頂盒都有什麼配置 發布:2025-04-16 16:24:37 瀏覽:213
編寫手游反編譯都需要學習什麼 發布:2025-04-16 16:19:36 瀏覽:817
proteus編譯文件位置 發布:2025-04-16 16:18:44 瀏覽:367
土壓縮的本質 發布:2025-04-16 16:13:21 瀏覽:594