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

推荐订阅源

S
Security Affairs
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
Jina AI
Jina AI
P
Palo Alto Networks Blog
GbyAI
GbyAI
大猫的无限游戏
大猫的无限游戏
A
Arctic Wolf
Hugging Face - Blog
Hugging Face - Blog
小众软件
小众软件
Y
Y Combinator Blog
T
The Blog of Author Tim Ferriss
Blog — PlanetScale
Blog — PlanetScale
S
Schneier on Security
V
Vulnerabilities – Threatpost
C
Cybersecurity and Infrastructure Security Agency CISA
雷峰网
雷峰网
T
Tenable Blog
人人都是产品经理
人人都是产品经理
T
Tor Project blog
C
Cyber Attacks, Cyber Crime and Cyber Security
AWS News Blog
AWS News Blog
Microsoft Security Blog
Microsoft Security Blog
J
Java Code Geeks
Scott Helme
Scott Helme
SecWiki News
SecWiki News
C
CERT Recently Published Vulnerability Notes
Recorded Future
Recorded Future
I
InfoQ
Security Archives - TechRepublic
Security Archives - TechRepublic
Help Net Security
Help Net Security
Cloudbric
Cloudbric
C
Check Point Blog
Engineering at Meta
Engineering at Meta
TaoSecurity Blog
TaoSecurity Blog
B
Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
博客园_首页
N
News and Events Feed by Topic
云风的 BLOG
云风的 BLOG
MyScale Blog
MyScale Blog
腾讯CDC
量子位
Application and Cybersecurity Blog
Application and Cybersecurity Blog
K
Kaspersky official blog
Vercel News
Vercel News
F
Full Disclosure
T
Troy Hunt's Blog
Forbes - Security
Forbes - Security
S
Security @ Cisco Blogs

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 国际许可协议进行许可
可自由转载、引用,但需署名作者且注明文章出处

标签 : 无标签