91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Centos發郵件遇到的問題怎么解決

發布時間:2022-04-12 16:30:16 來源:億速云 閱讀:602 作者:iii 欄目:編程語言

本篇內容介紹了“Centos發郵件遇到的問題怎么解決”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!

網易163免費郵箱相關服務器信息:

Centos發郵件遇到的問題怎么解決

一、安裝和配置:

1.1、安裝

[root@linux-node2 ~]# yum install mailx -y

loaded plugins: fastestmirror, security

setting up install process

determining fastest mirrors

 * base: mirrors.aliyun.com

 * extras: mirrors.aliyun.com

 * updates: mirrors.aliyun.com

base            | 3.7 kb  00:00  

epel            | 3.2 kb  00:00  

epel/primary           | 3.2 mb  00:00  

epel              12521/12521

extras            | 3.4 kb  00:00  

icehouse           | 2.9 kb  00:00

updates            | 3.4 kb  00:00  

updates/primary_          | 1.2 mb  00:00  

package mailx-12.4-8.el6_6.x86_64 already installed and latest version

nothing to do

1.2、配置(以163郵箱為例)

首先你的郵箱要支持你的需求,到郵箱里去配置

 Centos發郵件遇到的問題怎么解決

Centos發郵件遇到的問題怎么解決

然后到/etc/mail.rc的配置文件中去添加

set from=admin@163.com smtp=smtp.163.com smtp-auth-user=admin smtp-auth-password=xxxxxx  smtp-auth=login

[root@linux-node2 ~]# echo “12345” | mail -v -s “test” 

至此應該是沒問題,但是就是收不到郵件。得了,開始排錯!所有的網絡、配置檢查完成后,還是收不到郵件,最后檢查到端口發現問題!!!

[root@linux-node2 ~]# telnet smtp.163.com 25

trying 220.181.12.17...

^c

[root@orcherstrator ~]# nc -vz -w 1 smtp.163.com 25

nc: connect to smtp.163.com port 25 (tcp) timed out: operation now in progress

nc: connect to smtp.163.com port 25 (tcp) timed out: operation now in progress

nc: connect to smtp.163.com port 25 (tcp) timed out: operation now in progress

nc: connect to smtp.163.com port 25 (tcp) timed out: operation now in progress

nc: connect to smtp.163.com port 25 (tcp) timed out: operation now in progress

nc: connect to smtp.163.com port 25 (tcp) timed out: operation now in progress

nc: connect to smtp.163.com port 25 (tcp) timed out: operation now in progress

nc: connect to smtp.163.com port 25 (tcp) timed out: operation now in progress

原來服務器根本就不能和第三方郵箱建立連接,問題找到,開始處理,一查才知道阿里云服務器把25端口給封了,需要申請解封。好吧!登錄管理控制臺,開始申請!!!

Centos發郵件遇到的問題怎么解決

Centos發郵件遇到的問題怎么解決 

阿里云的審核速度還挺快的,兩個多小時后反饋結果了,不過看看就吐口老血!!!

Centos發郵件遇到的問題怎么解決 

只能想其他的辦法唄!!最后決定使用163郵箱的465加密端口

[root@orcherstrator ~]# telnet smtp.163.com 465

trying 220.181.12.14...

connected to smtp.163.com.

escape character is '^]'.

^c

connection closed by foreign host.

root@orcherstrator ~]# nc -vz -w 1 smtp.163.com 465

connection to smtp.163.com 465 port [tcp/urd] succeeded!

看樣子有戲哦!!!修改/etc/mail.rc的配置

set from=admin@163.com

set smtp="smtps://smtp.163.com:465"

set smtp-auth-user=admin@163.com

set smtp-auth-password=xxxxx

set smtp-auth=login

set smtp-use-starttls

set ssl-verify=ignore

set nss-config-dir=/etc/pki/nssdb/

[root@linux-node2 ~]# echo 'hello' |mail -v -s "test" yueyuancun@163.com

resolving host smtp.163.com . . . done.

connecting to 123.125.50.133 . . . connected.

error in certificate: peer's certificate issuer is not recognized. ##沒有對端的證書 

comparing dns name: "*.163.com"

ssl parameters: cipher=aes-128-gcm, keysize=128, secretkeysize=128,

issuer=cn=geotrust ssl ca - g3,o=geotrust inc.,c=us

subject=cn=*.163.com,o="netease (hangzhou) network co., ltd",l=hangzhou,st=zhejiang,c=cn

220 163.com anti-spam gt for coremail system (163com[20141201])

>>> ehlo linux-node2

250-mail

250-pipelining

250-auth login plain

250-auth=login plain

