File tree Expand file tree Collapse file tree 3 files changed +30
-10
lines changed Expand file tree Collapse file tree 3 files changed +30
-10
lines changed Original file line number Diff line number Diff line change @@ -107,6 +107,8 @@ This makes tootik lightweight, private and accessible:
107
107
* With support for manual approval of follow requests
108
108
* With support for [ Mastodon's follower synchronization mechanism] ( https://docs.joinmastodon.org/spec/activitypub/#follower-synchronization-mechanism ) , aka [ FEP-8fcf] ( https://codeberg.org/fediverse/fep/src/branch/main/fep/8fcf/fep-8fcf.md )
109
109
* [ FEP-ef61] ( https://codeberg.org/fediverse/fep/src/branch/main/fep/ef61/fep-ef61.md ) portable accounts
110
+ * Accounts on different servers use one Ed25519 keypair
111
+ * User activity is replicated across all servers
110
112
* Multi-choice polls
111
113
* [ Lemmy] ( https://join-lemmy.org/ ) -style communities
112
114
* Follow to join
Original file line number Diff line number Diff line change @@ -31,14 +31,6 @@ This page shows various statistics about this server and the parts of the fedive
31
31
32
32
Follow this link to sign in or create an account on this server.
33
33
34
- There are two kinds of accounts:
35
- * Traditional: tied to this particular server, but provide good interoperability
36
- * Portable: allow replication of your data across multiple servers, but replication is not 100% reliable and interoperability could be limited
37
-
38
- The Common Name property of the client certificate ("identity") you use will determine your username.
39
-
40
- You can add additional client certificates later, or revoke access for an old certificate.
41
-
42
34
Registered users can:
43
35
* Publish posts
44
36
* Reply to posts
@@ -47,3 +39,20 @@ Registered users can:
47
39
* View private posts
48
40
* View a feed of posts by followed users
49
41
* Bookmark posts
42
+
43
+ The Common Name property of the client certificate ("identity") you use will determine your username.
44
+
45
+ You can add additional client certificates later, or revoke access for an old certificate.
46
+
47
+ There are two kinds of accounts:
48
+ * Traditional
49
+ * Portable
50
+
51
+ Traditional accounts are tied to this particular server, but provide good interoperability.
52
+
53
+ Portable accounts may suffer from interoperability issues but have several advantages:
54
+ * They're identified by an Ed25519 key pair and not tied to a particular server
55
+ * They allow replication of your data across multiple servers ("gateways"); this replication is not 100% reliable, though
56
+ * They allow migration away from this server even if it's offline
57
+
58
+ Settings → Data portability allows one to view the private key used to prove the ownership over a portable account and configure the list of gateways.
Original file line number Diff line number Diff line change @@ -120,8 +120,17 @@ Polls must have between 2 and {{.Config.PollMaxOptions}} multi-choice options, a
120
120
The username of a newly created account is the Common Name property of the client certificate used.
121
121
122
122
There are two kinds of accounts:
123
- * Traditional: tied to this particular server, but provide good interoperability
124
- * Portable: allow replication of your data across multiple servers, but replication is not 100% reliable and interoperability could be limited
123
+ * Traditional
124
+ * Portable
125
+
126
+ Traditional accounts are tied to this particular server, but provide good interoperability.
127
+
128
+ Portable accounts may suffer from interoperability issues but have several advantages:
129
+ * They're identified by an Ed25519 key pair and not tied to a particular server
130
+ * They allow replication of your data across multiple servers ("gateways"); this replication is not 100% reliable, though
131
+ * They allow migration away from this server even if it's offline
132
+
133
+ Settings → Data portability allows one to view the private key used to prove the ownership over a portable account and configure the list of gateways.
125
134
126
135
## Client Certificates ("Identities")
127
136
You can’t perform that action at this time.
0 commit comments