C# Imap 搜索命令,包含特殊字符,如 á,é
我正在开发 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 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