惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

W
WeLiveSecurity
T
The Exploit Database - CXSecurity.com
C
CXSECURITY Database RSS Feed - CXSecurity.com
S
Security @ Cisco Blogs
T
Threat Research - Cisco Blogs
TaoSecurity Blog
TaoSecurity Blog
Recent Commits to openclaw:main
Recent Commits to openclaw:main
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
腾讯CDC
Exploit-DB.com RSS Feed
Exploit-DB.com RSS Feed
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
T
The Blog of Author Tim Ferriss
Microsoft Azure Blog
Microsoft Azure Blog
罗磊的独立博客
F
Full Disclosure
博客园 - 【当耐特】
C
CERT Recently Published Vulnerability Notes
Engineering at Meta
Engineering at Meta
Application and Cybersecurity Blog
Application and Cybersecurity Blog
T
Threatpost
I
Intezer
V2EX - 技术
V2EX - 技术
H
Hackread – Cybersecurity News, Data Breaches, AI and More
The Hacker News
The Hacker News
小众软件
小众软件
Google DeepMind News
Google DeepMind News
T
Tailwind CSS Blog
D
Darknet – Hacking Tools, Hacker News & Cyber Security
B
Blog RSS Feed
Microsoft Security Blog
Microsoft Security Blog
N
News | PayPal Newsroom
MyScale Blog
MyScale Blog
AI
AI
Vercel News
Vercel News
Spread Privacy
Spread Privacy
美团技术团队
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
The GitHub Blog
The GitHub Blog
V
Vulnerabilities – Threatpost
Schneier on Security
Schneier on Security
Cyberwarzone
Cyberwarzone
G
GRAHAM CLULEY
Help Net Security
Help Net Security
Hacker News: Ask HN
Hacker News: Ask HN
Google DeepMind News
Google DeepMind News
MongoDB | Blog
MongoDB | Blog
L
LINUX DO - 热门话题
U
Unit 42
L
LangChain Blog
Recent Announcements
Recent Announcements

WishMeLz - 猎奇

Namecrane/CraneMail 优化访问速度之 - Nginx stream 做 TCP 邮件代理 Scriptable 小组件 - 搬瓦工 - WishMeLz KeepAlive.cc 使用笔记,保备案尝鲜版 (方案很多,这只是一类,选择适合自己的即可) - WishMeLz 沉浸式翻译使用 DeepLX Api Key - WishMeLz ip信息查询 - WishMeLz Teamspeak 3 安装和汉化 - WishMeLz PTT签到脚本 - WishMeLz 地址生成器 - WishMeLz 自建Teamspeak3 - WishMeLz
namecrane CraneMail Lifetime 250G 使用记录
Wish · 2025-05-27 · via WishMeLz - 猎奇
他有美区和欧盟的机器,建议优选欧盟,有抗DMCA投诉&欧盟GDPR,可以 ping us1.workspace.orgeu1.workspace.org查看自己的延迟

2025-05-27T01:25:18.png

1、添加域名,配置DNS

2025-05-27T02:00:08.png
2025-05-27T02:00:32.png

2、设置语言

2025-05-27T02:00:49.png

3、邮箱测试

2025-05-27T02:01:14.png
2025-05-27T02:01:19.png

4、ftp连接

地址是:us1.workspace.org:8231 (美国); eu1.workspace.org:8231(欧盟)
用户名密码就是你的邮箱地址和邮箱密码

win直接地址栏输入:ftp://eu1.workspace.org:8231

2025-05-27T03:07:58.png
2025-05-27T02:05:43.png

5、AList挂载FTP

2025-05-27T02:06:35.png

6、激活eM Client

管理员账号登录

2025-05-27T05:56:12.png

2025-05-27T05:57:04.png
2025-05-27T05:57:26.png

7、配置SMTP、IMAP

在域名列表点击Connection Guide进入配置详情
2025-05-27T06:47:18.png
2025-05-27T06:49:20.png

8、Catch-all 配置

2025-05-28T09:32:44.png

2025-05-28T09:33:32.png

9、邮件转发设置

需要管理员开启权限, 域设置-进入用户管理页即可看到
2025-05-28T09:37:20.png

未开启功能

2025-05-28T09:35:34.png

开启功能

2025-05-28T09:35:57.png

或者一键开启

2025-05-28T11:22:29.png

10、优化webmail打开速度

location ^~ /
{
    proxy_pass https://eu1.workspace.org;
    # 尝试不设置或修改Host头
    # proxy_set_header Host eu1.workspace.org; 
    proxy_set_header Host $host;  # 或者使用原始host
    
    proxy_set_header X-Real-IP $remote_addr;
    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    proxy_set_header X-Forwarded-Proto $scheme;
    proxy_set_header X-Forwarded-Host $host;
    proxy_set_header REMOTE-HOST $remote_addr;
    proxy_set_header Upgrade $http_upgrade;
    proxy_set_header Connection $connection_upgrade;
    proxy_http_version 1.1;
    
    # SSL设置
    proxy_ssl_verify off;
    proxy_ssl_server_name on;
    
    # 超时设置
    proxy_connect_timeout 10s;
    proxy_send_timeout 30s;
    proxy_read_timeout 30s;
    
    add_header X-Cache $upstream_cache_status;
    
    #Set Nginx Cache
    set $static_file1GoVOrHy 0;
    if ( $uri ~* "\.(gif|png|jpg|css|js|woff|woff2)$" )
    {
        set $static_file1GoVOrHy 1;
        expires 1m;
    }
    if ( $static_file1GoVOrHy = 0 )
    {
        add_header Cache-Control no-cache;
    }
}

最后编辑时间为: May 27th , 2025 at 10:47 am
本文由 Wish 创作,采用 知识共享署名 4.0 国际许可协议进行许可
可自由转载、引用,但需署名作者且注明文章出处

标签 : 无标签