Skip to content

Commit 6baa921

Browse files
Rebrand to Open-Temp-Mail and update gitignore
1 parent 38503a2 commit 6baa921

5 files changed

Lines changed: 10 additions & 10 deletions

File tree

DEPLOY.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# Freemail Version 2 Deployment Guide
1+
# Open-Temp-Mail Deployment Guide
22

3-
This guide provides step-by-step instructions to deploy the Freemail Version 2 application to Cloudflare Workers. It covers everything from setting up your environment to rigorous verification.
3+
This guide provides step-by-step instructions to deploy the Open-Temp-Mail application to Cloudflare Workers. It covers everything from setting up your environment to rigorous verification.
44

55
## Prerequisites
66

@@ -71,7 +71,7 @@ Navigate to the project directory and install dependencies.
7171

7272
1. Open your terminal in the `version 2` folder of your project:
7373
```bash
74-
cd "path/to/freemail/version 2"
74+
cd "path/to/open-temp-mail"
7575
```
7676
2. Install project dependencies:
7777
```bash
@@ -162,7 +162,7 @@ Now, build the frontend and deploy the full stack to Cloudflare.
162162
```
163163

164164
3. **Success!**
165-
The terminal will output your Worker's URL, e.g., `https://freemail-v2.your-subdomain.workers.dev`.
165+
The terminal will output your Worker's URL, e.g., `https://open-temp-mail.your-subdomain.workers.dev`.
166166
167167
---
168168
@@ -180,13 +180,13 @@ To receive emails, you must configure Cloudflare Email Routing.
180180
6. Click **Create Custom Address**.
181181
- **Custom Address**: Enter `*` (Catch-all) to receive emails for any address (e.g., `anything@yourdomain.com`).
182182
- **Action**: `Send to a Worker`.
183-
- **Destination**: Select your newly deployed Worker (`freemail-v2`).
183+
- **Destination**: Select your newly deployed Worker (`open-temp-mail`).
184184
7. Click **Save**.
185185
186186
### 7.2 Verify Deployment
187187
188188
1. Open your Worker URL in a browser.
189-
2. You should see the Freemail login page.
189+
2. You should see the Open-Temp-Mail login page.
190190
3. Login with `admin` and the password you set in **Step 5**.
191191
4. Try creating a random mailbox to test database connectivity.
192192
5. Try sending an email to that mailbox (from an external account like Gmail) to test Email Routing.

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<meta charset="UTF-8" />
55
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
7-
<title>version-2</title>
7+
<title>Open-Temp-Mail</title>
88
</head>
99
<body>
1010
<div id="root"></div>

scripts/setup.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ const run = (cmd, options = {}) => {
4343
const ask = (question) => new Promise((resolve) => rl.question(`${colors.bright}${question}${colors.reset} `, resolve));
4444

4545
async function main() {
46-
console.log(`${colors.bright}🚀 Freemail V2 - One-Click Deployment Setup${colors.reset}\n`);
46+
console.log(`${colors.bright}🚀 Open-Temp-Mail - One-Click Deployment Setup${colors.reset}\n`);
4747

4848
// 1. Check prerequisites
4949
step('Checking prerequisites...');

src/components/layout/Layout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ export default function Layout() {
5050
<div className="h-full flex flex-col">
5151
<div className="h-16 flex items-center px-6 border-b">
5252
<span className="text-xl font-bold bg-gradient-to-r from-primary to-blue-600 bg-clip-text text-transparent">
53-
Freemail v2
53+
Open-Temp-Mail
5454
</span>
5555
</div>
5656

worker/src/server.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Freemail 主入口文件
2+
* Open-Temp-Mail 主入口文件
33
*
44
* 本文件作为 Cloudflare Worker 的入口点,负责:
55
* 1. 处理 HTTP 请求(通过 fetch 处理器)

0 commit comments

Comments
 (0)