IMAP, Interactive Mail Access Protocol (2)
http://www.networksorcery.com/enp/protocol/imap.htm Glossary: Atom. One or more non-special characters. Literal string. A sequence of zero or more bytes (including CR and LF), prefix-quoted with an byte count in the form of an open brace (
http://www.networksorcery.com/enp/protocol/imap.htm
Glossary:
Atom.
One or more non-special characters.
Literal string.
A sequence of zero or more bytes (including CR and LF), prefix-quoted with an byte count in the form of an open brace ("{"), the number of bytes, close brace ("}"), and CRLF. In the case of literals transmitted from server to client, the CRLF is immediately followed by the data. In the case of literals transmitted from client to server, the client MUST wait to receive a command continuation request before sending the data (and the remainder of the command).
Quoted string.
A sequence of zero or more 7-bit characters, excluding CR and LF, with double quote () characters at each end.
RFCs:
[RFC 1176] INTERACTIVE MAIL ACCESS PROTOCOL - VERSION 2.
- Obsoletes: RFC 1064.
[RFC 1203] INTERACTIVE MAIL ACCESS PROTOCOL - VERSION 3.
- Obsoletes: RFC 1064.
[RFC 1731] IMAP4 Authentication Mechanisms.
[RFC 1732] IMAP4 COMPATIBILITY WITH IMAP2 AND IMAP2BIS.
[RFC 1733] DISTRIBUTED ELECTRONIC MAIL MODELS IN IMAP4.
[RFC 2061] IMAP4 COMPATIBILITY WITH IMAP2BIS.
[RFC 2062] Internet Message Access Protocol - Obsolete Syntax.
[RFC 2087] IMAP4 QUOTA extension.
[RFC 2088] IMAP4 non-synchronizing literals.
- Cateogry: Standards Track.
- Updated by:
RFC 4466.
[RFC 2177] IMAP4 IDLE command.
- Defines the IMAP IDLE capability.
[RFC 2180] IMAP4 Multi-Accessed Mailbox Practice.
[RFC 2192] IMAP URL Scheme.
- Defines URI scheme imap.
[RFC 2193] IMAP4 Mailbox Referrals.
- Category: Standards Track.
- Updated by:
RFC 5258.
[RFC 2195] IMAP/POP AUTHorize Extension for Simple Challenge/Response.
- Obsoletes: RFC 2095.
[RFC 2221] IMAP4 Login Referrals.
[RFC 2342] IMAP4 Namespace.
- Category: Standards Track.
- Defines IMAP capability MULTIAPPEND.
- Updated by:
RFC 4466.
[RFC 2595] Using TLS with IMAP, POP3 and ACAP.
[RFC 2683] IMAP4 Implementation Recommendations.
[RFC 2971] IMAP4 ID extension.
[RFC 3501] INTERNET MESSAGE ACCESS PROTOCOL - VERSION 4rev1.
- Category: Standards Track.
- Defines IMAP4rev1.
- Obsoletes:
RFC 2060. - Updated by:
RFC 4466, RFC 4467, RFC 4469, RFC 5182.
[RFC 3502] Internet Message Access Protocol (IMAP) - MULTIAPPEND Extension.
- Category: Standards Track.
- Defines IMAP capability MULTIAPPEND.
- Updated by:
RFC 4466, RFC 4469.
[RFC 3503] Message Disposition Notification (MDN) profile for Internet Message Access Protocol (IMAP).
[RFC 3516] IMAP4 Binary Content Extension.
- Category: Standards Track.
- Defines IMAP capability BINARY.
- Updated by:
RFC 4466.
[RFC 3691] Internet Message Access Protocol (IMAP) UNSELECT command.
- Category: Standards Track.
- Defines the IMAP UNSELECT capability and UNSELECT command.

热AI工具

Undresser.AI Undress
人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover
用于从照片中去除衣服的在线人工智能工具。

Undress AI Tool
免费脱衣服图片

Clothoff.io
AI脱衣机

AI Hentai Generator
免费生成ai无尽的。

热门文章

热工具

记事本++7.3.1
好用且免费的代码编辑器

SublimeText3汉化版
中文版,非常好用

禅工作室 13.0.1
功能强大的PHP集成开发环境

Dreamweaver CS6
视觉化网页开发工具

SublimeText3 Mac版
神级代码编辑软件(SublimeText3)

热门话题

1、在Windows11中打开设置。您可以使用Win+I快捷方式或任何其他方法。2、转到应用程序部分,然后单击应用程序和功能。3、查找要阻止在后台运行的应用程序。单击三点按钮并选择高级选项。4、找到【后台应用程序权限】部分并选择所需的值。默认情况下,Windows11设置电源优化模式。它允许Windows管理应用程序在后台的工作方式。例如,一旦启用省电模式以保留电池,系统将自动关闭所有应用程序。5、选择【从不】可防止应用程序在后台运行。请注意,如果您注意到程序不向您发送通知、无法更新数据等,您可

DeepSeek 无法直接将文件转换为 PDF。根据文件类型,可以使用不同方法:常见文档(Word、Excel、PowerPoint):使用微软 Office、LibreOffice 等软件导出为 PDF。图片:使用图片查看器或图像处理软件保存为 PDF。网页:使用浏览器“打印成 PDF”功能或专用的网页转 PDF 工具。不常见格式:找到合适的转换器,将其转换为 PDF。选择合适的工具并根据实际情况制定方案至关重要。

Oracle 可以通过以下步骤读取 dbf 文件:创建外部表,引用 dbf 文件;查询外部表,检索数据;将数据导入 Oracle 表。

Java反射机制允许程序动态修改类的行为,无需修改源代码。通过Class对象操作类,可以通过newInstance()创建实例,修改私有字段值,调用私有方法等。但应谨慎使用反射,因为它可能会导致意外的行为和安全问题,并有性能开销。

Java函数开发中常见的异常类型及其修复措施在Java函数开发过程中,可能遇到各种异常,影响函数的正确执行。以下是常见的异常类型及其修复措施:1.NullPointerException描述:当访问一个还未初始化的对象时抛出。修复措施:确保在使用对象之前对其进行非空检查。示例代码:try{Stringname=null;System.out.println(name.length());}catch(NullPointerExceptione){

在 Vue 中解决 iframe 跨域问题的方法:CORS:启用后端服务器中的 CORS 支持,在 Vue 中使用 XMLHttpRequest 或 fetch API 发送 CORS 请求。JSONP:使用后端服务器中的 JSONP 端点,在 Vue 中动态加载 JSONP 脚本。代理服务器:设置代理服务器转发请求,在 Vue 中使用第三方库(如 axios)发送请求并设置代理服务器 URL。

昨日,BotanixLabs宣布累计完成1150万美元融资,PolychainCapital、PlaceholderCapital等参投。融资将用于构建去中心化的EVM等效BTCL2Botanix。Spiderchain结合了EVM的易用性与比特币的安全性。自2023年11月测试网上线以来,已有超过20万个活跃地址。Odaily将于本文解析Botanix的特色机制与测试网交互流程。Botanix按照官方定义,Botanix是一个基于比特币构建的去中心化的图灵完备L2EVM,由两个核心组件以太坊虚

Oracle中的EXPLAIN命令用于分析SQL语句的执行计划,使用方法为在SQL语句前添加EXPLAIN关键字。EXPLAIN结果包含ID、操作符类型、行数估计、成本估计、输出行数估计、访问谓词和过滤谓词等信息,可用于优化查询性能,标识高代价运算符和可能受益于优化技术的表。
