如何从 openssl 连接关闭 IMAP APPEND 命令
我想知道如何从 Unix 终端关闭 APPEND 命令。我的目标是从 Mac 终端或使用 JavaME 在 Gmail IMAP 服务器上创建草稿邮件。到目前为止我已经使用了以下命令:
openssl s_client -crlf -connect imap.gmail.com:993 ... A1 登录 [电子邮件受保护] mypassword ... A2 选择“[Gmail]/草稿” ... A3 附加“[Gmail]/草稿”(\已查看){310} + 继续 日期:2011 年 4 月 29 日星期五 10:00:00 -0800(太平洋标准时间) ... 内容类型:纯文本; CHARSET=US-ASCII
消息正文
我尝试使用套接字连接和 Control+V、return、return 在终端中发送 CRLF (\r\n)。
I would like to know how to close an APPEND command from the Unix Terminal. My goal is to create a Draft message on the Gmail IMAP server from the Mac Terminal or with JavaME. I've used the follow commands so far:
openssl s_client -crlf -connect imap.gmail.com:993
...
A1 LOGIN [email protected] mypassword
...
A2 SELECT "[Gmail]/Drafts"
...
A3 APPEND "[Gmail]/Drafts" (\Seen) {310}
+ go ahead
Date: Fri, 29 Apr 2011 10:00:00 -0800 (PST)
...
Content-Type: TEXT-PLAIN; CHARSET=US-ASCIIMessage Body
I tried to send a CRLF (\r\n) by using a socket connection and the Control+V, return, return in the Terminal.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
{310} 是消息字符的确切数量,包括回车符和换行符,效果很好。
{310} is the exactly number of message characters, including the carriage return and line feed, it worked fine.