gtsocial-umbx

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

statuses.md (1272B)


      1 # Statuses
      2 
      3 ## Settings
      4 
      5 ```yaml
      6 ###########################
      7 ##### STATUSES CONFIG #####
      8 ###########################
      9 
     10 # Config pertaining to the creation of statuses/posts, and permitted limits.
     11 
     12 # Int. Maximum amount of characters permitted for a new status.
     13 # Note that going way higher than the default might break federation.
     14 # Examples: [140, 500, 5000]
     15 # Default: 5000
     16 statuses-max-chars: 5000
     17 
     18 # Int. Maximum amount of characters allowed in the CW/subject header of a status.
     19 # Note that going way higher than the default might break federation.
     20 # Examples: [100, 200]
     21 # Default: 100
     22 statuses-cw-max-chars: 100
     23 
     24 # Int. Maximum amount of options to permit when creating a new poll.
     25 # Note that going way higher than the default might break federation.
     26 # Examples: [4, 6, 10]
     27 # Default: 6
     28 statuses-poll-max-options: 6
     29 
     30 # Int. Maximum amount of characters to permit per poll option when creating a new poll.
     31 # Note that going way higher than the default might break federation.
     32 # Examples: [50, 100, 150]
     33 # Default: 50
     34 statuses-poll-option-max-chars: 50
     35 
     36 # Int. Maximum amount of media files that can be attached to a new status.
     37 # Note that going way higher than the default might break federation.
     38 # Examples: [4, 6, 10]
     39 # Default: 6
     40 statuses-media-max-files: 6
     41 ```