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
|
import React from 'react'
import {H3, H4, P, UL, LI, A, EM, OL} from 'view/com/util/Html'
export default function () {
return (
<>
<H4>Last Updated: 2023/04/06</H4>
<P>
The Bluesky app is built on a decentralized social networking protocol,
the AT Protocol (atproto). Atproto is an open protocol that supports
many different kinds of services. Our mission for the Bluesky app is to
foster a vibrant and evolving community that respects individual
preferences and adapts to the changing needs of our users. With this in
mind, we have established the following goals for our community
guidelines:
</P>
<OL>
<LI>
Empower user choice: We strive to provide users with the ability to
select self-governing services on the AT protocol that align with
their personal preferences and values. This includes making it easy
for others to run their own services, and for users to migrate between
services.
</LI>
<LI>
Cultivate a welcoming environment: Our aim is to create a safe and
friendly space on bsky.social, the server we run, where new users feel
welcome and supported, and where we ourselves enjoy participating. To
help achieve this vision, we have implemented moderation systems
guided by the following policies.
</LI>
<LI>
Maintain up-to-date guidelines: As our user base grows and changes,
our community guidelines must evolve as well. We will regularly review
and update these guidelines in response to feedback from our users,
emerging trends, and changing circumstances, and will strive to
maintain transparency about any changes to our policies.
</LI>
</OL>
<P>
In the following sections, we will dive into the specific policies that
make up our server and community guidelines.
</P>
<H3>Server Guidelines</H3>
<P>
Our server guidelines outline the content policies we have established
for the material hosted on our infrastructure at bsky.social. These
policies have been selected to minimize potential risks and costs
associated with hosting certain types of content, since we have limited
developer resources and want to focus them on improving the AT Protocol.
</P>
<P>
It is important to note that other servers within the atproto network
may have different server-level rules. If you find that our policies do
not align with your preferences, we encourage you to explore alternative
servers or create your own. If you initially choose to use bsky.social
but later decide that our policies do not suit your needs, you will soon
be able to seamlessly migrate your account between servers.
</P>
<P>
<EM>No illegal content or transactions</EM>
</P>
<UL>
<LI>
Don’t share, promote, or engage in any illegal activities or
transactions on our platform. This includes, but is not limited to,
sharing copyrighted material without permission, distributing illicit
substances, or participating in any form of illegal trade.
</LI>
</UL>
<P>
<EM>Don’t break our infrastructure</EM>
</P>
<UL>
<LI>
If you find a vulnerability, please report it to us at
support@bsky.app, and don’t use it to exploit or take down our
infrastructure.
</LI>
</UL>
<H3>Community Guidelines</H3>
<P>
Our community guidelines are designed to promote a safe and enjoyable
experience for all users on our server. These policies serve as an
additional layer on top of our server-level guidelines and are intended
to foster a positive and respectful environment. For some community
guidelines, we plan to offer content filters that you can adjust
according to your preferences, allowing you to view content that has
been initially filtered out. Please be aware that these rules will
evolve over time as we continually work to cultivate a healthy and
thriving community.
</P>
<P>
<EM>Be polite and respectful</EM>
</P>
<UL>
<LI>
Don’t harass, use slurs, threaten violence, or attack people
</LI>
</UL>
<P>
<EM>Don’t spam</EM>
</P>
<UL>
<LI>
Don’t repeatedly post the same message, or excessively promote
anything
</LI>
</UL>
<P>
<EM>Don’t abuse the reporting system</EM>
</P>
<UL>
<LI>
Don’t use the reporting tool to spam, harass users, or submit
unfounded or trivial complaints. The reporting system is in place to
address genuine concerns and maintain the safety and integrity of our
community, so please use it responsibly.
</LI>
</UL>
<H3>Enforcement</H3>
<P>
Our goal is to provide a flexible environment that balances the freedom
and safety of our users. Violations of server or community guidelines
may result in a flag, a warning, an account suspension until you migrate
away from our service, or a permanent account suspension and ban from
our services.{' '}
</P>
<P>References:</P>
<P>
Twitter:{' '}
<A href="https://help.twitter.com/en/rules-and-policies/twitter-rules">
https://help.twitter.com/en/rules-and-policies/twitter-rules
</A>
</P>
<P>
Reddit:{' '}
<A href="https://www.redditinc.com/policies/content-policy">
https://www.redditinc.com/policies/content-policy
</A>
</P>
<P>
Discord:{' '}
<A href="https://discord.com/guidelines">
https://discord.com/guidelines
</A>
</P>
<P>
Discord TOS:{' '}
<A href="https://discord.com/terms">https://discord.com/terms</A>
</P>
</>
)
}
|