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

推荐订阅源

freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
腾讯CDC
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
L
LINUX DO - 热门话题
D
Darknet – Hacking Tools, Hacker News & Cyber Security
Project Zero
Project Zero
V
Vulnerabilities – Threatpost
Cisco Talos Blog
Cisco Talos Blog
P
Palo Alto Networks Blog
C
Cisco Blogs
A
Arctic Wolf
月光博客
月光博客
The GitHub Blog
The GitHub Blog
T
The Blog of Author Tim Ferriss
量子位
小众软件
小众软件
Latest news
Latest news
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Microsoft Security Blog
Microsoft Security Blog
T
The Exploit Database - CXSecurity.com
Security Latest
Security Latest
N
Netflix TechBlog - Medium
K
Kaspersky official blog
人人都是产品经理
人人都是产品经理
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
博客园_首页
Y
Y Combinator Blog
P
Proofpoint News Feed
H
Hackread – Cybersecurity News, Data Breaches, AI and More
M
MIT News - Artificial intelligence
T
Threat Research - Cisco Blogs
S
Schneier on Security
D
Docker
Scott Helme
Scott Helme
MyScale Blog
MyScale Blog
Spread Privacy
Spread Privacy
cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
GbyAI
GbyAI
有赞技术团队
有赞技术团队
Google DeepMind News
Google DeepMind News
The Hacker News
The Hacker News
H
Help Net Security
Simon Willison's Weblog
Simon Willison's Weblog
J
Java Code Geeks
C
Cyber Attacks, Cyber Crime and Cyber Security
T
Tenable Blog
B
Blog
Know Your Adversary
Know Your Adversary
IT之家
IT之家

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

标签 : 无标签