Update: email, xmpp services urls

This commit is contained in:
hyzen
2026-06-24 13:39:32 +05:30
parent 28429ac45b
commit 0c54e425b0
9 changed files with 9 additions and 9 deletions

28
content/services/email.md Normal file
View File

@@ -0,0 +1,28 @@
+++
draft = false
title = 'Email'
weight = 1
registration-needed = true
summary = 'Get a private email account.'
+++
<div id="email-loggedin" style="display:none">
<p><strong>Email ID:</strong> <span id="email-address"></span></p>
<p><strong>Password:</strong> Use the same password that you used during registration.</p>
</div>
<div id="email-loggedout" style="display:none">
<p>Big corporate email providers read and scan every message that passes through their servers. Your emails become training data and ad-targeting fuel.</p>
<p>We provide this service because email privacy shouldn't be a premium feature, it should be the default! Your emails here aren't mined or sold. They aren't anyone's business but yours.</p>
<p>Please <a href="/signup/">sign up</a> to have an email account.</p>
</div>
<script>
(function () {
var username = localStorage.getItem('f4_username');
if (username) {
document.getElementById('email-address').textContent = username + '@freedoms4.org';
document.getElementById('email-loggedin').style.display = '';
} else {
document.getElementById('email-loggedout').style.display = '';
}
})();
</script>