-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathprivacy.html
More file actions
155 lines (147 loc) · 5.26 KB
/
privacy.html
File metadata and controls
155 lines (147 loc) · 5.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>OpenEmail</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..700;1,100..700&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="/css/reset.css" />
<link rel="stylesheet" href="/css/styles.css" />
<link
rel="apple-touch-icon"
sizes="180x180"
href="/img/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="/img/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="/img/favicon-16x16.png"
/>
<link rel="manifest" href="/site.webmanifest" />
</head>
<body>
<header>
<a href="index.html">
<img class="inverted" src="/img/logo_h.svg" alt="Logo" />
</a>
<nav>
<ul>
<li><a href="index.html">Manifesto</a></li>
<li><a href="index.html#stores">Clients</a></li>
<li>
<a
target="_blank"
href="https://github.com/Open-Email/MailHTTPS-Protocol"
>Protocol</a
>
</li>
<li>
<a target="_blank" href="https://github.com/Open-Email"
><img class="inverted" alt="" src="/img/git.svg"
/></a>
</li>
</ul>
</nav>
</header>
<main>
<section>
<h1>Privacy Policy</h1>
<p>
Having a privacy policy has become a standard requirement because too
often, our data is collected, manipulated, and sold without our
consent or knowledge. And usually, our only choice is to not use the
tool we need. We believe that can change.
</p>
<h2>No Tracking. No Data Collection. No Analytics. No AI.</h2>
<p>
Our even shorter version is <em>we can't, don't, won't</em>, but that
common sense default is not considered a valid legal policy today. So
here's the full story.
</p>
<p>
OpenEmail apps do not collect, process, or share any personal
information, except for the data users explicitly choose to include in
their public profile.
</p>
<ul>
<li>No tracking, no analytics, no behavioral data collection.</li>
<li>
No permanent message storage, messages are end-to-end encrypted and
only accessible to intended recipients for a limited time.
</li>
<li>No AI-based content filtering, scanning, or monetization.</li>
</ul>
<h2>We Don't Use Cookies</h2>
<p>
OpenEmail native apps do not use cookies. If you use the web
application, we may use essential cookies strictly for login sessions.
No tracking or analytics cookies are ever used.
</p>
<h2>Public Profiles Are Optional</h2>
<p>
Users may choose to create a public profile, which is uploaded to
their mail agent for others to access.
</p>
<ul>
<li>Users decide exactly what to include.</li>
<li>No one is forced to create a profile—privacy is the default.</li>
<li>OpenEmail developers do not store any profile data.</li>
</ul>
<h2>No Third-Party Services or Ads</h2>
<p>OpenEmail apps do not and will never integrate with:</p>
<ul>
<li>Third-party analytics or tracking services</li>
<li>Advertising networks</li>
<li>Data-sharing services</li>
</ul>
<h2>No Centralized Servers. No Backdoors.</h2>
<ul>
<li>
OpenEmail runs on a decentralized, open protocol. There are no
central servers storing all user data.
</li>
<li>
All messages are end-to-end encrypted, even we cannot access them.
That includes the metadata, such as the information on the parties
with which you are communicating with.
</li>
<li>
There are no backdoors, hidden data collection, or silent
dependencies. We cannot intercept message content even if forced to.
</li>
</ul>
<h2>You Are in Full Control</h2>
<ul>
<li>You can delete your profile or messages at any time.</li>
<li>
No external accounts required, you control your identity and data.
</li>
<li>You decide who to communicate with, and what to share.</li>
</ul>
<h2>Changes to This Policy</h2>
<p>If this policy changes, we'll let you know via app updates or release notes. Our commitment to privacy will never change.</p>
<p><em>2. April 2025</em><br/>OpenEmail SA<br/>Paradiso, Switzerland</p>
</section>
</main>
<footer>
<nav>
<ul>
<li><a href="privacy.html" class="active">Privacy</a></li>
<li><a href="mailto:legacy@open.email">Legacy Contact</a></li>
</ul>
</nav>
</footer>
</body>
</html>