C# Imap 搜索命令,包含特殊字符,如 á,é

发布于 2024-12-04 10:34:56 字数 344 浏览 0 评论 0原文

我正在开发 imap 客户端搜索功能。

我使用此命令:UID SEARCH FROM PÉTER

当我运行此命令时,出现以下错误: IMAP 命令 UID SEARCH 中的错误:原子中的 8 位数据

当我的模式字符串(例如 PÉTER)包含重音字符时,我收到此错误。

解决办法是什么?我该怎么办?

编辑: 我尝试使用 UTF-8 编码字符串(UID SEARCH FROM PÉTER),它运行时没有错误,但它没有返回任何结果。 我检查了测试电子邮件帐户,发现有很多来自该发件人的邮件。

I'm working on an imap client search function.

I use this command: UID SEARCH FROM PÉTER

When I run this command i get the following error:
Error in IMAP command UID SEARCH: 8bit data in atom

I get this error when my pattern string(for example PÉTER) contains accentuated character.

What is the solution? What sholud I do?

Edit:
I try with UTF-8 encoded string (UID SEARCH FROM PÉTER), it runs without error, but it doesn't give back any result.
I check the test email account, and there are many mails with this sender.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

卖梦商人 2024-12-11 10:34:56

在 IMAP 中,您需要将 8 位数据作为字符串文字发送。

文字语法:
{byte_count} CRLF 字节数

搜索示例:
cmdTag SEARCH 字符集 UTF-8 主题 {4} CRLF 测试 CRLF

In IMAP you need to send 8-bit data as string literals.

Literal syntax:
{byte_count} CRLF number-of-bytes

Example search:
cmdTag SEARCH charset UTF-8 subject {4} CRLF test CRLF

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文