gpt4 book ai didi

戈朗 IMAP : moving messages to another folder

转载 作者:IT王子 更新时间:2023-10-29 02:15:40 27 4
gpt4 key购买 nike

我不知道去哪里查看引用资料才能完成此任务;我已经尝试了几次代码迭代,但每次都失败了。略有编辑,但足以了解要点...

// Make connection
imConnection, err := imap.DialTLS(strAddress, nil)

// Defer disconnect
defer func(){
imConnection.Logout(30*time.Second)
}

// Authenticate
imConnection.Login(strUname, strPass)

//Select the folder with messages I want to move
imConnection.Select(`[Gmail]\Movethese`, false)

// Create a set
set, _ = imap.NewSeqSet("1:*")

// It's my understanding that moving messages means copying them over, then
// deleting the original messages?
cmd, _ := imConnection.UIDCopy(set, `[Gmail]\Destination`)

这似乎默默地失败了。这对我来说看起来应该选择“Movethese”文件夹中的所有内容并将它们复制到“Destination”。我在正确复制它们时缺少什么?是否有一种简单的方法来移动与特定主题行字符串匹配的个别邮件?

此外,我不确定在选择时是否必须将源目录设置为 False for R/W,但这似乎没有什么不同。

这是导入 github.com/mxk/go-imap/imap package

最佳答案

尝试为命名邮箱的两个命令添加错误检查;反斜杠是源代码中的一个特殊字符,所以我预计 gmail 会给你一个错误,例如 No such mailbox: [Gmail]Movethese

处理错误通常是个好主意,尤其是在这种情况下,当您知道某处有错误时。

顺便说一句,复制/删除顺序有点过时。大多数 IMAP 服务器支持 UID MOVE如今作为原子命令,IIRC gmail 是支持者之一。不过现在无法检查,所以请不要相信我。

关于戈朗 IMAP : moving messages to another folder,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32615313/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com