mirror of
https://github.com/dreamhunter2333/cloudflare_temp_email.git
synced 2026-04-25 22:05:51 +03:00
[PR #762] [CLOSED] fix: 修复 IMAP fetch 方法返回生成器导致的 TypeError #749
Labels
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/cloudflare_temp_email#749
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/dreamhunter2333/cloudflare_temp_email/pull/762
Author: @nightwhite
Created: 11/9/2025
Status: ❌ Closed
Base:
main← Head:main📝 Commits (10+)
7edc312fix: 修复 IMAP fetch 方法返回生成器导致的 TypeError (#1)990a4c5fix: 修复 S3 附件上传方式,使用 PUT 直接上传 blob 而非 FormDatadc18f1afeat: 优化 SMTP/IMAP 服务器配置和 Docker 镜像1e34063fix: 修复 Dockerfile 运行阶段使用 slim 镜像以兼容 pydantic_core468b158refactor: 简化 Dockerfile 为单阶段构建30ad6a9feat: 增强邮件转发配置,支持精确匹配、通配符和已创建邮箱选择f3272c2fix: 修复获取地址列表时 limit 超限问题71a9317fix: 增加 IMAP 服务器 HTTP 请求超时时间006926cfix: 修复邮件转发配置中通配符域名显示为 [object Object]0ffc60cfix: 修复邮件转发规则优先级问题📊 Changes
9 files changed (+136 additions, -33 deletions)
View changed files
📝
README.md(+4 -1)📝
README_EN.md(+4 -0)📝
frontend/src/views/Index.vue(+5 -4)📝
frontend/src/views/admin/AccountSettings.vue(+38 -4)📝
smtp_proxy_server/.env.example(+2 -0)📝
smtp_proxy_server/config.py(+1 -0)📝
smtp_proxy_server/dockerfile(+13 -3)📝
smtp_proxy_server/imap_server.py(+16 -12)📝
worker/src/email/index.ts(+53 -9)📄 Description
修复了在 K8s/Docker 环境中运行时出现的错误:
File "/usr/local/lib/python3.12/site-packages/twisted/mail/imap4.py", line 1685, in __cbManualSearch
lastSequenceId = result and result[-1][0]
TypeError: 'generator' object is not subscriptable
问题原因:
解决方案:
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.