Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
mastodon
GitHub Repository: mastodon/joinmastodon
Path: blob/main/pages/android/safety-standards.tsx
1006 views
1
import BasicPage from "../../components/BasicPage"
2
import Head from "next/head"
3
import Hero from "../../components/Hero"
4
import heroImage from "../../public/illustrations/apps_hero_desktop.png"
5
import { withDefaultStaticProps } from "../../utils/defaultStaticProps"
6
import Layout from "../../components/Layout"
7
8
/** This page does not require translations */
9
const SafetyStandards = () => (
10
<Layout>
11
<div dir="ltr" className="[unicode-bidi:plaintext]">
12
<Hero desktopImage={heroImage} mobileImage={heroImage}>
13
<h1 className="h3 mb-8 pt-16">Mastodon Safety Standards</h1>
14
<p className="sh1">For Mastodon for Android</p>
15
</Hero>
16
<BasicPage>
17
<div>
18
<h3 className="h5 mb-6">Posting or linking to CSAE</h3>
19
<div className="pl-3 border-l-4 border-blurple-600 b1 mb-4">
20
<blockquote
21
className="italic mb-4"
22
cite="https://support.google.com/googleplay/android-developer/answer/14747720#zippy=%2Chow-do-you-define-csae"
23
>
24
<p>
25
CSAE refers to child sexual abuse and exploitation, including
26
content or behavior that sexually exploits, abuses, or endangers
27
children. This includes, for example, grooming a child for
28
sexual exploitation, sextorting a child, trafficking of a child
29
for sex, or otherwise sexually exploiting a child.
30
</p>
31
</blockquote>
32
<p className="text-gray-1">
33
{" "}
34
<a
35
className="hover:text-blurple-500"
36
href="https://support.google.com/googleplay/android-developer/answer/14747720#zippy=%2Chow-do-you-define-csae"
37
>
38
Google Child Safety Standards Policy
39
</a>
40
</p>
41
</div>
42
<p className="b1 mb-6">
43
The &quot;Mastodon&quot; app for Android (&quot;the
44
application&quot;) allows you to connect to the Mastodon server
45
where your account is hosted (&quot;the server&quot;) and create new
46
posts.{" "}
47
<strong>
48
Using the application to post or link to CSAE is strictly
49
prohibited.
50
</strong>
51
</p>
52
<h3 className="h5 mb-6">
53
Reporting accounts posting or linking to CSAE
54
</h3>
55
<p className="b1 mb-6">
56
If you see an account posting CSAE you can report it to your
57
server’s moderators for further action. The option to report an
58
account is available on the dropdown menu next to a post as well as
59
the individual profile.
60
</p>
61
<h3 className="h5 mb-6">Additional reporting</h3>
62
<p className="b1 mb-6">
63
You may also want to report to the relevant organizations in your
64
jurisdiction. Google maintains{" "}
65
<a
66
href="https://support.google.com/websearch/answer/148666"
67
className="font-semibold hover:text-blurple-500"
68
>
69
a list of organisations to report CSAE organised by country
70
</a>
71
. If your country is not listed there it may be listed at{" "}
72
<a
73
href="https://inhope.org/EN#hotlineReferral"
74
className="font-semibold hover:text-blurple-500"
75
>
76
INHOPE
77
</a>
78
.
79
</p>
80
<h3 className="h5 mb-6">Contact</h3>
81
<p className="b1 mb-4">
82
If you have any questions about this CSAE policy please contact{" "}
83
<a
84
href="mailto:[email protected]"
85
className="font-semibold hover:text-blurple-500"
86
>
87
[email protected]
88
</a>
89
.
90
</p>
91
</div>
92
93
<Head>
94
<title>Safety Standards - Mastodon for Android</title>
95
<meta
96
property="og:title"
97
content="Mastodon for Android Safety Standards"
98
/>
99
</Head>
100
</BasicPage>
101
</div>
102
</Layout>
103
)
104
105
export const getStaticProps = withDefaultStaticProps()
106
107
export default SafetyStandards
108
109