AskOverflow.Dev

AskOverflow.Dev Logo AskOverflow.Dev Logo

AskOverflow.Dev Navigation

  • 主页
  • 系统&网络
  • Ubuntu
  • Unix
  • DBA
  • Computer
  • Coding
  • LangChain

Mobile menu

Close
  • 主页
  • 系统&网络
    • 最新
    • 热门
    • 标签
  • Ubuntu
    • 最新
    • 热门
    • 标签
  • Unix
    • 最新
    • 标签
  • DBA
    • 最新
    • 标签
  • Computer
    • 最新
    • 标签
  • Coding
    • 最新
    • 标签
主页 / computer / 问题 / 1658191
Accepted
showkey
showkey
Asked: 2021-06-22 19:20:45 +0800 CST2021-06-22 19:20:45 +0800 CST 2021-06-22 19:20:45 +0800 CST

为什么我的雅虎邮箱收不到 mutt 发的邮件?

  • 772

安装 mutt 和邮件:

sudo apt-get install mutt
echo "install gentoo" | mutt -s "gentoo installation handbook" -A  gentoo.pdf  [email protected]

我在我的雅虎电子邮件中找不到电子邮件。检查电子邮件:

sudo cat /var/mail/debian
This message was created automatically by mail delivery software.

A message that you sent could not be delivered to one or more of its
recipients. This is a permanent error. The following address(es) failed:

  [email protected]
    Mailing to remote domains not supported

--1624330018-eximdsn-1608038189
Content-type: message/delivery-status

Reporting-MTA: dns; debian

Action: failed
Final-Recipient: rfc822;[email protected]
Status: 5.0.0

--1624330018-eximdsn-1608038189
Content-type: text/rfc822-headers

修复设置。

sudo  vim  /etc/exim4/update-exim4.conf.conf
dc_eximconfig_configtype="internet"  # previously, it is "local"
sudo service  exim4 restart

再试一次

echo "install gentoo" | mutt -s "gentoo installation handbook" -A  gentoo.pdf  [email protected]

我的雅虎邮箱里仍然没有电子邮件。

sudo cat /var/mail/debian
Return-path: <debian@debian>
Received: from debian by debian with local (Exim 4.92)
    (envelope-from <debian@debian>)
    id 1lvWRG-000IZw-A1
    for [email protected]; Tue, 22 Jun 2021 10:46:58 +0800
MIME-Version: 1.0
Content-Type: multipart/mixed; boundary="1267179262-1624330018=:71419"
Subject: gentoo installation handbook
To: <[email protected]>
X-Mailer: mail (GNU Mailutils 3.5)
Message-Id: <E1lvWRG-000IZw-A1@debian>
From: debian <debian@debian>
Date: Tue, 22 Jun 2021 10:46:58 +0800
X-Exim-DSN-Information: Due to administrative limits only headers are returned


--1624330018-eximdsn-1608038189--

那怎么修呢?

email
  • 1 1 个回答
  • 174 Views

1 个回答

  • Voted
  1. Best Answer
    user1686
    2021-06-23T01:07:27+08:002021-06-23T01:07:27+08:00

    阅读您收到的未送达通知的其余部分。这一次它可能会说一些与以前不同的东西——所以修复新问题。

    普通家庭网络,adsl和pppoe

    邮件提供商越大,它收到的垃圾邮件就越多,因此它对入站邮件执行的检查就越严格。(雅虎和 Outlook/Hotmail 尤其如此。)

    首先,这意味着您从住宅网络(尤其是已知使用动态 IP 地址的网络)成功发送邮件的机会很小。收件人的邮件系统可能会拒绝您的整个 IP 地址范围,无论是由于过去的滥用还是由于它是家庭连接的事实。

    事实上,许多住宅 ISP 会直接阻止到端口 25(SMTP 邮件交换端口)的所有出站连接。如果您的 ISP 这样做,则有时可以删除该块,有时则不能。不,您不能只更改端口。

    因此,如果您想与Yahoo! ,您的邮件服务器需要托管在其他地方——通常服务器托管公司是一个不错的选择。(那些通常更严格地不让他们的客户发送垃圾邮件,所以雅虎更有可能接受他们的邮件。)

    为了从家里发送邮件,您需要通过另一个邮件服务器(“智能主机”)中继邮件,即让 Exim 像桌面邮件客户端一样提交邮件,使用用户名和密码并通过不同的 SMTP 端口。(网上有很多例子可以将 Exim 配置为中继,例如通过您的 Gmail 帐户或通过您的个人邮件服务器。甚至还有仅中继的 MTA,例如 msmtp,可能更合适。)

    其次,您的邮件有一个完全组成的“发件人”地址:它的域名实际上就是debian. 使用真实域名可能有助于让其他邮件提供商相信您的邮件不是垃圾邮件。使用具有有效 MX 记录(甚至有效 SPF 记录)的域名可能会有很大帮助。

    (如果您通过其他提供商进行转发,您必须准确使用属于您在该提供商的帐户的地址——例如,Gmail 只允许从您的 gmail.com 地址发送邮件。在 Exim 中,您可能需要使用“重写”或“伪装”来实现这一点。)

    • 0

