CentOS 6.6使用sendmail登陆第三方邮件系统发邮件

sendmail如何设置第三方服务器发邮件

  1. yum install sendmail

2、停止postfix邮件服务,(系统默认打开,占用25端口)

#service postfix stop

3.修改配置文件,添加5行 set 有关内容

#vim /etc/mail.rc

# Outgoing messages are sent in ISO-8859-1 if all their characters are
# representable in it, otherwise in UTF-8.
set sendcharsets=iso-8859-1,utf-8
set [email protected]
set smtp=smtp.qq.com:25
set [email protected]
set smtp-auth-password=xxx

4、启动sendmail服务

# service sendmail restart

5.  测试

#echo test | mail -s  aaa   [email protected]

格式说明:

语法:echo ‘内容‘ | mail -s “主题”用户名@地址

例如:

echo “text” | mail -s “program” user

6、登陆收件箱

时间: 2024-10-19 19:46:50

CentOS 6.6使用sendmail登陆第三方邮件系统发邮件的相关文章

使用telnet登陆smtp服务发邮件

最近在弄公司的反垃圾邮件系统,发现有个邮件系统发了不少的垃圾邮件进来,使用telnet 登录上去,尝试发一下邮件,竟然能成功发送,原来这邮局系统是没有限制,被利用了,唉,下面介绍一下如何使用命令 telnet 来进行伪造手工发送邮件. # telnet mail.coratur.cu 25 helo coratur.cu mail from:<[email protected]> rcpt to:<[email protected]> data from:[email protec

CentOS 6x 关于sendmail发邮件问题

sendmail如何设置第三方服务器发邮件 yum install sendmail 2.修改配置文件,添加5行 set 有关内容 vim /etc/mail.rc # Outgoing messages are sent in ISO-8859-1 if all their characters are # representable in it, otherwise in UTF-8. set sendcharsets=iso-8859-1,utf-8 set [email protecte

centos系统,使用vnc登陆报错的解决方案

centos系统,使用vnc登陆报错 "The connection was refused by the host computer" 使用以下两个命令解决: [[email protected] ~]# rm /tmp/.X11-unix/X2 [[email protected] ~]# systemctl restart [email protected]:2.service

【QQ和新浪微博登陆第三方的简单实现】

一.微博登陆第三方 0.去开发平台完成开发者认证:链接地址 创建一个示例应用,获取APPKey <script src=http://tjs.sjs.sinajs.cn/open/api/js/wb.js?appkey=3343891779 type="text/javascript" charset="utf-8"></script> 复制代码 2.部署html和js <div id="wb_connect_btn"

sendMail 发邮件 tls

这个sendMail是一个用perl写的脚本 . 可以看它的帮助信息 [[email protected] fupeng]# ./sendEmail sendEmail-1.56 by Brandon Zehm <[email protected]> Synopsis: sendEmail -f ADDRESS [options] Required: -f ADDRESS from (sender) email address * At least one recipient required

python实现发邮件(sendmail.py )

#!/usr/bin/python #-*-coding:utf-8-*- #-*-coding:utf-8-*- #filename :sendmail.py import sys import smtplib from email.mime.text import MIMEText from email.header import Header from email.mime.multipart import MIMEMultipart from email import Utils imp

Linux 通过sendmail 发邮件到外部邮箱

Linux 通过sendmail 发邮件到外部邮箱 最近在写自动化巡检脚本,想着怎么预警后自动发送邮件报警. 首先下载最新版本mailx-12.4.tar.bz2 # wget http://sourceforge.net/projects/heirloom/files/latest/download?source=files 解压包: # tar jxvf mailx-12.4.tar.bz2 # cd mailx-12.4 # make # make install UCBINSTALL=/

ubuntu和centos下使用外部smtp发邮件

centos上: 第一步:在qq邮箱设置-->账户中开启pop3/smtp服务,并设置独立密码 第二步:yum install -y mailx 第三步:vim /etc/mail.rc 在文件最后添加你的邮箱信息: set [email protected]set smtp=smtp.qq.comset smtp-auth-user=82312924set smtp-auth-password=Your passwordset smtp-auth-login 第四步:就能直接使用echo &quo

CentOS下自动发邮件检测某进程是否存在

目的:利用shell脚本每小时检测数据库是否在运行,当检测到库宕掉时发邮件告警. 1.检查sendmail是否在运行 service sendmail status 没有在运行则启动或安装. 如果是linux 6,则检查postfix是否在运行 service postfix status 2.pmon是oracle五大关键进程之一,如果pmon进程不存在则库一定是关闭了,下面就用脚本检测pmon是否存在. 脚本/root/check.sh如下: #!/bin/bash source .bash