diff options
| author | 2023-05-17 12:03:35 +0200 | |
|---|---|---|
| committer | 2023-05-17 12:03:35 +0200 | |
| commit | ef1db81d1a5fddad802bf54981ccd3b3d92c2529 (patch) | |
| tree | 5ee129479b4a984efd22dd44f742664bd4d0c1b3 | |
| parent | Updated RELEASE_NOTES. (diff) | |
| download | snac2-ef1db81d1a5fddad802bf54981ccd3b3d92c2529.tar.gz snac2-ef1db81d1a5fddad802bf54981ccd3b3d92c2529.tar.xz snac2-ef1db81d1a5fddad802bf54981ccd3b3d92c2529.zip | |
Updated documentation.
| -rw-r--r-- | RELEASE_NOTES.md | 2 | ||||
| -rw-r--r-- | doc/snac.1 | 5 | ||||
| -rw-r--r-- | html.c | 2 |
3 files changed, 7 insertions, 2 deletions
diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index ebb3c66..18ea6ef 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md | |||
| @@ -2,7 +2,7 @@ | |||
| 2 | 2 | ||
| 3 | ## 2.32 | 3 | ## 2.32 |
| 4 | 4 | ||
| 5 | New user setup flag to block direct messages from people you don't follow, in order to mitigate spam from Mastodon open registration instances. | 5 | New user setup flag to drop direct messages from people you don't follow, in order to mitigate spam from Mastodon open registration instances. |
| 6 | 6 | ||
| 7 | When updating user information, the changes are also sent to the people being followed (so they have an updated description about who the user is). | 7 | When updating user information, the changes are also sent to the people being followed (so they have an updated description about who the user is). |
| 8 | 8 | ||
| @@ -101,6 +101,11 @@ only if it's lesser (i.e. you cannot keep posts for longer | |||
| 101 | than what the admin desires). A value of 0 (the default) means | 101 | than what the admin desires). A value of 0 (the default) means |
| 102 | that the global server settings will apply to the posts in your | 102 | that the global server settings will apply to the posts in your |
| 103 | timeline. | 103 | timeline. |
| 104 | .It Drop direct messages from people you don't follow | ||
| 105 | Just what it says in the tin. This is to mitigate spammers | ||
| 106 | coming from Fediverse instances with lax / open registration | ||
| 107 | processes. Please take note that this also avoids possibly | ||
| 108 | legitimate people trying to contact you. | ||
| 104 | .It Password | 109 | .It Password |
| 105 | Write the same string in these two fields to change your | 110 | Write the same string in these two fields to change your |
| 106 | password. Don't write anything if you don't want to do this. | 111 | password. Don't write anything if you don't want to do this. |
| @@ -475,7 +475,7 @@ d_char *html_top_controls(snac *snac, d_char *s) | |||
| 475 | L("Maximum days to keep posts (0: server settings)"), | 475 | L("Maximum days to keep posts (0: server settings)"), |
| 476 | purge_days, | 476 | purge_days, |
| 477 | xs_type(d_dm_f_u) == XSTYPE_TRUE ? "checked" : "", | 477 | xs_type(d_dm_f_u) == XSTYPE_TRUE ? "checked" : "", |
| 478 | L("Block direct messages from people you don't follow"), | 478 | L("Drop direct messages from people you don't follow"), |
| 479 | L("Password (only to change it)"), | 479 | L("Password (only to change it)"), |
| 480 | L("Repeat Password"), | 480 | L("Repeat Password"), |
| 481 | L("Update user info") | 481 | L("Update user info") |