250-coremail 1uxr2xkj7kg0xki17xgru7i0s8fy2u3uj8cz28x1uuuuu7ic2i0y2ufvhs-cuca0xdruuuuj

250-starttls

250 8bitmime

>>> auth login

334 dxnlcm5hbwu6

>>> exvlexvhbmn1bkaxnjmuy29t

334 ugfzc3dvcmq6

>>> agvsbg9uawhhbze5odkxma==

535 error: authentication failed

smtp-server: 535 error: authentication failed

"/root/dead.letter" 11/299

. . . message not sent. ##郵件沒有發出去

至此,網上的case都說能收到郵件,但是我這就是收不到,那就根據錯誤來解決唄!!!搞證書

[root@linux-node2 ~]# mkdir -p /root/.certs/

[root@linux-node2 ~]# echo -n | openssl s_client -connect smtp.163.com:465 | sed -ne '/-begin certificate-/,/-end certificate-/p' > ~/.certs/163.crt

depth=2 c = us, o = geotrust inc., cn = geotrust global ca

verify return:1

depth=1 c = us, o = geotrust inc., cn = geotrust ssl ca - g3

verify return:1

depth=0 c = cn, st = zhejiang, l = hangzhou, o = "netease (hangzhou) network co., ltd", cn = *.163.com

verify return:1

done

[root@linux-node2 ~]# certutil -a -n "geotrust ssl ca" -t "c,," -d ~/.certs -i ~/.certs/163.crt

[root@linux-node2 ~]# certutil -a -n "geotrust global ca" -t "c,," -d ~/.certs -i ~/.certs/163.crt

[root@linux-node2 ~]# certutil -l -d /root/.certs

certificate nickname                                      trust attributes

                                                   ssl,s/mime,jar/xpi

geotrust ssl ca                                          c,,  

[root@linux-node2 ~]# cd /root/.certs/

[root@linux-node2 .certs]# certutil -a -n "geotrust ssl ca - g3" -t "pu,pu,pu"  -d ./ -i 163.crt

notice: trust flag u is set automatically if the private key is present.

[root@linux-node2 .certs]# cd 

[root@linux-node2 ~]# vim /etc/mail.rc 

set from=admin@163.com

set smtp="smtps://smtp.163.com:465"

set smtp-auth-user=admin@163.com

set smtp-auth-password=xxxxx

set smtp-auth=login

set smtp-use-starttls

set ssl-verify=ignore

set nss-config-dir=/root/.certs

[root@linux-node2 ~]# echo 'hello' |mail -v -s "test" admin@163.com

resolving host smtp.163.com . . . done.

connecting to 123.125.50.132 . . . connected.

comparing dns name: "*.163.com"

ssl parameters: cipher=aes-128-gcm, keysize=128, secretkeysize=128,

issuer=cn=geotrust ssl ca - g3,o=geotrust inc.,c=us

subject=cn=*.163.com,o="netease (hangzhou) network co., ltd",l=hangzhou,st=zhejiang,c=cn

220 163.com anti-spam gt for coremail system (163com[20141201])

>>> ehlo linux-node2

250-mail

250-pipelining

250-auth login plain

250-auth=login plain

250-coremail 1uxr2xkj7kg0xki17xgru7i0s8fy2u3uj8cz28x1uuuuu7ic2i0y2uf6b612uca0xdruuuuj

250-starttls

250 8bitmime

>>> auth login

334 dxnlcm5hbwu6

>>> exvlexvhbmn1bkaxnjmuy29t

334 ugfzc3dvcmq6

>>> agvsbg9uawhhbze5odk=

235 authentication successful

>>> mail from:<admin@163.com>

250 mail ok

>>> rcpt to:<admin@163.com>

250 mail ok

>>> data

354 end data with <cr><lf>.<cr><lf>

>>> .

250 mail ok queued as smtp2,dngowadh53ejp5bbgyuhaa--.2s2 1536206732

>>> quit

221 bye

終于成功了!!!!

Centos發郵件遇到的問題怎么解決

“Centos發郵件遇到的問題怎么解決”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

咸阳市| 本溪| 姜堰市| 化隆| 孝义市| 综艺| 甘谷县| 郸城县| 大冶市| 灵璧县| 穆棱市| 威信县| 淮北市| 儋州市| 苏尼特左旗| 河西区| 怀宁县| 东乡县| 岗巴县| 临猗县| 泗阳县| 泰安市| 扶绥县| 黄冈市| 布拖县| 扶风县| 西畴县| 自贡市| 南漳县| 兴山县| 桐庐县| 崇礼县| 泽库县| 玉门市| 汕尾市| 尤溪县| 扎鲁特旗| 麻阳| 贵溪市| 彝良县| 四子王旗|