CentOS6 5下呼叫外部郵箱傳送郵件

2021-09-20 20:25:16 字數 1602 閱讀 5005

以下是自己收集的實用linux下簡單配置外部郵箱傳送郵件的方法:

# vim /etc/mail.rc

###呼叫外部郵箱   

set [email protected]

set smtp=smtp.exmail.qq.com  

set [email protected]     

set smtp-auth-password="******"

set smtp-auth=login

然後使用mail命令即可傳送郵件了

# wget 

# xz -d msmtp-1.6.5.tar.xz

# tar xvf msmtp-1.6.5.tar

# cd msmtp-1.6.5

# ./configure --prefix=/usr/local/msmtp

# make && make install

# vim ~/.msmtprc                                       

account default     

host smtp.exmail.qq.com     

from [email protected]

user [email protected]

password ******

auth login   

logfile ~/.msmtp.log

# yum install mutt -y

# vim /etc/muttrc

set sendmail="/usr/local/msmtp/bin/msmtp"   

set use_from=yes     

set realname="******"     

set editor="vim"

# echo "這裡是正文" |mutt -s "這裡是標題" [email protected]

echo "email" |mutt -s"test" ***@sina.com

msmtp: envelope from address root@ not accepted by the server

msmtp: server message: 501 mail from address must be same as authorization user

msmtp: could not send mail (account default from /usr/local/msmtp/etc/msmtprc)

error sending message, child exited 65 (data format error.).

could not send the message.

修改/etc/muttrc:

set sendmail="/usr/local/msmtp/bin/msmtp"

set use_from=yes

set envelope_from="yes"

set realname="[email protected]"

set editor="vim"

set from="[email protected]"

Centos6 5下iscsi儲存搭建

在搭建vsphere環境需要用到網路儲存來模擬生產環境中的應用,現將一台800g 硬碟的伺服器配置成iscsi儲存。iscsi伺服器如下 ip 10.11.68.10 硬碟 除伺服器基本應用外,劃分500g作為儲存用,由於採用的lvm,我們直接建立邏輯卷即可。root iscsi10 vgs vg ...

CentOS 6 5下編譯安裝TFS

tfs官方有個安裝文件 不過如果對於小白確實寫的太簡單了。本人整理了自己編譯安裝tfs的過程,給大家參考一下。一 安裝依賴包yum y install automake yum y install libtool yum y install readline readline devel yum y...

centos 6 5下KVM環境搭建

一 作業系統配置 1.使用root許可權登入 2.修改核心模式為相容核心啟動 vim boot grub grub.conf 主要修改default 1 3.關閉selinux 兩種方式 1.使用setenforce 0命令 立即生效,重啟後失效。2.修改配置檔案,vim etc selinux c...