[TOC]
1. email 邮件命令
CentOS/RHEL安装命令:
[TOC]
CentOS/RHEL安装命令:1
yum -y install mailx
mail 配置:
vim /etc/mail.rc1
2
3
4
5
6
7
8
9
10
11
12
13#配置参数
from: 对方收到邮件时显示的发件人
smtp: 指定第三方发送邮件的smtp服务器地址
smtp-auth: SMTP的认证方式。默认是LOGIN,也可改为CRAM-MD5或PLAIN方式
smtp-auth-user: 第三方发邮件的用户名
smtp-auth-password: 用户名对应密码
#配置详情
set from="12123@qq.com"
set smtp="smtp.qq.com"
set smtp-auth-user="12123@qq.com"
set smtp-auth-password="aawbubhyfhuucbdd"
set smtp-auth=login
mail 命令:
mail –h
-s <邮件主题>:指定邮件的主题;
-c <地址>:添加邮件抄送人,多个人时用逗号隔开;
-b <地址>:添加邮件暗送人;
-a <附件>: 添加附件。
注:部分系统参数稍有差异,最好看帮助
1 | # 语法: |
脚本:1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28#!/bin/bash
help(){
echo "eg: $0 [Subject] [address] [content_file] [file]"
echo ""
exit 1
}
if [ ! -n "$1" ] ; then
help
fi
cDate=`date +%Y%m%d`
if [ ! -n "$2" ] ; then
help
else
mail_to=$2
echo " Send Mail to ${mail_to}"
fi
if [ ! -n "$4" ] ; then
mail -s $1 ${mail_to}<$3
else
mail -s $1 -a $4 ${mail_to}<$3
fi
[root@123]$ ./sendmail.sh test xxxx@qq.com abc.txt
Send Mail to xxx@qq.com
邮件服务启动:1
systemctl status postfix
问题1:sendmail重启报libmysqlclient.so.18不存在
问题描述:1
2sendmail restart
sendmail: error while loading shared libraries: libmysqlclient.so.18: cannot open shared object file: No such file or directory
问题原因:1
2
3
4
5
6[root@node2 ld.so.conf.d]# ldd /usr/sbin/sendmail
linux-vdso.so.1 => (0x00007ffce43fa000)
libldap-2.4.so.2 => /lib64/libldap-2.4.so.2 (0x00007f97fc570000)
liblber-2.4.so.2 => /lib64/liblber-2.4.so.2 (0x00007f97fc361000)
libpcre.so.1 => /lib64/libpcre.so.1 (0x00007f97fc0ff000)
libmysqlclient.so.18 => not found #发现缺少该库
问题解决:1
2
3
4#下载该动态链接库和重新刷新加载lib
sudo wget -O /usr/lib/libmysqlclient.so.18 http://files.directadmin.com/services/es_7.0_64/libmysqlclient.so.18
#echo "/usr/lib/" >>/etc/ld.so.conf
ldconfig
你好看友,欢迎关注博主微信公众号哟! ❤
这将是我持续更新文章的动力源泉,谢谢支持!(๑′ᴗ‵๑)
温馨提示: 未解锁的用户不能粘贴复制文章内容哟!
方式1.请访问本博主的B站【WeiyiGeek】首页关注UP主,
将自动随机获取解锁验证码。
Method 2.Please visit 【My Twitter】. There is an article verification code in the homepage.
方式3.扫一扫下方二维码,关注本站官方公众号
回复:验证码
将获取解锁(有效期7天)本站所有技术文章哟!
@WeiyiGeek - 为了能到远方,脚下的每一步都不能少
欢迎各位志同道合的朋友一起学习交流,如文章有误请在下方留下您宝贵的经验知识,个人邮箱地址【master#weiyigeek.top】
或者个人公众号【WeiyiGeek】
联系我。
更多文章来源于【WeiyiGeek Blog - 为了能到远方,脚下的每一步都不能少】, 个人首页地址( https://weiyigeek.top )
专栏书写不易,如果您觉得这个专栏还不错的,请给这篇专栏 【点个赞、投个币、收个藏、关个注、转个发、赞个助】,这将对我的肯定,我将持续整理发布更多优质原创文章!。
最后更新时间:
文章原始路径:_posts/系统运维/Application/Email/Linux下Email安装配置与发信.md
转载注明出处,原文地址:https://blog.weiyigeek.top/2019/4-22-107.html
本站文章内容遵循 知识共享 署名 - 非商业性 - 相同方式共享 4.0 国际协议