-
Notifications
You must be signed in to change notification settings - Fork 6k
Add qq-mail extension #27293
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
ariesly15
wants to merge
8
commits into
raycast:main
Choose a base branch
from
ariesly15:ext/qq-mail
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Add qq-mail extension #27293
Changes from 1 commit
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
95ae926
Add qq-mail extension
1a0c92a
feat[extensions/qq-mail]: 添加QQ邮箱扩展及配置文件
05c9774
chore: 修改 qq-mail 扩展作者信息为 ariesly15
119b270
refactor: 修改长URL处理逻辑为Markdown链接形式
1649186
chore: remove mock data and unused assets
7592d9a
fix: update icon reference to icon.png
7b29d56
feat: add Starred folder support with parallel search optimization
63294d5
feat: add star/unstar action, fix attachment pagination, fix SMTP tra…
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,14 @@ | ||
| # See https://help.github.com/articles/ignoring-files/ for more about ignoring files. | ||
|
|
||
| # dependencies | ||
| /node_modules | ||
|
|
||
| # Raycast specific files | ||
| raycast-env.d.ts | ||
| .raycast-swift-build | ||
| .swiftpm | ||
| compiled_raycast_swift | ||
| compiled_raycast_rust | ||
|
|
||
| # misc | ||
| .DS_Store |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,4 @@ | ||
| { | ||
| "printWidth": 120, | ||
| "singleQuote": false | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| # Proton Mail Changelog | ||
|
|
||
| ## [Initial Version] - 2026-01-23 | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,85 @@ | ||
| # QQ Mail | ||
|
|
||
| View and manage your QQ Mail inbox directly in Raycast. | ||
|
|
||
| ## Features | ||
|
|
||
| - **Email List View** - Browse emails with subject, sender, date, and read/unread status | ||
| - **Email Detail View** - Read full email content in a detail pane | ||
| - **Folder Navigation** - Switch between Inbox, Sent, Drafts, Archive, Trash, and custom folders | ||
| - **Filtering** - Filter emails by All, Unread, Read, or Has Attachment | ||
| - **Compose Email** - Write new emails or Reply, Reply All, and Forward | ||
| - **Pagination** - Load more emails as needed with configurable page size | ||
| - **Attachments** - Download individual attachments or all at once | ||
| - **Expanded Email View** - Read emails in full-screen with metadata sidebar | ||
| - **Email Actions**: | ||
| - Reply / Reply All / Forward | ||
| - Mark as Read / Unread | ||
| - Archive | ||
| - Delete | ||
| - Download Attachments | ||
| - Copy subject, sender, or email body (plain text or Markdown) | ||
|
|
||
| ## Requirements | ||
|
|
||
| - A QQ Mail account (`@qq.com`) | ||
| - IMAP/SMTP service enabled in QQ Mail settings | ||
| - An **authorization code** (not your QQ password) | ||
|
|
||
| > **Note:** This extension currently supports one account at a time. | ||
|
|
||
| ## Setup | ||
|
|
||
| 1. Log in to [QQ Mail](https://mail.qq.com) in your browser | ||
| 2. Go to **Settings → Account → POP3/IMAP/SMTP/Exchange/CardDAV/CalDAV** | ||
| 3. Enable **IMAP/SMTP Service** and generate an **authorization code** | ||
| 4. Open the extension preferences in Raycast and fill in: | ||
| - **QQ Email Address**: e.g. `123456@qq.com` | ||
| - **Authorization Code**: the code generated in step 3 (NOT your QQ password) | ||
| - **Emails to Load**: number of emails per page (20, 50, 100, or 200) | ||
| - -  | ||
|
|
||
| The extension connects to QQ Mail servers automatically: | ||
|
|
||
| - IMAP: `imap.qq.com:993` (SSL) | ||
| - SMTP: `smtp.qq.com:465` (SSL) | ||
|
|
||
| ## Filtering | ||
|
|
||
| The extension provides a single dropdown that combines: | ||
|
|
||
| - **Folder selection** (Inbox, Sent, Drafts, etc.) | ||
| - **Status filters** (All, Unread, Read, Has Attachment) | ||
|
|
||
| Select a folder first, then use the filter section to narrow down emails. | ||
|
|
||
| ## Pagination | ||
|
|
||
| The extension loads emails in pages based on your "Emails to Load" preference. Press ⌘L or select "Load More Emails" from the action menu to fetch older emails. | ||
|
|
||
| ## Attachments | ||
|
|
||
| When viewing an email with attachments: | ||
|
|
||
| 1. Select "Download Attachments" from the action menu | ||
| 2. Choose to download a single attachment or all at once | ||
| 3. Single files are saved to `~/Downloads/` | ||
| 4. Multiple files are saved to a timestamped folder: `~/Downloads/qq-mail-attachments-YYYYMMDDTHHMMSS/` | ||
|
|
||
| ## Keyboard Shortcuts | ||
|
|
||
| | Action | Shortcut | | ||
| | -------------------- | -------- | | ||
| | Expand Email | ⌘↩ | | ||
| | Reply | ⌘R | | ||
| | Reply All | ⇧⌘R | | ||
| | Forward | ⌘F | | ||
| | Mark Read/Unread | ⇧⌘U | | ||
| | Archive | ⌘E | | ||
| | Delete | ⌘⌫ | | ||
| | Download Attachments | ⌘D | | ||
| | Compose New Email | ⌘N | | ||
| | Copy Subject | ⌘C | | ||
| | Copy Sender | ⇧⌘C | | ||
| | Copy as Markdown | ⇧⌘M | | ||
| | Load More Emails | ⌘L | |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| const { defineConfig } = require("eslint/config"); | ||
| const raycastConfig = require("@raycast/eslint-config"); | ||
|
|
||
| module.exports = defineConfig([ | ||
| ...raycastConfig, | ||
| ]); |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.