diff options
| author | Hazel K <acomputerdog@gmail.com> | 2024-10-07 21:03:31 -0400 |
|---|---|---|
| committer | Hazelnoot <acomputerdog@gmail.com> | 2024-10-26 09:49:28 -0400 |
| commit | 560ee43dcf2b76cce4b69a449fcd8b9601b7d68d (patch) | |
| tree | c03263ec6e062f4d6ff35abf59dc6703057737a7 /.config/example.yml | |
| parent | merge: teach eslint to check translations (!695) (diff) | |
| download | sharkey-560ee43dcf2b76cce4b69a449fcd8b9601b7d68d.tar.gz sharkey-560ee43dcf2b76cce4b69a449fcd8b9601b7d68d.tar.bz2 sharkey-560ee43dcf2b76cce4b69a449fcd8b9601b7d68d.zip | |
separate character limits for local and remote notes
Diffstat (limited to '.config/example.yml')
| -rw-r--r-- | .config/example.yml | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/.config/example.yml b/.config/example.yml index b9086479ea..6b80dab747 100644 --- a/.config/example.yml +++ b/.config/example.yml @@ -261,8 +261,14 @@ id: 'aidx' # IP address family used for outgoing request (ipv4, ipv6 or dual) #outgoingAddressFamily: ipv4 -# Amount of characters that can be used when writing notes (maximum: 100000, minimum: 1) +# Amount of characters that can be used when writing notes. Longer notes will be rejected. (maximum: 100000, minimum: 1) maxNoteLength: 3000 +# Amount of characters that will be saved for remote notes. Longer notes will be truncated to this length. (maximum: 100000, minimum: 1) +maxRemoteNoteLength: 100000 +# Amount of characters that can be used when writing media descriptions (alt text). Longer descriptions will be rejected. (minimum: 1) +maxAltTextLength: 20000 +# Amount of characters that will be saved for remote media descriptions (alt text). Longer descriptions will be truncated to this length. (minimum: 1) +maxRemoteAltTextLength: 100000 # Proxy for HTTP/HTTPS #proxy: http://127.0.0.1:3128 |