2 alias Pleroma.Docs.Generator
7 {Phoenix.Socket.V1.JSONSerializer, "~> 1.0.0"},
8 {Phoenix.Socket.V2.JSONSerializer, "~> 2.0.0"}
15 config :pleroma, :config_description, [
20 description: "Upload general settings",
25 description: "Module which will be used for uploads",
26 suggestions: {:list_behaviour_implementations, Pleroma.Uploaders.Uploader}
30 type: {:list, :module},
32 "List of filter modules for uploads. Module names are shortened (removed leading `Pleroma.Upload.Filter.` part), but on adding custom module you need to use full name.",
33 suggestions: {:list_behaviour_implementations, Pleroma.Upload.Filter}
39 "If enabled, a name parameter will be added to the URL of the upload. For example `https://instance.tld/media/imagehash.png?name=realname.png`."
45 description: "Base URL for the uploads, needed if you use CDN",
47 "https://cdn-host.com"
54 "If enabled, requests to media stored using a remote uploader will be proxied instead of being redirected"
58 label: "Proxy Options",
60 description: "Options for Pleroma.ReverseProxy",
62 redirect_on_failure: false,
63 max_body_length: 25 * 1_048_576,
65 follow_redirect: true,
71 key: :redirect_on_failure,
74 "Redirects the client to the real remote URL if there's any HTTP errors. " <>
75 "Any error during body processing will not be redirected as the response is chunked."
78 key: :max_body_length,
81 "Limits the content length to be approximately the " <>
82 "specified length. It is validated with the `content-length` header and also verified when proxying."
88 description: "HTTP options",
93 description: "Adapter specific options",
99 description: "SSL options for HTTP adapter",
103 type: {:list, :atom},
104 description: "List of TLS versions to use",
105 suggestions: [:tlsv1, ":tlsv1.1", ":tlsv1.2"]
114 type: [:string, :tuple],
115 description: "Proxy URL",
116 suggestions: ["127.0.0.1:8123", {:socks5, :localhost, 9050}]
123 key: :filename_display_max_length,
125 description: "Set max length of a filename to display. 0 = no limit. Default: 30"
131 key: Pleroma.Uploaders.Local,
133 description: "Local uploader-related settings",
138 description: "Path where user's uploads will be saved",
147 key: Pleroma.Uploaders.S3,
149 description: "S3 uploader-related settings",
154 description: "S3 bucket",
160 key: :bucket_namespace,
162 description: "S3 bucket namespace",
163 suggestions: ["pleroma"]
166 key: :public_endpoint,
168 description: "S3 endpoint",
169 suggestions: ["https://s3.amazonaws.com"]
172 key: :truncated_namespace,
175 "If you use S3 compatible service such as Digital Ocean Spaces or CDN, set folder name or \"\" etc." <>
176 " For example, when using CDN to S3 virtual host format, set \"\". At this time, write CNAME to CDN in public_endpoint."
179 key: :streaming_enabled,
182 "Enable streaming uploads, when enabled the file will be sent to the server in chunks as it's being read. This may be unsupported by some providers, try disabling this if you have upload problems."
188 key: Pleroma.Upload.Filter.Mogrify,
190 description: "Uploads mogrify filter settings",
194 type: [:string, {:list, :string}, {:list, :tuple}],
196 "List of actions for the mogrify command. It's possible to add self-written settings as string. " <>
197 "For example `[\"auto-orient\", \"strip\", {\"resize\", \"3840x1080>\"}]` string will be parsed into list of the settings.",
208 key: Pleroma.Upload.Filter.AnonymizeFilename,
210 description: "Filter replaces the filename of the upload",
216 "Text to replace filenames in links. If no setting, {random}.extension will be used. You can get the original" <>
217 " filename extension by using {extension}, for example custom-file-name.{extension}.",
219 "custom-file-name.{extension}"
226 key: Pleroma.Emails.Mailer,
228 description: "Mailer-related settings",
234 "One of the mail adapters listed in [Swoosh readme](https://github.com/swoosh/swoosh#adapters)," <>
235 " or Swoosh.Adapters.Local for in-memory mailbox",
237 Swoosh.Adapters.SMTP,
238 Swoosh.Adapters.Sendgrid,
239 Swoosh.Adapters.Sendmail,
240 Swoosh.Adapters.Mandrill,
241 Swoosh.Adapters.Mailgun,
242 Swoosh.Adapters.Mailjet,
243 Swoosh.Adapters.Postmark,
244 Swoosh.Adapters.SparkPost,
245 Swoosh.Adapters.AmazonSES,
247 Swoosh.Adapters.SocketLabs,
248 Swoosh.Adapters.Gmail,
249 Swoosh.Adapters.Local
255 description: "Allow/disallow send emails"
258 group: {:subgroup, Swoosh.Adapters.SMTP},
261 description: "`Swoosh.Adapters.SMTP` adapter specific setting",
262 suggestions: ["smtp.gmail.com"]
265 group: {:subgroup, Swoosh.Adapters.SMTP},
268 description: "`Swoosh.Adapters.SMTP` adapter specific setting",
269 suggestions: ["pleroma"]
272 group: {:subgroup, Swoosh.Adapters.SMTP},
275 description: "`Swoosh.Adapters.SMTP` adapter specific setting",
276 suggestions: ["password"]
279 group: {:subgroup, Swoosh.Adapters.SMTP},
283 description: "`Swoosh.Adapters.SMTP` adapter specific setting"
286 group: {:subgroup, Swoosh.Adapters.SMTP},
290 description: "`Swoosh.Adapters.SMTP` adapter specific setting",
291 suggestions: [:always, :never, :if_available]
294 group: {:subgroup, Swoosh.Adapters.SMTP},
297 description: "`Swoosh.Adapters.SMTP` adapter specific setting",
298 suggestions: [:always, :never, :if_available]
301 group: {:subgroup, Swoosh.Adapters.SMTP},
304 description: "`Swoosh.Adapters.SMTP` adapter specific setting",
308 group: {:subgroup, Swoosh.Adapters.SMTP},
311 description: "`Swoosh.Adapters.SMTP` adapter specific setting",
315 group: {:subgroup, Swoosh.Adapters.SMTP},
317 label: "No MX lookups",
319 description: "`Swoosh.Adapters.SMTP` adapter specific setting"
322 group: {:subgroup, Swoosh.Adapters.Sendgrid},
326 description: "`Swoosh.Adapters.Sendgrid` adapter specific setting",
327 suggestions: ["my-api-key"]
330 group: {:subgroup, Swoosh.Adapters.Sendmail},
333 description: "`Swoosh.Adapters.Sendmail` adapter specific setting",
334 suggestions: ["/usr/bin/sendmail"]
337 group: {:subgroup, Swoosh.Adapters.Sendmail},
340 description: "`Swoosh.Adapters.Sendmail` adapter specific setting",
341 suggestions: ["-N delay,failure,success"]
344 group: {:subgroup, Swoosh.Adapters.Sendmail},
347 description: "`Swoosh.Adapters.Sendmail` adapter specific setting"
350 group: {:subgroup, Swoosh.Adapters.Mandrill},
354 description: "`Swoosh.Adapters.Mandrill` adapter specific setting",
355 suggestions: ["my-api-key"]
358 group: {:subgroup, Swoosh.Adapters.Mailgun},
362 description: "`Swoosh.Adapters.Mailgun` adapter specific setting",
363 suggestions: ["my-api-key"]
366 group: {:subgroup, Swoosh.Adapters.Mailgun},
369 description: "`Swoosh.Adapters.Mailgun` adapter specific setting",
370 suggestions: ["pleroma.com"]
373 group: {:subgroup, Swoosh.Adapters.Mailjet},
377 description: "`Swoosh.Adapters.Mailjet` adapter specific setting",
378 suggestions: ["my-api-key"]
381 group: {:subgroup, Swoosh.Adapters.Mailjet},
384 description: "`Swoosh.Adapters.Mailjet` adapter specific setting",
385 suggestions: ["my-secret-key"]
388 group: {:subgroup, Swoosh.Adapters.Postmark},
392 description: "`Swoosh.Adapters.Postmark` adapter specific setting",
393 suggestions: ["my-api-key"]
396 group: {:subgroup, Swoosh.Adapters.SparkPost},
400 description: "`Swoosh.Adapters.SparkPost` adapter specific setting",
401 suggestions: ["my-api-key"]
404 group: {:subgroup, Swoosh.Adapters.SparkPost},
407 description: "`Swoosh.Adapters.SparkPost` adapter specific setting",
408 suggestions: ["https://api.sparkpost.com/api/v1"]
411 group: {:subgroup, Swoosh.Adapters.AmazonSES},
414 description: "`Swoosh.Adapters.AmazonSES` adapter specific setting",
415 suggestions: ["us-east-1", "us-east-2"]
418 group: {:subgroup, Swoosh.Adapters.AmazonSES},
421 description: "`Swoosh.Adapters.AmazonSES` adapter specific setting",
422 suggestions: ["aws-access-key"]
425 group: {:subgroup, Swoosh.Adapters.AmazonSES},
428 description: "`Swoosh.Adapters.AmazonSES` adapter specific setting",
429 suggestions: ["aws-secret-key"]
432 group: {:subgroup, Swoosh.Adapters.Dyn},
436 description: "`Swoosh.Adapters.Dyn` adapter specific setting",
437 suggestions: ["my-api-key"]
440 group: {:subgroup, Swoosh.Adapters.SocketLabs},
443 description: "`Swoosh.Adapters.SocketLabs` adapter specific setting"
446 group: {:subgroup, Swoosh.Adapters.SocketLabs},
450 description: "`Swoosh.Adapters.SocketLabs` adapter specific setting"
453 group: {:subgroup, Swoosh.Adapters.Gmail},
456 description: "`Swoosh.Adapters.Gmail` adapter specific setting"
463 description: "`Swoosh.Adapters.Local` adapter specific settings",
466 group: {:subgroup, Swoosh.Adapters.Local},
469 description: "Run the preview server together as part of your app"
472 group: {:subgroup, Swoosh.Adapters.Local},
475 description: "The preview server port",
483 label: "URI Schemes",
485 description: "URI schemes related settings",
489 type: {:list, :string},
490 description: "List of the scheme part that is considered valid to be an URL",
515 description: "Instance-related settings",
520 description: "Name of the instance",
527 label: "Admin Email Address",
529 description: "Email used to reach an Administrator/Moderator of the instance",
536 label: "Sender Email Address",
538 description: "Envelope FROM address for mail sent via Pleroma",
547 "The instance's description. It can be seen in nodeinfo and `/api/v1/instance`",
555 description: "Posts character limit (CW/Subject included in the counter)",
563 description: "Character limit of the instance chat messages",
571 description: "Hard character limit beyond which remote posts will be dropped",
579 description: "File size limit of uploads (except for avatar, background, banner)",
585 key: :avatar_upload_limit,
587 description: "File size limit of user's profile avatars",
593 key: :background_upload_limit,
595 description: "File size limit of user's profile backgrounds",
601 key: :banner_upload_limit,
603 description: "File size limit of user's profile banners",
611 description: "A map with poll limits for local polls",
615 max_option_chars: 200,
617 max_expiration: 31_536_000
624 description: "Maximum number of options",
628 key: :max_option_chars,
630 description: "Maximum number of characters per option",
634 key: :min_expiration,
636 description: "Minimum expiration time (in seconds)",
640 key: :max_expiration,
642 description: "Maximum expiration time (in seconds)",
648 key: :registrations_open,
651 "Enable registrations for anyone. Invitations require this setting to be disabled."
654 key: :invites_enabled,
657 "Enable user invitations for admins (depends on `registrations_open` being disabled)"
660 key: :account_activation_required,
662 description: "Require users to confirm their emails before signing in"
667 description: "Enable federation with other instances"
670 key: :federation_incoming_replies_max_depth,
671 label: "Fed. incoming replies max depth",
674 "Max. depth of reply-to and reply activities fetching on incoming federation, to prevent out-of-memory situations while" <>
675 " fetching very long threads. If set to `nil`, threads of any depth will be fetched. Lower this value if you experience out-of-memory crashes.",
681 key: :federation_reachability_timeout_days,
682 label: "Fed. reachability timeout days",
685 "Timeout (in days) of each external federation target being unreachable prior to pausing federating to it",
693 description: "Enable Pleroma's Relay, which makes it possible to follow a whole instance"
699 "Makes the client API in authenticated mode-only except for user-profiles." <>
700 " Useful for disabling the Local Timeline and The Whole Known Network. " <>
701 " Note: when setting to `false`, please also check `:restrict_unauthenticated` setting."
704 key: :quarantined_instances,
705 type: {:list, :string},
707 "List of ActivityPub instances where private (DMs, followers-only) activities will not be sent",
714 key: :managed_config,
717 "Whenether the config for pleroma-fe is configured in this config or in static/config.json"
722 description: "Instance static directory",
728 key: :allowed_post_formats,
729 type: {:list, :string},
730 description: "MIME-type list of formats allowed to be posted (transformed into HTML)",
739 key: :extended_nickname_format,
742 "Enable to use extended local nicknames format (allows underscores/dashes)." <>
743 " This will break federation with older software for theses nicknames."
746 key: :cleanup_attachments,
749 Enable to remove associated attachments when status is removed.
750 This will not affect duplicates and attachments without status.
751 Enabling this will increase load to database when deleting statuses on larger instances.
755 key: :max_pinned_statuses,
757 description: "The maximum number of pinned statuses. 0 will disable the feature.",
765 key: :autofollowed_nicknames,
766 type: {:list, :string},
768 "Set to nicknames of (local) users that every new user should automatically follow",
777 key: :attachment_links,
779 description: "Enable to automatically add attachment link text to statuses"
782 key: :welcome_message,
785 "A message that will be sent to a newly registered users as a direct message",
787 "Hi, @username! Welcome on board!"
791 key: :welcome_user_nickname,
793 description: "The nickname of the local user that sends the welcome message",
799 key: :max_report_comment_size,
801 description: "The maximum size of the report comment. Default: 1000.",
807 key: :safe_dm_mentions,
808 label: "Safe DM mentions",
811 "If enabled, only mentions at the beginning of a post will be used to address people in direct messages." <>
812 " This is to prevent accidental mentioning of people when talking about them (e.g. \"@admin please keep an eye on @bad_actor\")." <>
818 description: "If enabled, system data will be shown on `/api/pleroma/healthcheck`"
821 key: :remote_post_retention_days,
824 "The default amount of days to retain remote posts when pruning the database",
830 key: :user_bio_length,
832 description: "A user bio maximum length. Default: 5000.",
838 key: :user_name_length,
840 description: "A user name maximum length. Default: 100.",
846 key: :skip_thread_containment,
848 description: "Skip filtering out broken threads. Default: enabled."
851 key: :limit_to_local_content,
852 type: {:dropdown, :atom},
854 "Limit unauthenticated users to search for local statutes and users only. Default: `:unauthenticated`.",
862 key: :max_account_fields,
864 description: "The maximum number of custom fields in the user profile. Default: 10.",
870 key: :max_remote_account_fields,
873 "The maximum number of custom fields in the remote user profile. Default: 20.",
879 key: :account_field_name_length,
881 description: "An account field name maximum length. Default: 512.",
887 key: :account_field_value_length,
889 description: "An account field value maximum length. Default: 2048.",
895 key: :external_user_synchronization,
897 description: "Enabling following/followers counters synchronization for external users"
900 key: :multi_factor_authentication,
902 description: "Multi-factor authentication settings",
905 totp: [digits: 6, period: 30],
906 backup_codes: [number: 5, length: 16]
912 label: "TOTP settings",
914 description: "TOTP settings",
915 suggestions: [digits: 6, period: 30],
922 "Determines the length of a one-time pass-code, in characters. Defaults to 6 characters."
929 "A period for which the TOTP code will be valid, in seconds. Defaults to 30 seconds."
936 description: "MFA backup codes settings",
937 suggestions: [number: 5, length: 16],
943 description: "Number of backup codes to generate."
950 "Determines the length of backup one-time pass-codes, in characters. Defaults to 16 characters."
957 key: :instance_thumbnail,
960 "The instance thumbnail can be any image that represents your instance and is used by some apps or services when they display information about your instance.",
961 suggestions: ["/instance/thumbnail.jpeg"]
968 description: "Logger-related settings",
972 type: [:atom, :tuple, :module],
974 "Where logs will be sent, :console - send logs to stdout, { ExSyslogger, :ex_syslogger } - to syslog, Quack.Logger - to Slack.",
975 suggestions: [:console, {ExSyslogger, :ex_syslogger}, Quack.Logger]
983 label: "ExSyslogger",
984 description: "ExSyslogger-related settings",
988 type: {:dropdown, :atom},
989 description: "Log level",
990 suggestions: [:debug, :info, :warn, :error]
996 "A string that's prepended to every message, and is typically set to the app name",
997 suggestions: ["pleroma"]
1002 description: "Default: \"$date $time [$level] $levelpad$node $metadata $message\"",
1003 suggestions: ["$metadata[$level] $message"]
1007 type: {:list, :atom},
1008 suggestions: [:request_id]
1016 label: "Console Logger",
1017 description: "Console logger settings",
1021 type: {:dropdown, :atom},
1022 description: "Log level",
1023 suggestions: [:debug, :info, :warn, :error]
1028 description: "Default: \"$date $time [$level] $levelpad$node $metadata $message\"",
1029 suggestions: ["$metadata[$level] $message"]
1033 type: {:list, :atom},
1034 suggestions: [:request_id]
1041 label: "Quack Logger",
1042 description: "Quack-related settings",
1046 type: {:dropdown, :atom},
1047 description: "Log level",
1048 suggestions: [:debug, :info, :warn, :error]
1052 type: {:list, :atom},
1053 description: "Configure which metadata you want to report on",
1070 label: "Webhook URL",
1072 description: "Configure the Slack incoming webhook",
1073 suggestions: ["https://hooks.slack.com/services/YOUR-KEY-HERE"]
1079 key: :frontend_configurations,
1082 "This form can be used to configure a keyword list that keeps the configuration data for any " <>
1083 "kind of frontend. By default, settings for pleroma_fe and masto_fe are configured. If you want to " <>
1084 "add your own configuration your settings all fields must be complete.",
1088 label: "Pleroma FE",
1090 description: "Settings for Pleroma FE",
1093 alwaysShowSubjectInput: true,
1094 background: "/static/aurora_borealis.jpg",
1095 collapseMessageWithSubject: false,
1098 hideFilteredStatuses: false,
1099 hideMutedPosts: false,
1100 hidePostStats: false,
1101 hideSitename: false,
1102 hideUserStats: false,
1103 loginMethod: "password",
1104 logo: "/static/logo.png",
1107 minimalScopesMode: false,
1108 noAttachmentLinks: false,
1109 nsfwCensorImage: "/static/img/nsfw.74818f9.png",
1110 postContentType: "text/plain",
1111 redirectRootLogin: "/main/friends",
1112 redirectRootNoLogin: "/main/all",
1114 sidebarRight: false,
1115 showFeaturesPanel: true,
1116 showInstanceSpecificPanel: false,
1117 subjectLineBehavior: "email",
1118 theme: "pleroma-dark",
1119 webPushNotifications: false
1124 key: :alwaysShowSubjectInput,
1125 label: "Always show subject input",
1127 description: "When disabled, auto-hide the subject field if it's empty"
1133 "URL of the background, unless viewing a user profile with a background that is set",
1134 suggestions: ["/images/city.jpg"]
1137 key: :collapseMessageWithSubject,
1138 label: "Collapse message with subject",
1141 "When a message has a subject (aka Content Warning), collapse it by default"
1145 label: "PleromaFE Chat",
1147 description: "Disables PleromaFE Chat component"
1153 description: "Enables green text on lines prefixed with the > character"
1156 key: :hideFilteredStatuses,
1157 label: "Hide Filtered Statuses",
1159 description: "Hides filtered statuses from timelines"
1162 key: :hideMutedPosts,
1163 label: "Hide Muted Posts",
1165 description: "Hides muted statuses from timelines"
1168 key: :hidePostStats,
1169 label: "Hide post stats",
1171 description: "Hide notices statistics (repeats, favorites, ...)"
1175 label: "Hide Sitename",
1177 description: "Hides instance name from PleromaFE banner"
1180 key: :hideUserStats,
1181 label: "Hide user stats",
1184 "Hide profile statistics (posts, posts per day, followers, followings, ...)"
1189 description: "URL of the logo, defaults to Pleroma's logo",
1190 suggestions: ["/static/logo.png"]
1194 label: "Logo margin",
1197 "Allows you to adjust vertical margins between logo boundary and navbar borders. " <>
1198 "The idea is that to have logo's image without any extra margins and instead adjust them to your need in layout.",
1199 suggestions: [".1em"]
1206 "By default it assumes logo used will be monochrome with alpha channel to be compatible with both light and dark themes. " <>
1207 "If you want a colorful logo you must disable logoMask."
1210 key: :minimalScopesMode,
1211 label: "Minimal scopes mode",
1214 "Limit scope selection to Direct, User default, and Scope of post replying to. " <>
1215 "Also prevents replying to a DM with a public post from PleromaFE."
1218 key: :nsfwCensorImage,
1219 label: "NSFW Censor Image",
1222 "URL of the image to use for hiding NSFW media attachments in the timeline",
1223 suggestions: ["/static/img/nsfw.74818f9.png"]
1226 key: :postContentType,
1227 label: "Post Content Type",
1228 type: {:dropdown, :atom},
1229 description: "Default post formatting option",
1230 suggestions: ["text/plain", "text/html", "text/markdown", "text/bbcode"]
1233 key: :redirectRootNoLogin,
1234 label: "Redirect root no login",
1237 "Relative URL which indicates where to redirect when a user isn't logged in",
1238 suggestions: ["/main/all"]
1241 key: :redirectRootLogin,
1242 label: "Redirect root login",
1245 "Relative URL which indicates where to redirect when a user is logged in",
1246 suggestions: ["/main/friends"]
1250 label: "Scope copy",
1252 description: "Copy the scope (private/unlisted/public) in replies to posts by default"
1256 label: "Sidebar on Right",
1258 description: "Change alignment of sidebar and panels to the right"
1261 key: :showFeaturesPanel,
1262 label: "Show instance features panel",
1265 "Enables panel displaying functionality of the instance on the About page"
1268 key: :showInstanceSpecificPanel,
1269 label: "Show instance specific panel",
1271 description: "Whether to show the instance's custom panel"
1274 key: :subjectLineBehavior,
1275 label: "Subject line behavior",
1277 description: "Allows changing the default behaviour of subject lines in replies.
1278 `email`: copy and preprend re:, as in email,
1279 `masto`: copy verbatim, as in Mastodon,
1280 `noop`: don't copy the subject.",
1281 suggestions: ["email", "masto", "noop"]
1286 description: "Which theme to use. Available themes are defined in styles.json",
1287 suggestions: ["pleroma-dark"]
1295 description: "Settings for Masto FE",
1298 showInstanceSpecificPanel: true
1303 key: :showInstanceSpecificPanel,
1304 label: "Show instance specific panel",
1306 description: "Whenether to show the instance's specific panel"
1317 "This section configures assets to be used with various frontends. Currently the only option relates to mascots on the mastodon frontend",
1321 type: {:keyword, :map},
1323 "Keyword of mascots, each element must contain both an URL and a mime_type key",
1326 url: "/images/pleroma-fox-tan-smol.png",
1327 mime_type: "image/png"
1329 pleroma_fox_tan_shy: %{
1330 url: "/images/pleroma-fox-tan-shy.png",
1331 mime_type: "image/png"
1336 key: :default_mascot,
1339 "This will be used as the default mascot on MastoFE. Default: `:pleroma_fox_tan`",
1345 key: :default_user_avatar,
1347 description: "URL of the default user avatar",
1348 suggestions: ["/images/avi.png"]
1357 "This section describe PWA manifest instance-specific values. Currently this option relate only for MastoFE.",
1361 type: {:list, :map},
1362 description: "Describe the icons of the app",
1365 src: "/static/logo.png"
1368 src: "/static/icon.png",
1372 src: "/static/icon.ico",
1373 sizes: "72x72 96x96 128x128 256x256"
1380 description: "Describe the theme color of the app",
1381 suggestions: ["#282c37", "mediumpurple"]
1384 key: :background_color,
1386 description: "Describe the background color of the app",
1387 suggestions: ["#191b22", "aliceblue"]
1397 description: "General MRF settings",
1401 type: [:module, {:list, :module}],
1403 "A list of MRF policies enabled. Module names are shortened (removed leading `Pleroma.Web.ActivityPub.MRF.` part), but on adding custom module you need to use full name.",
1404 suggestions: {:list_behaviour_implementations, Pleroma.Web.ActivityPub.MRF}
1408 label: "MRF transparency",
1411 "Make the content of your Message Rewrite Facility settings public (via nodeinfo)"
1414 key: :transparency_exclusions,
1415 label: "MRF transparency exclusions",
1416 type: {:list, :string},
1418 "Exclude specific instance names from MRF transparency. The use of the exclusions feature will be disclosed in nodeinfo as a boolean value.",
1429 label: "MRF Simple",
1431 description: "Simple ingress policies",
1434 key: :media_removal,
1435 type: {:list, :string},
1436 description: "List of instances to strip media attachments from",
1437 suggestions: ["example.com", "*.example.com"]
1441 label: "Media NSFW",
1442 type: {:list, :string},
1443 description: "List of instances to tag all media as NSFW (sensitive) from",
1444 suggestions: ["example.com", "*.example.com"]
1447 key: :federated_timeline_removal,
1448 type: {:list, :string},
1450 "List of instances to remove from the Federated (aka The Whole Known Network) Timeline",
1451 suggestions: ["example.com", "*.example.com"]
1455 type: {:list, :string},
1456 description: "List of instances to reject activities from (except deletes)",
1457 suggestions: ["example.com", "*.example.com"]
1461 type: {:list, :string},
1462 description: "List of instances to only accept activities from (except deletes)",
1463 suggestions: ["example.com", "*.example.com"]
1466 key: :report_removal,
1467 type: {:list, :string},
1468 description: "List of instances to reject reports from",
1469 suggestions: ["example.com", "*.example.com"]
1472 key: :avatar_removal,
1473 type: {:list, :string},
1474 description: "List of instances to strip avatars from",
1475 suggestions: ["example.com", "*.example.com"]
1478 key: :banner_removal,
1479 type: {:list, :string},
1480 description: "List of instances to strip banners from",
1481 suggestions: ["example.com", "*.example.com"]
1484 key: :reject_deletes,
1485 type: {:list, :string},
1486 description: "List of instances to reject deletions from",
1487 suggestions: ["example.com", "*.example.com"]
1493 key: :mrf_activity_expiration,
1495 label: "MRF Activity Expiration Policy",
1497 description: "Adds automatic expiration to all local activities",
1502 description: "Default global expiration time for all local activities (in days)",
1503 suggestions: [90, 365]
1511 label: "MRF Subchain",
1514 "This policy processes messages through an alternate pipeline when a given message matches certain criteria." <>
1515 " All criteria are configured as a map of regular expressions to lists of policy modules.",
1519 type: {:map, {:list, :string}},
1520 description: "Matches a series of regular expressions against the actor field",
1523 ~r/https:\/\/example.com/s => [Pleroma.Web.ActivityPub.MRF.DropPolicy]
1531 key: :mrf_rejectnonpublic,
1533 description: "RejectNonPublic drops posts with non-public visibility settings.",
1534 label: "MRF Reject Non Public",
1538 key: :allow_followersonly,
1539 label: "Allow followers-only",
1541 description: "Whether to allow followers-only posts"
1546 description: "Whether to allow direct messages"
1552 key: :mrf_hellthread,
1554 label: "MRF Hellthread",
1556 description: "Block messages with excessive user mentions",
1559 key: :delist_threshold,
1562 "Number of mentioned users after which the message gets removed from timelines and" <>
1563 "disables notifications. Set to 0 to disable.",
1567 key: :reject_threshold,
1570 "Number of mentioned users after which the messaged gets rejected. Set to 0 to disable.",
1579 label: "MRF Keyword",
1581 description: "Reject or Word-Replace messages with a keyword or regex",
1585 type: {:list, :string},
1587 "A list of patterns which result in message being rejected. Each pattern can be a string or a regular expression.",
1588 suggestions: ["foo", ~r/foo/iu]
1591 key: :federated_timeline_removal,
1592 type: {:list, :string},
1594 "A list of patterns which result in message being removed from federated timelines (a.k.a unlisted). Each pattern can be a string or a regular expression.",
1595 suggestions: ["foo", ~r/foo/iu]
1599 type: {:list, :tuple},
1601 "A list of tuples containing {pattern, replacement}. Each pattern can be a string or a regular expression.",
1602 suggestions: [{"foo", "bar"}, {~r/foo/iu, "bar"}]
1610 label: "MRF Mention",
1612 description: "Block messages which mention a specific user",
1616 type: {:list, :string},
1617 description: "A list of actors for which any post mentioning them will be dropped",
1618 suggestions: ["actor1", "actor2"]
1624 key: :mrf_vocabulary,
1626 label: "MRF Vocabulary",
1628 description: "Filter messages which belong to certain activity vocabularies",
1632 type: {:list, :string},
1634 "A list of ActivityStreams terms to accept. If empty, all supported messages are accepted.",
1635 suggestions: ["Create", "Follow", "Mention", "Announce", "Like"]
1639 type: {:list, :string},
1641 "A list of ActivityStreams terms to reject. If empty, no messages are rejected.",
1642 suggestions: ["Create", "Follow", "Mention", "Announce", "Like"]
1648 # key: :mrf_user_allowlist,
1651 # "The keys in this section are the domain names that the policy should apply to." <>
1652 # " Each key should be assigned a list of users that should be allowed through by their ActivityPub ID",
1654 # %{"example.org" => ["https://example.org/users/admin"]}
1662 description: "Media proxy",
1667 description: "Enables proxying of remote media to the instance's proxy"
1674 "The base URL to access a user-uploaded file. Useful when you want to proxy the media files via another host/CDN fronts.",
1675 suggestions: ["https://example.com"]
1683 provider: Pleroma.Web.MediaProxy.Invalidation.Script
1689 description: "Enables invalidate media cache"
1694 description: "Module which will be used to cache purge.",
1696 Pleroma.Web.MediaProxy.Invalidation.Script,
1697 Pleroma.Web.MediaProxy.Invalidation.Http
1704 label: "Proxy Options",
1706 description: "Options for Pleroma.ReverseProxy",
1708 redirect_on_failure: false,
1709 max_body_length: 25 * 1_048_576,
1711 follow_redirect: true,
1717 key: :redirect_on_failure,
1720 "Redirects the client to the real remote URL if there's any HTTP errors. " <>
1721 "Any error during body processing will not be redirected as the response is chunked."
1724 key: :max_body_length,
1727 "Limits the content length to be approximately the " <>
1728 "specified length. It is validated with the `content-length` header and also verified when proxying."
1734 description: "HTTP options",
1739 description: "Adapter specific options",
1744 label: "SSL Options",
1745 description: "SSL options for HTTP adapter",
1749 type: {:list, :atom},
1750 description: "List of TLS version to use",
1751 suggestions: [:tlsv1, ":tlsv1.1", ":tlsv1.2"]
1760 type: [:string, :tuple],
1761 description: "Proxy URL",
1762 suggestions: ["127.0.0.1:8123", {:socks5, :localhost, 9050}]
1770 type: {:list, :string},
1771 description: "List of hosts with scheme to bypass the mediaproxy",
1772 suggestions: ["http://example.com"]
1778 key: Pleroma.Web.MediaProxy.Invalidation.Http,
1780 description: "HTTP invalidate settings",
1785 description: "HTTP method of request. Default: :purge"
1789 type: {:keyword, :string},
1790 description: "HTTP headers of request",
1791 suggestions: [{"x-refresh", 1}]
1796 description: "Request options",
1800 type: {:map, :string}
1808 key: Pleroma.Web.MediaProxy.Invalidation.Script,
1810 description: "Script invalidate settings",
1815 description: "Path to shell script. Which will run purge cache.",
1816 suggestions: ["./installation/nginx-cache-purge.sh.example"]
1824 description: "Gopher settings",
1829 description: "Enables the gopher interface"
1835 description: "IP address to bind to",
1836 suggestions: [{0, 0, 0, 0}]
1841 description: "Port to bind to",
1847 description: "Port advertised in URLs (optional, defaults to port)",
1855 label: "ActivityPub",
1857 description: "ActivityPub-related settings",
1860 key: :unfollow_blocked,
1862 description: "Whether blocks result in people getting unfollowed"
1865 key: :outgoing_blocks,
1867 description: "Whether to federate blocks to other instances"
1870 key: :sign_object_fetches,
1872 description: "Sign object fetches with HTTP signatures"
1875 key: :note_replies_output_limit,
1878 "The number of Note replies' URIs to be included with outgoing federation (`5` to match Mastodon hardcoded value, `0` to disable the output)"
1881 key: :follow_handshake_timeout,
1883 description: "Following handshake timeout",
1890 key: :http_security,
1891 label: "HTTP security",
1893 description: "HTTP security settings",
1898 description: "Whether the managed content security policy is enabled"
1904 description: "Whether to additionally send a Strict-Transport-Security header"
1908 label: "STS max age",
1910 description: "The maximum age for the Strict-Transport-Security header if sent",
1911 suggestions: [31_536_000]
1915 label: "CT max age",
1917 description: "The maximum age for the Expect-CT header if sent",
1918 suggestions: [2_592_000]
1921 key: :referrer_policy,
1923 description: "The referrer policy to use, either \"same-origin\" or \"no-referrer\"",
1924 suggestions: ["same-origin", "no-referrer"]
1928 label: "Report URI",
1930 description: "Adds the specified URL to report-uri and report-to group in CSP header",
1931 suggestions: ["https://example.com/report-uri"]
1936 group: :web_push_encryption,
1937 key: :vapid_details,
1938 label: "Vapid Details",
1941 "Web Push Notifications configuration. You can use the mix task mix web_push.gen.keypair to generate it.",
1947 "A mailto link for the administrative contact." <>
1948 " It's best if this email is not a personal email address, but rather a group email to the instance moderation team.",
1949 suggestions: ["mailto:moderators@pleroma.com"]
1954 description: "VAPID public key",
1955 suggestions: ["Public key"]
1960 description: "VAPID private key",
1961 suggestions: ["Private key"]
1967 key: Pleroma.Captcha,
1969 description: "Captcha-related settings",
1974 description: "Whether the captcha should be shown on registration"
1979 description: "The method/service to use for captcha",
1980 suggestions: [Pleroma.Captcha.Kocaptcha, Pleroma.Captcha.Native]
1983 key: :seconds_valid,
1985 description: "The time in seconds for which the captcha is valid",
1992 key: Pleroma.Captcha.Kocaptcha,
1995 "Kocaptcha is a very simple captcha service with a single API endpoint, the source code is" <>
1996 " here: https://github.com/koto-bank/kocaptcha. The default endpoint (https://captcha.kotobank.ch) is hosted by the developer.",
2001 description: "The kocaptcha endpoint to use",
2002 suggestions: ["https://captcha.kotobank.ch"]
2008 label: "Pleroma Admin Token",
2011 "Allows setting a token that can be used to authenticate requests with admin privileges without a normal user account token. Append the `admin_token` parameter to requests to utilize it. (Please reconsider using HTTP Basic Auth or OAuth-based authentication if possible)",
2016 description: "Admin token",
2018 "Please use a high entropy string or UUID"
2028 [Oban](https://github.com/sorentwo/oban) asynchronous job processor configuration.
2030 Note: if you are running PostgreSQL in [`silent_mode`](https://postgresqlco.nf/en/doc/param/silent_mode?version=9.1),
2031 it's advised to set [`log_destination`](https://postgresqlco.nf/en/doc/param/log_destination?version=9.1) to `syslog`,
2032 otherwise `postmaster.log` file may grow because of "you don't own a lock of type ShareLock" warnings
2033 (see https://github.com/sorentwo/oban/issues/52).
2038 type: {:dropdown, :atom},
2039 description: "Logs verbose mode",
2040 suggestions: [false, :error, :warn, :info, :debug]
2044 type: {:keyword, :integer},
2046 "Background jobs queues (keys: queues, values: max numbers of concurrent jobs)",
2048 activity_expiration: 10,
2049 attachments_cleanup: 5,
2051 federator_incoming: 50,
2052 federator_outgoing: 50,
2054 scheduled_activities: 10,
2060 key: :activity_expiration,
2062 description: "Activity expiration queue",
2066 key: :attachments_cleanup,
2068 description: "Attachment deletion queue",
2074 description: "Background queue",
2078 key: :federator_incoming,
2080 description: "Incoming federation queue",
2084 key: :federator_outgoing,
2086 description: "Outgoing federation queue",
2092 description: "Email sender queue, see Pleroma.Emails.Mailer",
2096 key: :scheduled_activities,
2098 description: "Scheduled activities queue, see Pleroma.ScheduledActivities",
2102 key: :transmogrifier,
2104 description: "Transmogrifier queue",
2110 description: "Web push notifications queue",
2117 type: {:list, :tuple},
2118 description: "Settings for cron background jobs",
2120 {"0 0 * * *", Pleroma.Workers.Cron.ClearOauthTokenWorker},
2121 {"0 * * * *", Pleroma.Workers.Cron.StatsWorker},
2122 {"* * * * *", Pleroma.Workers.Cron.PurgeExpiredActivitiesWorker},
2123 {"0 0 * * 0", Pleroma.Workers.Cron.DigestEmailsWorker},
2124 {"0 0 * * *", Pleroma.Workers.Cron.NewUsersDigestWorker}
2133 description: "Includes custom worker options not interpretable directly by `Oban`",
2137 type: {:keyword, :integer},
2138 description: "Max retry attempts for failed jobs, per `Oban` queue",
2140 federator_incoming: 5,
2141 federator_outgoing: 5
2148 key: Pleroma.Web.Metadata,
2150 description: "Metadata-related settings",
2154 type: {:list, :module},
2155 description: "List of metadata providers to enable",
2157 Pleroma.Web.Metadata.Providers.OpenGraph,
2158 Pleroma.Web.Metadata.Providers.TwitterCard,
2159 Pleroma.Web.Metadata.Providers.RelMe,
2160 Pleroma.Web.Metadata.Providers.Feed
2165 label: "Unfurl NSFW",
2167 description: "When enabled NSFW attachments will be shown in previews"
2176 "If enabled the instance will parse metadata from attached links to generate link previews",
2181 description: "Enables RichMedia parsing of URLs"
2185 type: {:list, :string},
2186 description: "List of hosts which will be ignored by the metadata parser",
2187 suggestions: ["accounts.google.com", "xss.website"]
2191 label: "Ignore TLD",
2192 type: {:list, :string},
2193 description: "List TLDs (top-level domains) which will ignore for parse metadata",
2194 suggestions: ["local", "localdomain", "lan"]
2198 type: {:list, :module},
2200 "List of Rich Media parsers. Module names are shortened (removed leading `Pleroma.Web.RichMedia.Parsers.` part), but on adding custom module you need to use full name.",
2202 Pleroma.Web.RichMedia.Parsers.OEmbed,
2203 Pleroma.Web.RichMedia.Parsers.TwitterCard
2208 label: "TTL setters",
2209 type: {:list, :module},
2211 "List of rich media TTL setters. Module names are shortened (removed leading `Pleroma.Web.RichMedia.Parser.` part), but on adding custom module you need to use full name.",
2213 Pleroma.Web.RichMedia.Parser.TTL.AwsSignedUrl
2220 key: Pleroma.Formatter,
2221 label: "Auto Linker",
2224 "Configuration for Pleroma's link formatter which parses mentions, hashtags, and URLs.",
2228 type: [:string, false],
2229 description: "Specify the class to be added to the generated link. Disable to clear.",
2230 suggestions: ["auto-linker", false]
2234 type: [:string, false],
2235 description: "Override the rel attribute. Disable to clear.",
2236 suggestions: ["ugc", "noopener noreferrer", false]
2241 description: "Link URLs will open in a new window/tab."
2245 type: [:integer, false],
2247 "Set to a number to truncate URLs longer than the number. Truncated URLs will end in `...`",
2248 suggestions: [15, false]
2253 description: "Strip the scheme prefix."
2258 description: "Link URLs with rarely used schemes (magnet, ipfs, irc, etc.)"
2262 type: [:atom, :boolean],
2264 "Set to false to disable TLD validation for URLs/emails. Can be set to :no_scheme to validate TLDs only for URLs without a scheme (e.g `example.com` will be validated, but `http://example.loki` won't)",
2265 suggestions: [:no_scheme, true]
2271 key: Pleroma.ScheduledActivity,
2273 description: "Scheduled activities settings",
2276 key: :daily_user_limit,
2279 "The number of scheduled activities a user is allowed to create in a single day. Default: 25.",
2283 key: :total_user_limit,
2286 "The number of scheduled activities a user is allowed to create in total. Default: 300.",
2292 description: "Whether scheduled activities are sent to the job queue to be executed"
2298 key: Pleroma.ActivityExpiration,
2300 description: "Expired activity settings",
2305 description: "Whether expired activities will be sent to the job queue to be deleted"
2311 label: "Pleroma Authenticator",
2313 description: "Authenticator",
2316 key: Pleroma.Web.Auth.Authenticator,
2318 suggestions: [Pleroma.Web.Auth.PleromaAuthenticator, Pleroma.Web.Auth.LDAPAuthenticator]
2328 "Use LDAP for user authentication. When a user logs in to the Pleroma instance, the name and password" <>
2329 " will be verified by trying to authenticate (bind) to a LDAP server." <>
2330 " If a user exists in the LDAP directory but there is no account with the same name yet on the" <>
2331 " Pleroma instance then a new Pleroma account will be created with the same name as the LDAP user name.",
2336 description: "Enables LDAP authentication"
2341 description: "LDAP server hostname",
2342 suggestions: ["localhosts"]
2347 description: "LDAP port, e.g. 389 or 636",
2348 suggestions: [389, 636]
2354 description: "Enable to use SSL, usually implies the port 636"
2358 label: "SSL options",
2360 description: "Additional SSL options",
2361 suggestions: [cacertfile: "path/to/file/with/PEM/cacerts", verify: :verify_peer],
2366 description: "Path to file with PEM encoded cacerts",
2367 suggestions: ["path/to/file/with/PEM/cacerts"]
2372 description: "Type of cert verification",
2373 suggestions: [:verify_peer]
2381 description: "Enable to use STARTTLS, usually implies the port 389"
2385 label: "TLS options",
2387 description: "Additional TLS options",
2388 suggestions: [cacertfile: "path/to/file/with/PEM/cacerts", verify: :verify_peer],
2393 description: "Path to file with PEM encoded cacerts",
2394 suggestions: ["path/to/file/with/PEM/cacerts"]
2399 description: "Type of cert verification",
2400 suggestions: [:verify_peer]
2407 description: "LDAP base, e.g. \"dc=example,dc=com\"",
2408 suggestions: ["dc=example,dc=com"]
2415 "LDAP attribute name to authenticate the user, e.g. when \"cn\", the filter will be \"cn=username,base\"",
2424 description: "Authentication / authorization settings",
2427 key: :enforce_oauth_admin_scope_usage,
2428 label: "Enforce OAuth admin scope usage",
2431 "OAuth admin scope requirement toggle. " <>
2432 "If enabled, admin actions explicitly demand admin OAuth scope(s) presence in OAuth token " <>
2433 "(client app must support admin scopes). If disabled and token doesn't have admin scope(s), " <>
2434 "`is_admin` user flag grants access to admin-specific actions."
2437 key: :auth_template,
2440 "Authentication form template. By default it's `show.html` which corresponds to `lib/pleroma/web/templates/o_auth/o_auth/show.html.ee`.",
2441 suggestions: ["show.html"]
2444 key: :oauth_consumer_template,
2445 label: "OAuth consumer template",
2448 "OAuth consumer mode authentication form template. By default it's `consumer.html` which corresponds to" <>
2449 " `lib/pleroma/web/templates/o_auth/o_auth/consumer.html.eex`.",
2450 suggestions: ["consumer.html"]
2453 key: :oauth_consumer_strategies,
2454 label: "OAuth consumer strategies",
2455 type: {:list, :string},
2457 "The list of enabled OAuth consumer strategies. By default it's set by OAUTH_CONSUMER_STRATEGIES environment variable." <>
2458 " Each entry in this space-delimited string should be of format \"strategy\" or \"strategy:dependency\"" <>
2459 " (e.g. twitter or keycloak:ueberauth_keycloak_strategy in case dependency is named differently than ueberauth_<strategy>).",
2460 suggestions: ["twitter", "keycloak:ueberauth_keycloak_strategy"]
2466 key: :email_notifications,
2468 description: "Email notifications settings",
2474 "emails of \"what you've missed\" for users who have been inactive for a while",
2478 schedule: "0 0 * * 0",
2480 inactivity_threshold: 7
2488 description: "Globally enable or disable digest emails"
2494 "When to send digest email, in crontab format. \"0 0 0\" is the default, meaning \"once a week at midnight on Sunday morning\".",
2495 suggestions: ["0 0 * * 0"]
2500 description: "Minimum interval between digest emails to one user",
2504 key: :inactivity_threshold,
2506 description: "Minimum user inactivity threshold",
2515 key: Pleroma.Emails.UserEmail,
2517 description: "Email template settings",
2522 description: "A path to a custom logo. Set it to `nil` to use the default Pleroma logo.",
2523 suggestions: ["some/path/logo.png"]
2528 description: "A map with color settings for email templates.",
2531 link_color: "#d8a070",
2532 background_color: "#2C3645",
2533 content_background_color: "#1B2635",
2534 header_color: "#d8a070",
2535 text_color: "#b9b9ba",
2536 text_muted_color: "#b9b9ba"
2543 suggestions: ["#d8a070"]
2546 key: :background_color,
2548 suggestions: ["#2C3645"]
2551 key: :content_background_color,
2553 suggestions: ["#1B2635"]
2558 suggestions: ["#d8a070"]
2563 suggestions: ["#b9b9ba"]
2566 key: :text_muted_color,
2568 suggestions: ["#b9b9ba"]
2576 key: Pleroma.Emails.NewUsersDigestEmail,
2578 description: "New users admin email digest",
2583 description: "Enables new users admin digest email when `true`"
2592 description: "Configure OAuth 2 provider capabilities",
2595 key: :token_expires_in,
2597 description: "The lifetime in seconds of the access token",
2601 key: :issue_new_refresh_token,
2604 "Keeps old refresh token or generate new refresh token when to obtain an access token"
2607 key: :clean_expired_tokens,
2609 description: "Enable a background job to clean expired OAuth tokens. Default: disabled."
2619 key: :shortcode_globs,
2620 type: {:list, :string},
2621 description: "Location of custom emoji files. * can be used as a wildcard.",
2622 suggestions: ["/emoji/custom/**/*.png"]
2625 key: :pack_extensions,
2626 type: {:list, :string},
2628 "A list of file extensions for emojis, when no emoji.txt for a pack is present",
2629 suggestions: [".png", ".gif"]
2633 type: {:keyword, {:list, :string}},
2635 "Emojis are ordered in groups (tags). This is an array of key-value pairs where the key is the group name" <>
2636 " and the value is the location or array of locations. * can be used as a wildcard.",
2638 Custom: ["/emoji/*.png", "/emoji/**/*.png"]
2642 key: :default_manifest,
2645 "Location of the JSON-manifest. This manifest contains information about the emoji-packs you can download." <>
2646 " Currently only one manifest can be added (no arrays).",
2647 suggestions: ["https://git.pleroma.social/pleroma/emoji-index/raw/master/index.json"]
2650 key: :shared_pack_cache_seconds_per_file,
2651 label: "Shared pack cache s/file",
2654 "When an emoji pack is shared, the archive is created and cached in memory" <>
2655 " for this amount of seconds multiplied by the number of files.",
2665 "Rate limit settings. This is an advanced feature enabled only for :authentication by default.",
2669 type: [:tuple, {:list, :tuple}],
2670 description: "For the search requests (account & status search etc.)",
2671 suggestions: [{1000, 10}, [{10_000, 10}, {10_000, 50}]]
2675 type: [:tuple, {:list, :tuple}],
2676 description: "For requests to timelines (each timeline has it's own limiter)",
2677 suggestions: [{1000, 10}, [{10_000, 10}, {10_000, 50}]]
2680 key: :app_account_creation,
2681 type: [:tuple, {:list, :tuple}],
2682 description: "For registering user accounts from the same IP address",
2683 suggestions: [{1000, 10}, [{10_000, 10}, {10_000, 50}]]
2686 key: :relations_actions,
2687 type: [:tuple, {:list, :tuple}],
2688 description: "For actions on relationships with all users (follow, unfollow)",
2689 suggestions: [{1000, 10}, [{10_000, 10}, {10_000, 50}]]
2692 key: :relation_id_action,
2693 label: "Relation ID action",
2694 type: [:tuple, {:list, :tuple}],
2695 description: "For actions on relation with a specific user (follow, unfollow)",
2696 suggestions: [{1000, 10}, [{10_000, 10}, {10_000, 50}]]
2699 key: :statuses_actions,
2700 type: [:tuple, {:list, :tuple}],
2702 "For create / delete / fav / unfav / reblog / unreblog actions on any statuses",
2703 suggestions: [{1000, 10}, [{10_000, 10}, {10_000, 50}]]
2706 key: :status_id_action,
2707 label: "Status ID action",
2708 type: [:tuple, {:list, :tuple}],
2710 "For fav / unfav or reblog / unreblog actions on the same status by the same user",
2711 suggestions: [{1000, 10}, [{10_000, 10}, {10_000, 50}]]
2714 key: :authentication,
2715 type: [:tuple, {:list, :tuple}],
2716 description: "For authentication create / password check / user existence check requests",
2717 suggestions: [{60_000, 15}]
2726 "Before enabling this you must add :esshd to mix.exs as one of the extra_applications " <>
2727 "and generate host keys in your priv dir with ssh-keygen -m PEM -N \"\" -b 2048 -t rsa -f ssh_host_rsa_key",
2732 description: "Enables SSH"
2737 description: "Dir with SSH keys",
2738 suggestions: ["/some/path/ssh_keys"]
2743 description: "Handler module",
2744 suggestions: ["Pleroma.BBS.Handler"]
2749 description: "Port to connect",
2750 suggestions: [10_022]
2753 key: :password_authenticator,
2755 description: "Authenticator module",
2756 suggestions: ["Pleroma.BBS.Authenticator"]
2762 label: "Mime Types",
2764 description: "Mime Types settings",
2771 "application/xml" => ["xml"],
2772 "application/xrd+xml" => ["xrd+xml"],
2773 "application/jrd+json" => ["jrd+json"],
2774 "application/activity+json" => ["activity+json"],
2775 "application/ld+json" => ["activity+json"]
2780 key: "application/xml",
2781 type: {:list, :string},
2782 suggestions: ["xml"]
2785 key: "application/xrd+xml",
2786 type: {:list, :string},
2787 suggestions: ["xrd+xml"]
2790 key: "application/jrd+json",
2791 type: {:list, :string},
2792 suggestions: ["jrd+json"]
2795 key: "application/activity+json",
2796 type: {:list, :string},
2797 suggestions: ["activity+json"]
2800 key: "application/ld+json",
2801 type: {:list, :string},
2802 suggestions: ["activity+json"]
2812 description: "Pleroma chat settings",
2825 description: "HTTP settings",
2830 type: [:string, :tuple],
2831 description: "Proxy URL",
2832 suggestions: ["localhost:9020", {:socks5, :localhost, 3090}]
2835 key: :send_user_agent,
2840 type: [:string, :atom],
2842 "What user agent to use. Must be a string or an atom `:default`. Default value is `:default`.",
2843 suggestions: ["Pleroma", :default]
2848 description: "Adapter specific options",
2854 label: "SSL Options",
2855 description: "SSL options for HTTP adapter",
2859 type: {:list, :atom},
2860 description: "List of TLS version to use",
2861 suggestions: [:tlsv1, ":tlsv1.1", ":tlsv1.2"]
2872 label: "Markup Settings",
2876 key: :allow_inline_images,
2880 key: :allow_headings,
2893 type: {:list, :module},
2895 "Module names are shortened (removed leading `Pleroma.HTML.` part), but on adding custom module you need to use full name.",
2896 suggestions: [Pleroma.HTML.Transform.MediaProxy, Pleroma.HTML.Scrubber.Default]
2906 key: :deny_follow_blocked,
2914 key: :mrf_normalize_markup,
2915 label: "MRF Normalize Markup",
2916 description: "MRF NormalizeMarkup settings. Scrub configured hypertext markup.",
2922 suggestions: [Pleroma.HTML.Scrubber.Default]
2932 key: :restricted_nicknames,
2933 type: {:list, :string},
2952 "ostatus_subscribe",
2971 label: "CORS plug config",
2977 suggestions: [86_400]
2981 type: {:list, :string},
2982 suggestions: ["POST", "PUT", "DELETE", "GET", "PATCH", "OPTIONS"]
2986 type: {:list, :string},
2989 "X-RateLimit-Reset",
2990 "X-RateLimit-Limit",
2991 "X-RateLimit-Remaining",
3002 type: {:list, :string},
3003 suggestions: ["Authorization", "Content-Type", "Idempotency-Key"]
3009 key: Pleroma.Plugs.RemoteIp,
3012 `Pleroma.Plugs.RemoteIp` is a shim to call [`RemoteIp`](https://git.pleroma.social/pleroma/remote_ip) but with runtime configuration.
3013 **If your instance is not behind at least one reverse proxy, you should not enable this plug.**
3019 description: "Enable/disable the plug. Default: disabled."
3023 type: {:list, :string},
3025 "A list of strings naming the `req_headers` to use when deriving the `remote_ip`. Order does not matter. Default: `~w[forwarded x-forwarded-for x-client-ip x-real-ip]`."
3029 type: {:list, :string},
3031 "A list of strings in [CIDR](https://en.wikipedia.org/wiki/CIDR) notation specifying the IPs of known proxies. Default: `[]`."
3035 type: {:list, :string},
3037 "Defaults to [localhost](https://en.wikipedia.org/wiki/Localhost) and [private network](https://en.wikipedia.org/wiki/Private_network)."
3043 key: :web_cache_ttl,
3044 label: "Web cache TTL",
3047 "The expiration time for the web responses cache. Values should be in milliseconds or `nil` to disable expiration.",
3053 "Activity pub routes (except question activities). Default: `nil` (no expiration).",
3054 suggestions: [30_000, nil]
3057 key: :activity_pub_question,
3059 description: "Activity pub routes (question activities). Default: `30_000` (30 seconds).",
3060 suggestions: [30_000]
3070 "Render profiles and posts using server-generated HTML that is viewable without using JavaScript",
3075 description: "Enables the rendering of static HTML. Default: disabled."
3083 description: "Configure feed rendering",
3088 description: "Configure title rendering",
3093 description: "Maximum number of characters before truncating title",
3099 description: "Replacement which will be used after truncating string",
3100 suggestions: ["..."]
3108 key: :mrf_object_age,
3109 label: "MRF Object Age",
3113 "Rejects or delists posts based on their timestamp deviance from your server's clock.",
3118 description: "Required age (in seconds) of a post before actions are taken.",
3119 suggestions: [172_800]
3123 type: {:list, :atom},
3125 "A list of actions to apply to the post. `:delist` removes the post from public timelines; " <>
3126 "`:strip_followers` removes followers from the ActivityPub recipient list ensuring they won't be delivered to home timelines; " <>
3127 "`:reject` rejects the message entirely",
3128 suggestions: [:delist, :strip_followers, :reject]
3136 description: "Custom Runtime Modules",
3141 description: "A path to custom Elixir modules (such as MRF policies)."
3149 description: "Settings for notifications streamer",
3154 description: "Number of workers to send notifications",
3158 key: :overflow_workers,
3160 description: "Maximum number of workers created if pool is empty",
3167 key: :connections_pool,
3169 description: "Advanced settings for `gun` connections pool",
3172 key: :connection_acquisition_wait,
3175 "Timeout to acquire a connection from pool.The total max time is this value multiplied by the number of retries. Default: 250ms.",
3179 key: :connection_acquisition_retries,
3182 "Number of attempts to acquire the connection from the pool if it is overloaded. Default: 5",
3186 key: :max_connections,
3188 description: "Maximum number of connections in the pool. Default: 250 connections.",
3192 key: :await_up_timeout,
3194 description: "Timeout while `gun` will wait until connection is up. Default: 5000ms.",
3198 key: :reclaim_multiplier,
3201 "Multiplier for the number of idle connection to be reclaimed if the pool is full. For example if the pool maxes out at 250 connections and this setting is set to 0.3, the pool will reclaim at most 75 idle connections if it's overloaded. Default: 0.1",
3210 description: "Advanced settings for `gun` workers pools",
3212 Enum.map([:federation, :media, :upload, :default], fn pool_name ->
3216 description: "Settings for #{pool_name} pool.",
3221 description: "Maximum number of concurrent requests in the pool.",
3228 "Maximum number of requests waiting for other requests to finish. After this number is reached, the pool will start returning errrors when a new request is made",
3237 key: :hackney_pools,
3239 description: "Advanced settings for `hackney` connections pools",
3244 description: "Settings for federation pool.",
3247 key: :max_connections,
3249 description: "Number workers in the pool.",
3255 description: "Timeout while `hackney` will wait for response.",
3256 suggestions: [150_000]
3263 description: "Settings for media pool.",
3266 key: :max_connections,
3268 description: "Number workers in the pool.",
3274 description: "Timeout while `hackney` will wait for response.",
3275 suggestions: [150_000]
3282 description: "Settings for upload pool.",
3285 key: :max_connections,
3287 description: "Number workers in the pool.",
3293 description: "Timeout while `hackney` will wait for response.",
3294 suggestions: [300_000]
3302 key: :restrict_unauthenticated,
3305 "Disallow viewing timelines, user profiles and statuses for unauthenticated users.",
3310 description: "Settings for public and federated timelines.",
3315 description: "Disallow view public timeline."
3320 description: "Disallow view federated timeline."
3327 description: "Settings for user profiles.",
3332 description: "Disallow view local user profiles."
3337 description: "Disallow view remote user profiles."
3344 description: "Settings for statuses.",
3349 description: "Disallow view local statuses."
3354 description: "Disallow view remote statuses."
3362 key: Pleroma.Web.ApiSpec.CastAndValidate,
3369 "Enables strict input validation (useful in development, not recommended in production)"
3375 key: :instances_favicons,
3377 description: "Control favicons for instances",
3382 description: "Allow/disallow displaying and getting instances favicons"
3390 descriptions: "S3 service related settings",
3393 key: :access_key_id,
3395 description: "S3 access key ID",
3396 suggestions: ["AKIAQ8UKHTGIYN7DMWWJ"]
3399 key: :secret_access_key,
3401 description: "Secret access key",
3402 suggestions: ["JFGt+fgH1UQ7vLUQjpW+WvjTdV/UNzVxcwn7DkaeFKtBS5LvoXvIiME4NQBsT6ZZ"]
3407 description: "S3 host",
3408 suggestions: ["s3.eu-central-1.amazonaws.com"]