|
|
84f2428aeb
|
fix: send AI suggestion as MarkdownV2 code block for copy-on-tap
|
2026-07-17 20:28:46 +08:00 |
|
|
|
51064e48aa
|
feat: AI reply suggestions show as copyable code block, user edits before sending - Click suggestion -> show text in backtick code block (tap to copy) - Enter awaiting_reply state so user can edit/send like normal reply - No direct email sending on selection anymore - Tests: 3/3 passing
|
2026-07-17 20:23:59 +08:00 |
|
|
|
ab2bf7facb
|
feat: AI reply modes - full (formal email) and short (concise) - Split 'AI回复' button into 'AI完整回复' and 'AI简洁回复' - Full mode: complete email format with greeting/signature, 300 char limit - Short mode: brief text message style, 50 char limit - Style persists in conversation state for regen/hint consistency - Tests: 6/6 passing
|
2026-07-17 20:14:48 +08:00 |
|
|
|
2a9be9896f
|
fix: restore links when returning to summary view _summary_keyboard was called without links param in VIEW_SUMM handler, causing extracted links to disappear after viewing original text.
|
2026-07-17 20:10:18 +08:00 |
|
|
|
2f29e03cec
|
fix: read Telegram caption field for media messages Telegram sends text in 'caption' field (not 'text') when message has media. Handle both cases: text or caption, with text taking priority.
|
2026-07-17 20:04:27 +08:00 |
|
|
|
b2e219ece5
|
fix: send reply immediately on media-only message, no accumulation - Remove accumulation logic: media-only now sends as reply directly - All 3 cases (text-only, media-only, text+media) send immediately - Tests: 4/4 passing
|
2026-07-17 19:53:38 +08:00 |
|
|
|
131e440d6b
|
style: simplify media accumulation - silent accumulate, immediate send on text
|
2026-07-17 19:52:08 +08:00 |
|
|
|
4002dec33c
|
fix: add missing account_idx to save_email_context in tg_send_and_mark
|
2026-07-17 19:36:50 +08:00 |
|
|
|
d76a119190
|
feat: support attachments in manual reply (photo/video/document/voice) - Add _extract_media: extract media info from Telegram messages - Add _download_tg_file: download files from Telegram API - Modify _handle_message: accumulate attachments in awaiting_reply, send with text - Modify _handle_update: process messages without text (media-only) - Modify smtp_client.send_reply: support MIME multipart with attachments - Add comprehensive tests (11 tests, all passing)
|
2026-07-17 19:04:27 +08:00 |
|
|
|
d05277581c
|
fix: save_conversation in CALLBACK_HINT, move AI hint to thread pool
|
2026-07-17 18:45:40 +08:00 |
|
|
|
fe24a07d15
|
fix: parse_mode always MarkdownV2, add MEMORY.md with project rules
|
2026-07-17 18:36:53 +08:00 |
|
|
|
0abb7de5d3
|
fix: move regenerate to AI thread pool, fix parse_mode None error
|
2026-07-17 18:30:57 +08:00 |
|
|
|
5ca739456d
|
perf: reduce poll timeout to 1s and wait to 50ms for faster button response
|
2026-07-15 19:20:52 +08:00 |
|
|
|
c26d8aa294
|
fix: reduce long-poll timeout to 2s, make mark_as_seen async to unblock TG sender
|
2026-07-15 19:15:27 +08:00 |
|
|
|
c940a456bc
|
fix: clear all database tables on startup
|
2026-07-15 19:09:41 +08:00 |
|
|
|
b226f0b597
|
fix: clear processed_emails on startup to avoid stale state
|
2026-07-15 19:09:02 +08:00 |
|
|
|
687e60ede4
|
fix: add error logging for send_thinking failures in email poller
|
2026-07-15 19:02:59 +08:00 |
|
|
|
da1b266350
|
fix: increase Telegram long-poll timeout to 5s and HTTP timeout to 15s
|
2026-07-15 18:51:04 +08:00 |
|
|
|
dcdfba11fa
|
feat: show email subject and sender in all status messages
|
2026-07-15 18:39:58 +08:00 |
|
|
|
2822075f2f
|
refactor: split TG worker into poller (callbacks) and sender (email summaries) threads
|
2026-07-15 18:35:01 +08:00 |
|
|
|
2744d9dd77
|
fix: process one queued email per poll cycle to keep callbacks responsive
|
2026-07-15 18:32:42 +08:00 |
|
|
|
17514302f9
|
fix: import is_uid_processed instead of is_uids_processed
|
2026-07-15 18:25:57 +08:00 |
|
|
|
d42022cc2e
|
fix: ensure data directory exists before DB connection in all threads
|
2026-07-15 18:18:24 +08:00 |
|
|
|
54c4bf00fb
|
refactor: replace all in-memory state with SQLite database
|
2026-07-14 14:49:23 +08:00 |
|
|
|
c3132f746a
|
feat: AI generates plain_text field, view full text shows readable version instead of HTML
|
2026-07-14 14:37:12 +08:00 |
|
|
|
dd7fc61fd4
|
fix: remove all body truncation, show full email text everywhere
|
2026-07-14 14:34:17 +08:00 |
|
|
|
5113d78662
|
prompt: detailed instructions for extracting unsubscribe links from promotional emails
|
2026-07-13 08:38:05 +08:00 |
|
|
|
8b885f1c4c
|
fix: use threading.Event for immediate shutdown instead of sleep loops
|
2026-07-13 08:34:02 +08:00 |
|
|
|
8b577b4c12
|
prompt: emphasize extracting unsubscribe links from promotional emails
|
2026-07-13 08:30:44 +08:00 |
|
|
|
26468aa43d
|
fix: use ellipsis character instead of dots in status messages for MarkdownV2 compatibility
|
2026-07-13 08:28:23 +08:00 |
|
|
|
98147e6a6c
|
fix: omit parse_mode from payload when None instead of sending null
|
2026-07-13 08:27:16 +08:00 |
|
|
|
bd5b824a6a
|
fix: add parse_mode param to edit_message, status messages use plain text
|
2026-07-13 08:23:42 +08:00 |
|
|
|
01504e6295
|
feat: three-stage status: 获取邮件中 -> 等待处理 -> AI思考中
|
2026-07-13 08:19:36 +08:00 |
|
|
|
02b0941ed0
|
feat: two-stage status messages: 获取邮件中 -> AI思考中
|
2026-07-13 08:15:25 +08:00 |
|
|
|
85b02651b9
|
revert: use debug log for unselectable folders instead of warning
|
2026-07-13 08:11:30 +08:00 |
|
|
|
e74ae8be88
|
fix: quote folder names in IMAP SELECT for folders with spaces
|
2026-07-13 08:10:39 +08:00 |
|
|
|
f38259e4bb
|
fix: mark_as_seen uses readonly=False to actually set Seen flag
|
2026-07-13 08:05:40 +08:00 |
|
|
|
5368812e45
|
fix: skip NoSelect folders, clean up debug logging
|
2026-07-13 08:04:26 +08:00 |
|
|
|
8c088ddff5
|
debug: add skip_uids logging to diagnose re-fetch issue
|
2026-07-13 07:54:13 +08:00 |
|
|
|
0ec2048bc5
|
fix: never discard from _processing_uids to prevent re-fetching
|
2026-07-13 07:49:09 +08:00 |
|
|
|
155a6dfc53
|
fix: skip already-processing UIDs at FETCH level to avoid downloading email content
|
2026-07-13 07:35:28 +08:00 |
|
|
|
d31ec18ea3
|
fix: restore -FLAGS Seen after FETCH, protected by _processing_uids
|
2026-07-13 07:13:08 +08:00 |
|
|
|
02cf4b88b6
|
fix: add _processing_uids to prevent re-fetching emails being processed
|
2026-07-13 07:12:43 +08:00 |
|
|
|
ae140df3fb
|
chore: remove accidental file
|
2026-07-13 06:57:28 +08:00 |
|
|
|
e9398526e6
|
fix: login without selecting INBOX first so conn.list() returns all folders
|
2026-07-13 06:57:06 +08:00 |
|
|
|
479b855390
|
feat: scan all IMAP folders for unread emails, not just INBOX
|
2026-07-13 00:16:28 +08:00 |
|
|
|
46bc7c7057
|
prompt: force simplified Chinese for all AI outputs except reply suggestions
|
2026-07-13 00:12:50 +08:00 |
|
|
|
bbc43f8972
|
fix: keep pending_uids until TG send completes to prevent duplicate processing
|
2026-07-12 23:51:45 +08:00 |
|
|
|
87e4b0b01e
|
prompt: refine link extraction to exclude promotional links
|
2026-07-12 10:15:25 +08:00 |
|
|
|
fc4c5a175c
|
feat: show thinking indicator during AI processing, accept non-numeric verification codes
|
2026-07-11 22:54:06 +08:00 |
|