Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
mastodon
GitHub Repository: mastodon/joinmastodon
Path: blob/main/pages/donor-policy/mastodon-ggmbh.tsx
1006 views
1
import Image from "next/legacy/image"
2
3
import Link from "next/link"
4
import Head from "next/head"
5
6
import Hero from "../../components/Hero"
7
import Layout from "../../components/Layout"
8
import heroImage from "../../public/illustrations/apps_hero_desktop.png"
9
import deFlagIcon from "../../public/german_flag_icon_round.svg"
10
import PolicyPage from "../../components/PolicyPage"
11
12
const MastodonGGmbHDonorPolicy = () => (
13
<Layout>
14
<div dir="ltr" className="[unicode-bidi:plaintext]">
15
<Hero desktopImage={heroImage} mobileImage={heroImage}>
16
<h1 lang="en" className="h2 mb-4">
17
Mastodon GmbH Donor Policy
18
</h1>
19
<p lang="en" className="sh1">
20
Last updated February 13, 2026
21
</p>
22
</Hero>
23
</div>
24
25
<PolicyPage>
26
<section lang="en">
27
<p className="mt-4 flex justify-end pb-2">
28
<Link
29
className="flex content-center gap-x-1"
30
href="/donor-policy/de/mastodon-ggmbh"
31
>
32
<span className="hover:text-blurple-600">German translation</span>
33
<Image
34
src={deFlagIcon}
35
className="aspect-square"
36
width="20"
37
height="20"
38
alt="German translation"
39
/>
40
</Link>
41
</p>
42
<p className="mt-4">
43
Mastodon’s vision is to reimagine the social media landscape, one that
44
is inclusive, diverse, user driven and supports dialogue. Our mission
45
is to replace centralised platforms with robust social networking
46
software that is inherently decentralised, open source and fully
47
interoperable, with a commitment to privacy.
48
</p>
49
<p className="mt-4">
50
This work is made possible, in part, by donations made by individuals
51
and organisations from around the world. Through this policy, Mastodon
52
defines the basic guidelines governing acceptance and acknowledgment
53
of gifts and grants to further its mission.
54
</p>
55
<p className="mt-4">
56
Any funding towards Mastodon GmbH must be consistent with the
57
organisation’s stated mission and purposes which prioritises its
58
independence.
59
</p>
60
<p className="mt-4">
61
To ensure this, below is an outline of the criteria to reject any form
62
of support that is counter to Mastodon’s values and would place our
63
mission, team, integrity and movement at large at risk:
64
</p>
65
<ul className="mt-4 list-disc ml-8">
66
<li className="mt-2">
67
Arms and weapons manufacturers and military contractors
68
</li>
69
<li className="mt-2">
70
Any entities engaging in criminal activities and human rights
71
violations
72
</li>
73
<li className="mt-2">
74
Any entity that puts the organisation’s team, independence and
75
communities at risk
76
</li>
77
<li className="mt-2">
78
An entity that puts the organisation’s brand at risk, including but
79
not exclusively, such as adult websites, affiliate and review
80
websites, online betting and gambling, SEO services, social media
81
buying and other
82
</li>
83
<li className="mt-2">
84
Any other statements or actions that causes the organisation to
85
question the advisability of accepting a contribution
86
</li>
87
</ul>
88
<p className="mt-4">
89
Mastodon GmbH takes compliance and origin of funding sources very
90
seriously. Funding is essential to adequately support its growth, but
91
will not be allowed to compromise its values. Decisions are taken
92
after examination of each funder and funding source. If a donor does
93
not meet the above criteria, they will be refunded within 30 days of
94
their donation via the original payment method where possible.
95
</p>
96
</section>
97
<section lang="en" className="mt-8">
98
<h4 className="h4 mb-6">Tax Consequences</h4>
99
<p>
100
Mastodon GmbH is unable to offer tax advice to would-be donors.
101
Donors who are concerned about tax-deductibility of donations should
102
consult with their own tax advisers.
103
</p>
104
</section>
105
<section lang="en" className="mt-8">
106
<h4 className="h4 mb-6">Accepting Gifts-in-Kind</h4>
107
<p>
108
Gifts-in-kind may only be accepted by the Executive Director or by an
109
officer delegated in writing by the Executive Director with the
110
authority to accept such a gift.
111
</p>
112
</section>
113
114
<Head>
115
<title lang="en">Mastodon GmbH Donor Policy - Mastodon</title>
116
<meta property="og:title" content="Mastodon GmbH Donor Policy" />
117
</Head>
118
</PolicyPage>
119
</Layout>
120
)
121
122
export default MastodonGGmbHDonorPolicy
123
124