溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

如何在Centos 7中安裝配置mailx并生成163證書

發(fā)布時(shí)間:2020-06-01 13:46:26 來源:億速云 閱讀:371 作者:Leah 欄目:系統(tǒng)運(yùn)維

這篇文章為大家分享在Centos 7中安裝配置mailx并生成163證書的方法。文章涵蓋mailx的配置和使用方法,希望大家通過這篇文章能有所收獲。

一、安裝mailx
yum -y install mailx

二、配制

[root@sea~]# vim /etc/mail.rc
set from=sea_xyz@163.com                           # 發(fā)送郵件后顯示的郵件發(fā)送方
set smtp.163.com                                            # 163 smtp郵件服務(wù)器
set smtp-auth-user=youremail@163.com       # 你的163郵箱
set smtp-auth-password=yourpass                 # 你的163郵箱密碼(設(shè)置頁面加密后的授權(quán)碼)
set smtp-auth=login                                         # 動(dòng)作、登錄
set smtp-use-starttls                                        # 安全連接傳輸
set ssl-verify=ignore                                        # 忽略ssl驗(yàn)證
set nss-config-dir=/root/.certs                         # 證書路徑

三、生成163的證書

mkdir -p /root/.certs/
echo -n | openssl s_client -connect smtp.163.com:465 | sed -ne '/-BEGIN CERTIFICATE-/,/-END CERTIFICATE-/p' > ~/.certs/163.crt
certutil -A -n "GeoTrust SSL CA" -t "C,," -d ~/.certs -i ~/.certs/163.crt
certutil -A -n "GeoTrust Global CA" -t "C,," -d ~/.certs -i ~/.certs/163.crt
certutil -L -d /root/.certs

cd /root/.certs/
certutil -A -n "GeoTrust SSL CA - G3" -t "Pu,Pu,Pu" -d ./ -i 163.crt

出現(xiàn) 下面提示說明正常
Notice: Trust flag u is set automatically if the private key is present.

以上就是在Centos 7中安裝配置mailx并生成163證書的方法,詳細(xì)使用情況還需要大家自己親自動(dòng)手使用過才能領(lǐng)會(huì)。如果想了解更多相關(guān)內(nèi)容,歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI