mailx 使用ssl郵件傳送配置 2018-12-28
先安裝mailxyum install mailx
編輯配置檔案vim /etc/mail.rc
追加以下內容
set from=example@qq.com
set smtp=smtps://smtp.qq.com:465
set smtp-auth-user=example@qq.com
set smtp-auth-password=**************
set smtp-auth=login
set ssl-verify=ignore
set nss-config-dir=/root/.certs
set from=example@qq.com | 傳送郵箱 |
---|---|
set smtp=smtps://smtp.qq.com:465 | 發件伺服器 |
set smtp-auth-user=example@qq.com | 發件使用者名稱 |
set smtp-auth-password=************** | 郵箱密碼或授權碼 |
set smtp-auth=login | 連線方式,用login即可 |
set ssl-verify=ignore | 啟用ssl |
set nss-config-dir=/root/.certs | 證書位置 |
證書配置
mkdir -p /root/.certs/
echo -n | openssl s_client -connect smtp.qq.com:465 | sed -ne '/-BEGIN CERTIFICATE-/,/-END CERTIFICATE-/p' > ~/.certs/qq.crt
certutil -A -n "GeoTrust SSL CA" -t "C,," -d ~/.certs -i ~/.certs/qq.crt
certutil -A -n "GeoTrust Global CA" -t "C,," -d ~/.certs -i ~/.certs/qq.crt
certutil -A -n "GeoTrust SSL CA - G3" -t "Pu,Pu,Pu" -d ~/.certs/./ -i qq.crt
certutil -L -d /root/.certs
測試傳送郵件echo "郵件正文" | mail -s "郵件主題" example@qq.com
相關文章
- 配置mail使用SMTP傳送郵件AI
- laravel 傳送郵件 使用ssl 報錯為:" stream_socket_client(): SSL :"Laravelclient
- Alertmanager傳送告警郵件配置
- 使用phpmailer傳送郵件PHPAI
- 使用 smtplib 傳送郵件
- spring boot配置QQ郵箱傳送郵件Spring Boot
- 谷歌郵箱,配置傳送郵件密碼谷歌密碼
- 【Grafana】告警配置併傳送郵件Grafana
- SpringBoot整合Mail傳送郵件&傳送模板郵件Spring BootAI
- 使用阿里雲傳送郵件阿里
- 如何使用Excel傳送郵件?Excel
- 郵件傳送
- 傳送郵件
- laravel 傳送郵件以及引數配置Laravel
- 使用Apache commons email傳送郵件ApacheAI
- .NET Core使用FluentEmail傳送郵件AI
- springboot如何使用outlook傳送郵件Spring Boot
- java郵件傳送Java
- python傳送郵件Python
- Django——郵件傳送Django
- gmail傳送郵件AI
- phpcms傳送郵件PHP
- 郵件的傳送
- Laravel 傳送郵件Laravel
- thinkjs 傳送郵件JS
- SpringBoot傳送郵件Spring Boot
- SpringBoot郵件傳送Spring Boot
- Laravel傳送郵件Laravel
- PHP傳送郵件PHP
- nodejs 傳送郵件NodeJS
- 在Python如何使用SMTP傳送郵件Python
- 使用Volo.Abp.MailKit傳送郵件AI
- Spring Boot中使用JavaMailSender傳送郵件Spring BootJavaAI
- Power Automate使用Shared Mailbox傳送郵件AI
- Java Mail 郵件傳送(二):簡單封裝的郵件傳送JavaAI封裝
- golang傳送郵件(qq郵箱)Golang
- Android 快速傳送郵件Android
- SpringBoot傳送郵件(二)Spring Boot