<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>邮箱 &#8211; cmWeblog</title>
	<atom:link href="https://www.muidar.com/topics/email/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.muidar.com</link>
	<description></description>
	<lastBuildDate>Sat, 01 Mar 2025 07:09:22 +0000</lastBuildDate>
	<language>zh-Hans</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>

<image>
	<url>/wp-content/uploads/2025/01/cropped-favicon-512x512-1-32x32.png</url>
	<title>邮箱 &#8211; cmWeblog</title>
	<link>https://www.muidar.com</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>SPF、DKIM与DMARC为何？</title>
		<link>https://www.muidar.com/posts/cmuidar/what-is-spf-dkim-dmarc/</link>
					<comments>https://www.muidar.com/posts/cmuidar/what-is-spf-dkim-dmarc/#comments</comments>
		
		<dc:creator><![CDATA[CMuidar]]></dc:creator>
		<pubDate>Sat, 18 May 2024 12:43:04 +0000</pubDate>
				<category><![CDATA[邮箱]]></category>
		<category><![CDATA[邮箱安全]]></category>
		<guid isPermaLink="false">https://muidar.com/?p=1130</guid>

					<description><![CDATA[本文为自己的笔记，也为扫盲。没讲清楚，可以让我在文中补充。也有可能有疏漏之处，感谢指出。 DMARC 先说DM [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">本文为自己的笔记，也为扫盲。<br>没讲清楚，可以让我在文中补充。<br>也有可能有疏漏之处，感谢指出。</p>



<h3 class="wp-block-heading">DMARC</h3>



<p class="wp-block-paragraph">先说DMARC (Domain-based Message Authentication, Reporting and Conformance)。是以SPF、DKIM为基础的电子邮箱认证机制，可以检测并防假冒的身份以对付钓鱼和垃圾。若SPF、DKIM未通过检测，收邮服务器将收集信息，发至发邮网域管理者邮箱.</p>



<p class="wp-block-paragraph">可以通过txt记录设置DMARC，基本格式如下:<br>v=DMARC1;p=reject;rua=mailto:postmaster@exampledomain.com;ruf=mailto:postmaster@exampledomain.com 添加在_dmarc.exampledomain.com的TXT记录下。</p>



<p class="wp-block-paragraph">参数含义解释: <br>v 协议版本，目前最新的是DMARC1。若不填写，默认为此。<br>p 策略，指认证失败后所采取的措施。可填写none, quarantine, reject。none 用来接收 DMARC 报告并由此获得邮件验证状态; quarantine 用来隔离验证失败的邮件; reject 用来拒收验证失败的邮件。<br>sp 和p类似，对于子域名生效。<br>rua与ruf 接收两种不同报告的URI地址。需要注意的是，应该填写URI地址，填写邮箱无法正常收件.<br>aspf和adkim 默认为r「宽松」，也可填写s「严格」。s代表域名得严格符合要求，r表示允许子域名.</p>



<p class="wp-block-paragraph">原理为，通过收邮服务器检测SPF何DKIM，再使用DMARC中所提供的信息，发给邮箱管理者.</p>



<h3 class="wp-block-heading">SPF</h3>



<p class="wp-block-paragraph">SPF (Sender Policy Framework)指的是发信者策略架构.<br>设置在邮箱域名下方。格式如下:</p>



<p class="wp-block-paragraph">v=spf1 +include:spf.onlarksuite.com -all</p>



<p class="wp-block-paragraph">这是我的域名所使用的.</p>



<p class="wp-block-paragraph">v代表协议版本，目前最常用的是spf1.<br>include:exampledomain.com 指的是按照exampledomain.com下的spf记录来验证.<br>ip4:ip段 表示邮箱服务器ip在此IP段中则符合认证.<br>ip6:ip段 同ip4.<br>all代表所有其他未列出的域名或者ip.<br>+代表使后边的内容通过测试，-表示不通过，~表示测试未完成</p>



<p class="wp-block-paragraph">原理为识别邮箱服务器ip地址，以此识别是否为垃圾邮箱.</p>



<h3 class="wp-block-heading">DKIM</h3>



<p class="wp-block-paragraph">DKIM (Domain Keys Identified Mail)指的是域名密钥识别邮件标准.<br>DKIM和HTTPS原理类似，都使用了非对称性加密。DKIM的公钥储存在DNS中，私钥存储在发信者服务器中。发信时会生成数字签名。 和HTTPS相似，会用公钥进行比对，以此来避免伪造域名的垃圾邮箱发送者。</p>



<p class="wp-block-paragraph">记录格式:<br>v=DKIM1; k=rsa; p=所生成的公钥</p>



<p class="wp-block-paragraph">v代表协议，最新的是DKIM1.<br>k代表加密方法.<br>p代表公钥.<br></p>



<p class="wp-block-paragraph"><br></p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.muidar.com/posts/cmuidar/what-is-spf-dkim-dmarc/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>Autistici邮箱</title>
		<link>https://www.muidar.com/posts/cmuidar/autistici-mail/</link>
					<comments>https://www.muidar.com/posts/cmuidar/autistici-mail/#respond</comments>
		
		<dc:creator><![CDATA[CMuidar]]></dc:creator>
		<pubDate>Fri, 13 Jan 2023 11:44:54 +0000</pubDate>
				<category><![CDATA[免费服务器]]></category>
		<category><![CDATA[服务器]]></category>
		<category><![CDATA[邮箱]]></category>
		<category><![CDATA[A/I]]></category>
		<guid isPermaLink="false">https://muidar.com/?p=530</guid>

					<description><![CDATA[Autistici是由一个叫A/I的组织提供的。需要写申请书才能注册，提供邮箱、博客、虚拟主机、即时通讯等服务 [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">Autistici是由一个叫A/I的组织提供的。需要写申请书才能注册，提供邮箱、博客、虚拟主机、即时通讯等服务。</p>



<p class="wp-block-paragraph">先上<a rel="noreferrer noopener" href="https://www.autistici.org/" target="_blank">官网</a>，然后点击最下方“申请账户”的按钮，他就会显示关于申请账户需要知道的一些东西，让你注意一下。最好再看看他们的隐私策略，免得帐号被封停。然后再次点击下面的“申请账户”按钮，就会出现申请页面了。</p>



<p class="wp-block-paragraph">他会问你，需要什么服务。单击输入框，然后选择第一个“邮箱服务”即可。</p>



<figure class="wp-block-image size-large"><img decoding="async" src="https://i.imgtg.com/2023/01/11/G3kVb.png" alt="选择服务类型
"/></figure>



<p class="wp-block-paragraph">点击下一步后，他会让你选择用户名和邮箱后缀，建议选择&#8221;@krutt.org&#8221;这个后缀，方便记忆，不怕忘记。</p>



<p class="wp-block-paragraph">最后一步，填写申请书。<s>我问了一个人，他和我说了下面的模板，可以参考一下：第一，要说你来自中国，第二，要说你以前用其它邮箱如riseup等，但被政府block了，第三，写一下你同意他们的要求，如反种族歧视，爱好和平之类的。</s>（2024年10月7日更新）没有必要这么麻烦，现在有很多生成式人工只能，用他们辅助即可</p>



<p class="wp-block-paragraph">之后，就等他的通知吧。</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.muidar.com/posts/cmuidar/autistici-mail/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Disroot</title>
		<link>https://www.muidar.com/posts/cmuidar/disroot/</link>
					<comments>https://www.muidar.com/posts/cmuidar/disroot/#respond</comments>
		
		<dc:creator><![CDATA[CMuidar]]></dc:creator>
		<pubDate>Wed, 11 Jan 2023 08:52:00 +0000</pubDate>
				<category><![CDATA[工具]]></category>
		<category><![CDATA[邮箱]]></category>
		<guid isPermaLink="false">https://muidar.com/?p=532</guid>

					<description><![CDATA[Disroot有许多服务，有邮箱服务、即时通讯、文件存储等等。 申请账户需要在周一到周五，也就是说只能在工作日 [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">Disroot有许多服务，有邮箱服务、即时通讯、文件存储等等。</p>



<p class="wp-block-paragraph">申请账户需要在周一到周五，也就是说只能在工作日注册(怕滥用)。</p>



<figure class="wp-block-image size-large is-resized"><img fetchpriority="high" decoding="async" src="/wp-content/uploads/2023/01/msedge_Bqfyt1Z7MZ-1024x918.png" alt="" class="wp-image-533" width="524" height="470" srcset="/wp-content/uploads/2023/01/msedge_Bqfyt1Z7MZ-1024x918.png 1024w, /wp-content/uploads/2023/01/msedge_Bqfyt1Z7MZ-300x269.png 300w, /wp-content/uploads/2023/01/msedge_Bqfyt1Z7MZ-768x688.png 768w, /wp-content/uploads/2023/01/msedge_Bqfyt1Z7MZ.png 1235w" sizes="(max-width: 524px) 100vw, 524px" /></figure>



<p class="wp-block-paragraph">上面是注册页面，选择用户名时，不可以侵犯任何商标，侵犯即驳回。<br>显示名是在面板上显示的名字，没有要求，取什么名字都可以，是商标也没有任何问题，反正就你自己用。<br>下面是防止机器人的了，用英语(官方推荐)写一写你害怕什么及原因，至少要150个字符长度。<br>然后你用一个已有的邮箱验证就行了，选项框勾选后你就可以绑定一个邮箱来解决忘记密码的问题。<br>密码就没必要说了，你可以自行设置，达到他的安全要求就可以了。</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.muidar.com/posts/cmuidar/disroot/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>使用duck.com发送邮箱</title>
		<link>https://www.muidar.com/posts/cmuidar/send-emails-with-duck-com/</link>
					<comments>https://www.muidar.com/posts/cmuidar/send-emails-with-duck-com/#respond</comments>
		
		<dc:creator><![CDATA[CMuidar]]></dc:creator>
		<pubDate>Sun, 08 Jan 2023 05:44:12 +0000</pubDate>
				<category><![CDATA[邮箱]]></category>
		<category><![CDATA[马甲邮箱]]></category>
		<category><![CDATA[邮箱转发服务]]></category>
		<guid isPermaLink="false">https://muidar.com/?p=489</guid>

					<description><![CDATA[duck.com邮箱发送的方法]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">duck.com提供了以duck.com结尾的邮箱转发服务。最近发现，此邮箱也可使通过一些方法发送邮箱。严格来说，应该叫做代发，发送后，邮件的header也看不出来你使用那个邮箱发的。</p>



<p class="wp-block-paragraph">方法如下所述：<br>比如你要发送给“username@example.org”，那么你只需要使用你转发到的邮箱发送给“username_at_example.org_<strong>XXX@duck.com</strong>”就行了*。<br>然后你就可以给“username@example.org”发送邮箱了。</p>



<p class="wp-block-paragraph">*其中，把“<strong>XXX@duck.com</strong>”，改为你自己的duck邮箱地址即可。</p>



<p class="wp-block-paragraph">请注意：<br>1.只能由接受duck邮箱的邮箱发出，其他邮箱发送不了。<br>2.对方回复后，你收到邮箱的地址是“username_at_example.org_<strong>XXX@duck.com</strong>”，而不是“username@example.org”。</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.muidar.com/posts/cmuidar/send-emails-with-duck-com/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>临时邮箱推荐</title>
		<link>https://www.muidar.com/posts/cmuidar/tmpmail-suggestions/</link>
					<comments>https://www.muidar.com/posts/cmuidar/tmpmail-suggestions/#comments</comments>
		
		<dc:creator><![CDATA[CMuidar]]></dc:creator>
		<pubDate>Thu, 29 Dec 2022 10:40:09 +0000</pubDate>
				<category><![CDATA[邮箱]]></category>
		<category><![CDATA[工具]]></category>
		<guid isPermaLink="false">https://muidar.com/?p=432</guid>

					<description><![CDATA[临时邮箱可以帮助你不暴露你的真实邮箱]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph"><strong>Chacuo</strong><br>网址：<a rel="noreferrer noopener" href="https://24mail.chacuo.net" target="_blank">https://24mail.chacuo.net</a><br>24小时邮箱，有两个域名chacuo.net和027168.com，前缀可以自选，可以使用自己的域名，添加CNAME记录即可。</p>



<p class="wp-block-paragraph"><strong>Tempmail.cn</strong><br>网址：<a rel="noreferrer noopener" href="https://tempmail.cn/" target="_blank">https://tempmail.cn</a><br>可设置前缀，可以使用自己的域名，需要设置CNAME，别名到mx.tempmail.cn，再访问绑定的域名就行了。</p>



<p class="wp-block-paragraph"><strong>CS.EMAIL</strong><br>网址：<a rel="noreferrer noopener" href="https://cs.email" target="_blank">https://cs.email</a><br>是一个可以发信的临时邮箱，有很多后缀可以使用，发信的时候会有一个小尾巴，cs.email不允许发送垃圾邮箱，识别出来会删除。</p>



<p class="wp-block-paragraph">Guerrilla<br>网址：<a href="https://www.guerrillamail.com/" target="_blank" rel="noreferrer noopener">https://mail.guerrillamail.com</a><br>和cs.email用一个开源软件搭建的，也可已发送，不允许发送垃圾邮箱，域名有：</p>



<ul class="wp-block-list">
<li>@sharklasers.com</li>



<li>@guerrillamail.info</li>



<li>@grr.la</li>



<li>@guerrillamail.biz</li>



<li>@guerrillamail.com</li>



<li>@guerrillamail.de</li>



<li>@guerrillamail.net</li>



<li>@guerrillamail.org</li>



<li>@guerrillamailblock.com</li>



<li>@pokemail.net</li>



<li>@spam4.me</li>
</ul>



<p class="wp-block-paragraph">Tempmail.cc<br>网址：<a href="https://tempmail.cc" target="_blank" rel="noreferrer noopener">https://tempmail.cc</a><br>和tempmail.cn使用同一开源程序搭建的，服务器在DigitalOcean上。</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.muidar.com/posts/cmuidar/tmpmail-suggestions/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>飞书增加邮箱服务器</title>
		<link>https://www.muidar.com/posts/cmuidar/feishu-added-more-mail-servers/</link>
					<comments>https://www.muidar.com/posts/cmuidar/feishu-added-more-mail-servers/#respond</comments>
		
		<dc:creator><![CDATA[CMuidar]]></dc:creator>
		<pubDate>Sun, 18 Dec 2022 10:30:57 +0000</pubDate>
				<category><![CDATA[邮箱]]></category>
		<category><![CDATA[随笔]]></category>
		<category><![CDATA[飞书]]></category>
		<guid isPermaLink="false">https://muidar.com/?p=347</guid>

					<description><![CDATA[最近发现飞书的域名邮箱邮箱多了几个邮箱节点，从原来m1.feishu.com扩张到了mx1.feishu.co [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">最近发现飞书的域名邮箱邮箱多了几个邮箱节点，从原来m1.feishu.com扩张到了mx1.feishu.com mx2.feishu.com mx3.feishu.com。因此，发信快了很多，也修复了一些bug，比如添加不了二级域名作为邮箱域名等。</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.muidar.com/posts/cmuidar/feishu-added-more-mail-servers/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Outlook地方邮箱</title>
		<link>https://www.muidar.com/posts/cmuidar/outlook-county-mail/</link>
					<comments>https://www.muidar.com/posts/cmuidar/outlook-county-mail/#comments</comments>
		
		<dc:creator><![CDATA[CMuidar]]></dc:creator>
		<pubDate>Thu, 03 Nov 2022 05:55:26 +0000</pubDate>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[邮箱]]></category>
		<category><![CDATA[Outlook]]></category>
		<guid isPermaLink="false">https://muidar.com/?p=272</guid>

					<description><![CDATA[我们先记住一下Outlook域名对应的地区及语言： 阿根廷（Argentina） outlook.com.ar [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">我们先记住一下Outlook域名对应的地区及语言：</p>



<p class="wp-block-paragraph">阿根廷（Argentina） outlook.com.ar：es-ar<br>澳大利亚（Australia） outlook.com.au：en-au<br>奥地利（Austria） outlook.at：de-at<br>比利时（Belgium） outlook.be：fr-be<br>巴西（Brazil） outlook.com.br：pt-br<br>智利（Chile） outlook.cl：es-cl<br>捷克（Czech） outlook.cz：cs-cz<br>丹麦（Denmark） outlook.dk：da-dk<br>法国（France） outlook.fr：fr-fr<br>德国（Germany） outlook.de：de-de<br>希腊（Greece） outlook.com.gr：el-gr<br>以色列（Israel） outlook.co.il：he-il<br>印度（India） outlook.in：en-in<br>印尼（Indonesia） outlook.co.id：id-id<br>爱尔兰（Ireland） outlook.ie：en-ie<br>意大利（Italy） outlook.it：it-it<br>匈牙利（Hungary） outlook.hu：hu-hu<br>日本（Japan） outlook.jp：ja-jp<br>韩国（Korea） outlook.kr：ko-kr<br>拉托维亚（Latvia） outlook.lv：lv-lv<br>马来西亚（Malaysia） outlook.my：en-my<br>新西兰（New Zealand） outlook.co.nz：en-nz<br>菲律宾（Philippines） outlook.ph：en-ph<br>葡萄牙（Portugal） outlook.pt：pt-pt<br>沙特阿拉伯（Saudi Arabia） outlook.sa：ar-iq<br>新加坡（Singapore） outlook.sg：en-sg<br>斯洛伐克（Slovakia） outlook.sk：sk-sk<br>西班牙（Spain） outlook.es：es-es<br>泰国（Thailand） outlook.co.th：th-th<br>土耳其（Turkey） outlook.com.tr：tr-tr<br>越南（Vietnam） outlook.com.vn：vi-vn</p>



<p class="wp-block-paragraph">要注册这些后缀，只要在 https://signup.live.com/?lic=1&amp;mkt= 后面加上上面对应的代码即可。</p>



<p class="wp-block-paragraph">本篇文章按照<a href="https://httpsmail.com" target="_blank" rel="noreferrer noopener">httpsmail</a>的QQ交流群里一个人的分享所述。</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.muidar.com/posts/cmuidar/outlook-county-mail/feed/</wfw:commentRss>
			<slash:comments>2</slash:comments>
		
		
			</item>
		<item>
		<title>Sendgrid &#8212; 邮箱推送</title>
		<link>https://www.muidar.com/posts/cmuidar/sendgrid/</link>
					<comments>https://www.muidar.com/posts/cmuidar/sendgrid/#comments</comments>
		
		<dc:creator><![CDATA[CMuidar]]></dc:creator>
		<pubDate>Sat, 15 Oct 2022 07:47:12 +0000</pubDate>
				<category><![CDATA[邮箱]]></category>
		<category><![CDATA[邮箱推送]]></category>
		<guid isPermaLink="false">https://muidar.com/?p=218</guid>

					<description><![CDATA[Sendgrid是一个极好的邮箱推送，可以使用SMTP、API来发送邮箱，官网上有示例。Sendgrid还可以 [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">Sendgrid是一个极好的邮箱推送，可以使用SMTP、API来发送邮箱，官网上有示例。Sendgrid还可以发送短信，不过是付费功能，有免费使用，有兴趣的可以试一试。</p>



<figure class="wp-block-image size-large is-style-default"><img decoding="async" src="https://img.lkxin.cn/tu/2022/11/20/6379ebb9320fc.png" alt="SendGrid首页"/></figure>



<p class="wp-block-paragraph">link: <a rel="noreferrer noopener" href="https://sendgrid.com/" target="_blank">https://sendgrid.com</a></p>



<p class="wp-block-paragraph">点击Start for free，免费注册。记得走代理，不然reCAPTHCA加载不出来。第二次登录的时候会要求添加手机号或者使用Authy这样的软件进行动态验证。</p>



<p class="wp-block-paragraph">然后到 <a rel="noreferrer noopener" href="https://mc.sendgrid.com/senders" target="_blank">https://mc.sendgrid.com/senders</a> 设置用什么邮箱发送，可以验证自己有的域名，或者用已有的邮箱地址验证。推荐第一种，必经第二种会导致入垃圾箱。</p>



<p class="wp-block-paragraph">我们必须设置一个SMTP来发信，<a href="https://app.sendgrid.com/guide/integrate/langs/smtp">https://app.sendgrid.com/guide/integrate/langs/smtp</a> ，这里设置SMTP内容。至此，他会给你一个API Key作为密码，用户名为apikey，smtp地址为smtp.sendgrid.com。</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.muidar.com/posts/cmuidar/sendgrid/feed/</wfw:commentRss>
			<slash:comments>1</slash:comments>
		
		
			</item>
		<item>
		<title>edumail.icu</title>
		<link>https://www.muidar.com/posts/cmuidar/edumail-icu/</link>
					<comments>https://www.muidar.com/posts/cmuidar/edumail-icu/#respond</comments>
		
		<dc:creator><![CDATA[CMuidar]]></dc:creator>
		<pubDate>Tue, 04 Oct 2022 03:47:50 +0000</pubDate>
				<category><![CDATA[邮箱]]></category>
		<guid isPermaLink="false">https://muidar.com/?p=232</guid>

					<description><![CDATA[我发现了一个临时教育邮箱。有两个是教育邮箱后缀，一共有10几个后缀，可以使用。管的松的教育服务还是过得了的。h [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">我发现了一个临时教育邮箱。有两个是教育邮箱后缀，一共有10几个后缀，可以使用。管的松的教育服务还是过得了的。<br><a href="https://edumail.icu/">https://edumail.icu/</a></p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.muidar.com/posts/cmuidar/edumail-icu/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Mailio &#8212; 端到端加密</title>
		<link>https://www.muidar.com/posts/cmuidar/mailio/</link>
					<comments>https://www.muidar.com/posts/cmuidar/mailio/#respond</comments>
		
		<dc:creator><![CDATA[CMuidar]]></dc:creator>
		<pubDate>Sun, 02 Oct 2022 01:33:06 +0000</pubDate>
				<category><![CDATA[邮箱]]></category>
		<guid isPermaLink="false">https://muidar.com/?p=214</guid>

					<description><![CDATA[Mailio是一个邮箱服务，算不上很专业。目前已经脱离了Beta，有很多容易记的用户名。注册以后会有一个Mai [&#8230;]]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">Mailio是一个邮箱服务，算不上很专业。目前已经脱离了Beta，有很多容易记的用户名。注册以后会有一个MailioSmartKey压缩包，可以用里面的两个文件来找回忘记的密码。</p>



<p class="wp-block-paragraph">存储500MB，15GB的话，10$每个月。不建议把这个邮箱当成主要邮箱。发信时，会有一个小尾巴。</p>



<figure class="wp-block-image size-large"><img decoding="async" src="https://i.imgtg.com/2022/10/02/mG7OL.png" alt="小尾巴的图片"/><figcaption class="wp-element-caption">小尾巴</figcaption></figure>



<p class="wp-block-paragraph">测试后发现，发信很慢。Microsoft的邮箱更是直接进入垃圾箱（说实话，没几个邮箱不入微软垃圾箱的），而且连客户端发信都不支持。最可笑的地方是hostadmin和postmaster都让注册。</p>



<p class="wp-block-paragraph">总而言之，这个邮箱玩玩就行，别当真。</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.muidar.com/posts/cmuidar/mailio/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>

<!--
Performance optimized by W3 Total Cache. Learn more: https://www.boldgrid.com/w3-total-cache/

使用页面缓存 Disk: Enhanced 
CDN 全站传输通过 cloudflare
数据库缓存19/33 查询，在0.013秒内使用 Memcached

Served from: muidar.com @ 2026-04-26 01:04:55 by W3 Total Cache
-->