英文:
Sending Emacs mail displays domain's front page
问题
以下是您提供的内容的翻译:
这是一个奇怪的情况。我之前已经设置好了Emacs的电子邮件,一切都运行正常。但现在,每当我发送电子邮件(C-x m),它似乎会将电子邮件地址转换为URL请求。如果我像这样发送测试消息(某些信息已经被删除):
To: redacted@gmail.com
Subject: Test 3
From: Danny <danny@redacted.com>
--以下是文本内容--
测试
Emacs会显示Google搜索页面,我认为是使用eww。
消息缓冲区还显示了以下内容:
通过邮件发送...
正在联系主机: gmail.com:80
正在发送...完成
我的配置没有更改,电子邮件在昨天之前一直正常发送。我仍然有我的authinfo文件。
我的MX记录被分为两部分。我的域名由另一家提供商托管,但我的电子邮件通过Gmail流通。通过Web界面仍然正常工作。
我想知道Gmail是否有什么变化。
还有其他人遇到过这个问题吗?
回溯数据:
* eww("mailto:danny%40redacted?subject=Test&body=...")
eww-browse-url("mailto:danny%40redacted?subject=Test&body=..." nil)
apply(eww-browse-url "mailto:danny%redacted?subject=Test&body=..." nil)
browse-url("mailto:danny%40redacted?subject=Test&body=...")
mailclient-send-it()
message-use-send-mail-function()
message--default-send-mail-function()
message-multi-smtp-send-mail()
message--send-mail-maybe-partially()
message-send-mail(nil)
message-send-via-mail(nil)
message-send(nil)
message-send-and-exit(nil)
funcall-interactively(message-send-and-exit nil)
call-interactively(message-send-and-exit nil nil)
command-execute(message-send-and-exit)
请注意,我只翻译文本内容,不包括代码部分。
英文:
This is a weird one. I had Emacs email set up just the way I wanted it and it was working fine. Now, whenever I send an email (C-x m), it seems to turn the email address into a url request. If I mail a test message like this (some info redacted):
To: redacted@gmail.com
Subject: Test 3
From: Danny <danny@redacted.com>
--text follows this line--
Testing
Emacs displays the Google search page, I think using eww.
The messages buffer also displays this:
Sending via mail...
Contacting host: gmail.com:80
Sending...done
Nothing in my config has changed and email was happily sending before yesterday. I still have my authinfo files in place.
I have a split MX. My domain is hosted by another provider but my email flows through gmail. It still works fine via the web interface.
I wonder if something changed on the gmail side.
Has anyone else had this problem?
Backtrace data:
* eww("mailto:danny%40redacted?subject=Test&body=...")
eww-browse-url("mailto:danny%40redacted?subject=Test&body=..." nil)
apply(eww-browse-url "mailto:danny%redacted?subject=Test&body=..." nil)
browse-url("mailto:danny%40redacted?subject=Test&body=...")
mailclient-send-it()
message-use-send-mail-function()
message--default-send-mail-function()
message-multi-smtp-send-mail()
message--send-mail-maybe-partially()
message-send-mail(nil)
message-send-via-mail(nil)
message-send(nil)
message-send-and-exit(nil)
funcall-interactively(message-send-and-exit nil)
call-interactively(message-send-and-exit nil nil)
command-execute(message-send-and-exit)
答案1
得分: 0
我已注释掉了我的初始化文件中处理电子邮件的所有文本,显然是作为一个我没有清理的实验的一部分。其中包括 (require 'smtpmail)
。SMH。
不过,好的一面是,是M-x debug-on-entry
帮助我解决了这个问题,所以我想我在今天闹笑话的同时也学到了一些东西
英文:
Sooo, I had commented out all the text in my init file that handled email, apparently as part of an experiment that I hadn't cleaned up. That included (require 'smtpmail)
. SMH.
On the upside, it was M-x debug-on-entry
that helped me work it out, so I guess I learned something while making a fool of myself today
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论