移动139邮箱不接收监控邮件

最近这两天没有收到DB的监控邮件,通过对邮件日志的分析,发现了如下信息:

# tail -f /var/spool/mail/root

...... 

Auto-Submitted: auto-generated (failure)
This is a MIME-encapsulated message
--p4C24DBY021092.1305165853/localhost.localdomain
The original message was received at Thu, 12 May 2011 10:04:13 +0800
from localhost.localdomain [127.0.0.1]
   ----- The following addresses had permanent fatal errors -----
<xxxxxx@139.com>
    (reason: 550 Requested action not taken: mail eawQrJDrH9sfQMtNISs4AA--.333S2 is rejected, 1767)
   ----- Transcript of session follows -----
... while talking to mx1.mail.139.com.:
>>> DATA
<<< 550 Requested action not taken: mail eawQrJDrH9sfQMtNISs4AA--.333S2 is rejected, 1767
554 5.0.0 Service unavailable

 

--p4C24DBY021092.1305165853/localhost.localdomain
Content-Type: message/delivery-status

Reporting-MTA: dns; localhost.localdomain
Received-From-MTA: DNS; localhost.localdomain
Arrival-Date: Thu, 12 May 2011 10:04:13 +0800

Final-Recipient: RFC822; xxxxxxxxxx@139.com
Action: failed
Status: 5.2.0
Remote-MTA: DNS; mx1.mail.139.com
Diagnostic-Code: SMTP; 550 Requested action not taken: mail eawQrJDrH9sfQMtNISs4AA--.333S2 is rejected, 1767
Last-Attempt-Date: Thu, 12 May 2011 10:04:13 +0800

...... 

 

 通过以上的日志片段得知应该是在发送邮件时被mail server rejected了。通过命令行模式测试一下整个发送邮件的过程:

# telnet mx1.mail .139 .com   25
Trying 
221.176.9.178 ...
Connected to mx1.mail
.139 .com ( 221.176.9.178 ).
Escape character is '^]'.
220   139 .com Anti-spam GT for Coremail System (caixun [ 20100128 ]
HELO   $mailDomain(即@符后面的东东)
250  OK
MAIL FROM:<root@$mailDomain>
250  Mail OK 
RCPT TO:< $mailboxName >
250  Mail OK 
DATA
354  End data with <CR><LF>.<CR><LF>
此处输入邮件内容
.
450 Requested action not taken: d6wQrJCLT7i_QctN8UA4AA--.475S2, please try again

 

在邮件最后出现了问题,针对此问题搜索了一下,用以下方法解决了此问题:

vi /etc/mail/sendmail.cf
找到

#Dj$w.Foo.COM 

在后面添加自己的邮件域,重启sendmail,发邮件成功。


参考:

http://www.5dmail.net/html/2006-11-1/2006111120755.htm 

http://blog.csdn.net/remotesupport/archive/2011/02/27/6211883.aspx 

 

转载于:https://www.cnblogs.com/minglog/archive/2011/05/12/2044145.html

### 使用 Vivado 2018.3 将设计烧写到 TQ15EG 开发板的教程 #### 准备工作 在开始之前,需确认已安装 Vivado 2018.3 软件,并准备好目标开发板及相关硬件连接设备。TQ15EG 开发板上的 Flash 器件型号为 MT25QU256 并采用连块并联方式[^1]。 #### 设计综合与 RTL 图生成 完成 Verilog 或 VHDL 编码后,在 Vivado 中通过点击 **RTL Analysis** 目录下的 **Open Elaborated Design** 按钮来生成模块的 RTL 图。此操作有助于验证设计逻辑结构是否符合预期[^3]。 #### Bit 流文件生成 进入项目目录中的 `*.runs` 文件夹下寻找 `impl_1` 子文件夹,该路径存储着最终生成的 `.bit` 文件。这是用于配置 FPGA 的二进制数据文件[^2]。 #### 配置流程 启动 Vivado Hardware Manager 工具,建立与目标硬件之间的通信链路。选择正确的 USB-JTAG 接口以及对应的 FPGA 设备。加载上述提到的 `.bit` 文件至内存中并通过 JTAG 进行即时编程或者进一步将其固化入外部非易失性存储器(Flash)。对于后者而言,则需要额外执行一次专门针对 Flash 的烧写过程以确保断电重启后仍能自动恢复运行状态。 ```bash # 示例命令行脚本调用方法 (仅作参考) open_hw_manager connect_hw_server current_hw_target [get_hw_targets */xilinx_tcf/usb/*] set_property PARAM.FREQUENCY 15000000 [get_hw_targets */xilinx_tcf/usb/*] refresh_hw_device [lindex [get_hw_devices] 0] create_hw_bitstream -hw_device [lindex [get_hw_devices] 0] -file ./path/to/project.runs/impl_1/top.bit program_hw_devices [lindex [get_hw_devices] 0] ``` 以上代码片段展示了如何利用 Tcl 脚本来简化整个下载和配置的过程。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值