相关问题

  • 将 Microsoft Outlook 仅链接到 SMTP 服务器而不是 IMAP/POP

  • 这封电子邮件是如何编码的?

  • 将电子邮件发送到 gmail,以便将其添加到日历中

  • SPF 类型 ptr 不鼓励?那我应该用什么?

  • 为什么 Thunderbird 不会完全删除电子邮件?

Sidebar

Stats

  • 问题 205573
  • 回答 270741
  • 最佳答案 135370
  • 用户 68524
  • 热门
  • 回答
  • Marko Smith

    如何减少“vmmem”进程的消耗?

    • 11 个回答
  • Marko Smith

    从 Microsoft Stream 下载视频

    • 4 个回答
  • Marko Smith

    Google Chrome DevTools 无法解析 SourceMap:chrome-extension

    • 6 个回答
  • Marko Smith

    Windows 照片查看器因为内存不足而无法运行?

    • 5 个回答
  • Marko Smith

    支持结束后如何激活 WindowsXP?

    • 6 个回答
  • Marko Smith

    远程桌面间歇性冻结

    • 7 个回答
  • Marko Smith

    子网掩码 /32 是什么意思?

    • 6 个回答
  • Marko Smith

    鼠标指针在 Windows 中按下的箭头键上移动?

    • 1 个回答
  • Marko Smith

    VirtualBox 无法以 VERR_NEM_VM_CREATE_FAILED 启动

    • 8 个回答
  • Marko Smith

    应用程序不会出现在 MacBook 的摄像头和麦克风隐私设置中

    • 5 个回答
  • Martin Hope
    Saaru Lindestøkke 为什么使用 Python 的 tar 库时 tar.xz 文件比 macOS tar 小 15 倍? 2021-03-14 09:37:48 +0800 CST
  • Martin Hope
    CiaranWelsh 如何减少“vmmem”进程的消耗? 2020-06-10 02:06:58 +0800 CST
  • Martin Hope
    Jim Windows 10 搜索未加载,显示空白窗口 2020-02-06 03:28:26 +0800 CST
  • Martin Hope
    v15 为什么通过电缆(同轴电缆)的千兆位/秒 Internet 连接不能像光纤一样提供对称速度? 2020-01-25 08:53:31 +0800 CST
  • Martin Hope
    andre_ss6 远程桌面间歇性冻结 2019-09-11 12:56:40 +0800 CST
  • Martin Hope
    Riley Carney 为什么在 URL 后面加一个点会删除登录信息? 2019-08-06 10:59:24 +0800 CST
  • Martin Hope
    zdimension 鼠标指针在 Windows 中按下的箭头键上移动? 2019-08-04 06:39:57 +0800 CST
  • Martin Hope
    jonsca 我所有的 Firefox 附加组件突然被禁用了,我该如何重新启用它们? 2019-05-04 17:58:52 +0800 CST
  • Martin Hope
    MCK 是否可以使用文本创建二维码? 2019-04-02 06:32:14 +0800 CST
  • Martin Hope
    SoniEx2 更改 git init 默认分支名称 2019-04-01 06:16:56 +0800 CST

热门标签

windows-10 linux windows microsoft-excel networking ubuntu worksheet-function bash command-line hard-drive

Explore

  • 主页
  • 问题
    • 最新
    • 热门
  • 标签
  • 帮助

Footer

AskOverflow.Dev

关于我们

  • 关于我们
  • 联系我们

Legal Stuff

  • Privacy Policy

Language

  • Pt
  • Server
  • Unix

© 2023 AskOverflow.DEV All Rights Reserve