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"
665 key: :account_approval_required,
667 description: "Require users to be manually approved by an admin before signing in"
672 description: "Enable federation with other instances"
675 key: :federation_incoming_replies_max_depth,
676 label: "Fed. incoming replies max depth",
679 "Max. depth of reply-to and reply activities fetching on incoming federation, to prevent out-of-memory situations while" <>
680 " 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.",
686 key: :federation_reachability_timeout_days,
687 label: "Fed. reachability timeout days",
690 "Timeout (in days) of each external federation target being unreachable prior to pausing federating to it",
698 description: "Enable Pleroma's Relay, which makes it possible to follow a whole instance"
704 "Makes the client API in authenticated mode-only except for user-profiles." <>
705 " Useful for disabling the Local Timeline and The Whole Known Network. " <>
706 " Note: when setting to `false`, please also check `:restrict_unauthenticated` setting."
709 key: :quarantined_instances,
710 type: {:list, :string},
712 "List of ActivityPub instances where private (DMs, followers-only) activities will not be sent",
719 key: :managed_config,
722 "Whenether the config for pleroma-fe is configured in this config or in static/config.json"
727 description: "Instance static directory",
733 key: :allowed_post_formats,
734 type: {:list, :string},
735 description: "MIME-type list of formats allowed to be posted (transformed into HTML)",
744 key: :extended_nickname_format,
747 "Enable to use extended local nicknames format (allows underscores/dashes)." <>
748 " This will break federation with older software for theses nicknames."
751 key: :cleanup_attachments,
754 Enable to remove associated attachments when status is removed.
755 This will not affect duplicates and attachments without status.
756 Enabling this will increase load to database when deleting statuses on larger instances.
760 key: :max_pinned_statuses,
762 description: "The maximum number of pinned statuses. 0 will disable the feature.",
770 key: :autofollowed_nicknames,
771 type: {:list, :string},
773 "Set to nicknames of (local) users that every new user should automatically follow",
782 key: :attachment_links,
784 description: "Enable to automatically add attachment link text to statuses"
787 key: :max_report_comment_size,
789 description: "The maximum size of the report comment. Default: 1000.",
795 key: :safe_dm_mentions,
796 label: "Safe DM mentions",
799 "If enabled, only mentions at the beginning of a post will be used to address people in direct messages." <>
800 " This is to prevent accidental mentioning of people when talking about them (e.g. \"@admin please keep an eye on @bad_actor\")." <>
806 description: "If enabled, system data will be shown on `/api/pleroma/healthcheck`"
809 key: :remote_post_retention_days,
812 "The default amount of days to retain remote posts when pruning the database",
818 key: :user_bio_length,
820 description: "A user bio maximum length. Default: 5000.",
826 key: :user_name_length,
828 description: "A user name maximum length. Default: 100.",
834 key: :skip_thread_containment,
836 description: "Skip filtering out broken threads. Default: enabled."
839 key: :limit_to_local_content,
840 type: {:dropdown, :atom},
842 "Limit unauthenticated users to search for local statutes and users only. Default: `:unauthenticated`.",
850 key: :max_account_fields,
852 description: "The maximum number of custom fields in the user profile. Default: 10.",
858 key: :max_remote_account_fields,
861 "The maximum number of custom fields in the remote user profile. Default: 20.",
867 key: :account_field_name_length,
869 description: "An account field name maximum length. Default: 512.",
875 key: :account_field_value_length,
877 description: "An account field value maximum length. Default: 2048.",
883 key: :external_user_synchronization,
885 description: "Enabling following/followers counters synchronization for external users"
888 key: :multi_factor_authentication,
890 description: "Multi-factor authentication settings",
893 totp: [digits: 6, period: 30],
894 backup_codes: [number: 5, length: 16]
900 label: "TOTP settings",
902 description: "TOTP settings",
903 suggestions: [digits: 6, period: 30],
910 "Determines the length of a one-time pass-code, in characters. Defaults to 6 characters."
917 "A period for which the TOTP code will be valid, in seconds. Defaults to 30 seconds."
924 description: "MFA backup codes settings",
925 suggestions: [number: 5, length: 16],
931 description: "Number of backup codes to generate."
938 "Determines the length of backup one-time pass-codes, in characters. Defaults to 16 characters."
945 key: :instance_thumbnail,
948 "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.",
949 suggestions: ["/instance/thumbnail.jpeg"]
956 description: "Welcome messages settings",
959 group: :direct_message,
961 descpiption: "Direct message settings",
966 description: "Enables sends direct message for new user after registration"
972 "A message that will be sent to a newly registered users as a direct message",
974 "Hi, @username! Welcome on board!"
978 key: :sender_nickname,
980 description: "The nickname of the local user that sends the welcome message",
990 descpiption: "Email message settings",
995 description: "Enables sends direct message for new user after registration"
999 type: [:string, :tuple],
1001 "The email address or tuple with `{nickname, email}` that will use as sender to the welcome email.",
1003 {"Pleroma App", "welcome@pleroma.app"}
1010 "The subject of welcome email. Can be use EEX template with `user` and `instance_name` variables.",
1011 suggestions: ["Welcome to <%= instance_name%>"]
1017 "The html content of welcome email. Can be use EEX template with `user` and `instance_name` variables.",
1018 suggestions: ["<h1>Hello <%= user.name%>. Welcome to <%= instance_name%></h1>"]
1024 "The text content of welcome email. Can be use EEX template with `user` and `instance_name` variables.",
1025 suggestions: ["Hello <%= user.name%>. \n Welcome to <%= instance_name%>\n"]
1034 description: "Logger-related settings",
1038 type: [:atom, :tuple, :module],
1040 "Where logs will be sent, :console - send logs to stdout, { ExSyslogger, :ex_syslogger } - to syslog, Quack.Logger - to Slack.",
1041 suggestions: [:console, {ExSyslogger, :ex_syslogger}, Quack.Logger]
1049 label: "ExSyslogger",
1050 description: "ExSyslogger-related settings",
1054 type: {:dropdown, :atom},
1055 description: "Log level",
1056 suggestions: [:debug, :info, :warn, :error]
1062 "A string that's prepended to every message, and is typically set to the app name",
1063 suggestions: ["pleroma"]
1068 description: "Default: \"$date $time [$level] $levelpad$node $metadata $message\"",
1069 suggestions: ["$metadata[$level] $message"]
1073 type: {:list, :atom},
1074 suggestions: [:request_id]
1082 label: "Console Logger",
1083 description: "Console logger settings",
1087 type: {:dropdown, :atom},
1088 description: "Log level",
1089 suggestions: [:debug, :info, :warn, :error]
1094 description: "Default: \"$date $time [$level] $levelpad$node $metadata $message\"",
1095 suggestions: ["$metadata[$level] $message"]
1099 type: {:list, :atom},
1100 suggestions: [:request_id]
1107 label: "Quack Logger",
1108 description: "Quack-related settings",
1112 type: {:dropdown, :atom},
1113 description: "Log level",
1114 suggestions: [:debug, :info, :warn, :error]
1118 type: {:list, :atom},
1119 description: "Configure which metadata you want to report on",
1136 label: "Webhook URL",
1138 description: "Configure the Slack incoming webhook",
1139 suggestions: ["https://hooks.slack.com/services/YOUR-KEY-HERE"]
1145 key: :frontend_configurations,
1148 "This form can be used to configure a keyword list that keeps the configuration data for any " <>
1149 "kind of frontend. By default, settings for pleroma_fe and masto_fe are configured. If you want to " <>
1150 "add your own configuration your settings all fields must be complete.",
1154 label: "Pleroma FE",
1156 description: "Settings for Pleroma FE",
1159 alwaysShowSubjectInput: true,
1160 background: "/static/aurora_borealis.jpg",
1161 collapseMessageWithSubject: false,
1164 hideFilteredStatuses: false,
1165 hideMutedPosts: false,
1166 hidePostStats: false,
1167 hideSitename: false,
1168 hideUserStats: false,
1169 loginMethod: "password",
1170 logo: "/static/logo.png",
1173 minimalScopesMode: false,
1174 noAttachmentLinks: false,
1175 nsfwCensorImage: "/static/img/nsfw.74818f9.png",
1176 postContentType: "text/plain",
1177 redirectRootLogin: "/main/friends",
1178 redirectRootNoLogin: "/main/all",
1180 sidebarRight: false,
1181 showFeaturesPanel: true,
1182 showInstanceSpecificPanel: false,
1183 subjectLineBehavior: "email",
1184 theme: "pleroma-dark",
1185 webPushNotifications: false
1190 key: :alwaysShowSubjectInput,
1191 label: "Always show subject input",
1193 description: "When disabled, auto-hide the subject field if it's empty"
1199 "URL of the background, unless viewing a user profile with a background that is set",
1200 suggestions: ["/images/city.jpg"]
1203 key: :collapseMessageWithSubject,
1204 label: "Collapse message with subject",
1207 "When a message has a subject (aka Content Warning), collapse it by default"
1211 label: "PleromaFE Chat",
1213 description: "Disables PleromaFE Chat component"
1219 description: "Enables green text on lines prefixed with the > character"
1222 key: :hideFilteredStatuses,
1223 label: "Hide Filtered Statuses",
1225 description: "Hides filtered statuses from timelines"
1228 key: :hideMutedPosts,
1229 label: "Hide Muted Posts",
1231 description: "Hides muted statuses from timelines"
1234 key: :hidePostStats,
1235 label: "Hide post stats",
1237 description: "Hide notices statistics (repeats, favorites, ...)"
1241 label: "Hide Sitename",
1243 description: "Hides instance name from PleromaFE banner"
1246 key: :hideUserStats,
1247 label: "Hide user stats",
1250 "Hide profile statistics (posts, posts per day, followers, followings, ...)"
1255 description: "URL of the logo, defaults to Pleroma's logo",
1256 suggestions: ["/static/logo.png"]
1260 label: "Logo margin",
1263 "Allows you to adjust vertical margins between logo boundary and navbar borders. " <>
1264 "The idea is that to have logo's image without any extra margins and instead adjust them to your need in layout.",
1265 suggestions: [".1em"]
1272 "By default it assumes logo used will be monochrome with alpha channel to be compatible with both light and dark themes. " <>
1273 "If you want a colorful logo you must disable logoMask."
1276 key: :minimalScopesMode,
1277 label: "Minimal scopes mode",
1280 "Limit scope selection to Direct, User default, and Scope of post replying to. " <>
1281 "Also prevents replying to a DM with a public post from PleromaFE."
1284 key: :nsfwCensorImage,
1285 label: "NSFW Censor Image",
1288 "URL of the image to use for hiding NSFW media attachments in the timeline",
1289 suggestions: ["/static/img/nsfw.74818f9.png"]
1292 key: :postContentType,
1293 label: "Post Content Type",
1294 type: {:dropdown, :atom},
1295 description: "Default post formatting option",
1296 suggestions: ["text/plain", "text/html", "text/markdown", "text/bbcode"]
1299 key: :redirectRootNoLogin,
1300 label: "Redirect root no login",
1303 "Relative URL which indicates where to redirect when a user isn't logged in",
1304 suggestions: ["/main/all"]
1307 key: :redirectRootLogin,
1308 label: "Redirect root login",
1311 "Relative URL which indicates where to redirect when a user is logged in",
1312 suggestions: ["/main/friends"]
1316 label: "Scope copy",
1318 description: "Copy the scope (private/unlisted/public) in replies to posts by default"
1322 label: "Sidebar on Right",
1324 description: "Change alignment of sidebar and panels to the right"
1327 key: :showFeaturesPanel,
1328 label: "Show instance features panel",
1331 "Enables panel displaying functionality of the instance on the About page"
1334 key: :showInstanceSpecificPanel,
1335 label: "Show instance specific panel",
1337 description: "Whether to show the instance's custom panel"
1340 key: :subjectLineBehavior,
1341 label: "Subject line behavior",
1343 description: "Allows changing the default behaviour of subject lines in replies.
1344 `email`: copy and preprend re:, as in email,
1345 `masto`: copy verbatim, as in Mastodon,
1346 `noop`: don't copy the subject.",
1347 suggestions: ["email", "masto", "noop"]
1352 description: "Which theme to use. Available themes are defined in styles.json",
1353 suggestions: ["pleroma-dark"]
1361 description: "Settings for Masto FE",
1364 showInstanceSpecificPanel: true
1369 key: :showInstanceSpecificPanel,
1370 label: "Show instance specific panel",
1372 description: "Whenether to show the instance's specific panel"
1383 "This section configures assets to be used with various frontends. Currently the only option relates to mascots on the mastodon frontend",
1387 type: {:keyword, :map},
1389 "Keyword of mascots, each element must contain both an URL and a mime_type key",
1392 url: "/images/pleroma-fox-tan-smol.png",
1393 mime_type: "image/png"
1395 pleroma_fox_tan_shy: %{
1396 url: "/images/pleroma-fox-tan-shy.png",
1397 mime_type: "image/png"
1402 key: :default_mascot,
1405 "This will be used as the default mascot on MastoFE. Default: `:pleroma_fox_tan`",
1411 key: :default_user_avatar,
1413 description: "URL of the default user avatar",
1414 suggestions: ["/images/avi.png"]
1423 "This section describe PWA manifest instance-specific values. Currently this option relate only for MastoFE.",
1427 type: {:list, :map},
1428 description: "Describe the icons of the app",
1431 src: "/static/logo.png"
1434 src: "/static/icon.png",
1438 src: "/static/icon.ico",
1439 sizes: "72x72 96x96 128x128 256x256"
1446 description: "Describe the theme color of the app",
1447 suggestions: ["#282c37", "mediumpurple"]
1450 key: :background_color,
1452 description: "Describe the background color of the app",
1453 suggestions: ["#191b22", "aliceblue"]
1463 description: "General MRF settings",
1467 type: [:module, {:list, :module}],
1469 "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.",
1470 suggestions: {:list_behaviour_implementations, Pleroma.Web.ActivityPub.MRF}
1474 label: "MRF transparency",
1477 "Make the content of your Message Rewrite Facility settings public (via nodeinfo)"
1480 key: :transparency_exclusions,
1481 label: "MRF transparency exclusions",
1482 type: {:list, :string},
1484 "Exclude specific instance names from MRF transparency. The use of the exclusions feature will be disclosed in nodeinfo as a boolean value.",
1495 related_policy: "Pleroma.Web.ActivityPub.MRF.SimplePolicy",
1496 label: "MRF Simple",
1498 description: "Simple ingress policies",
1501 key: :media_removal,
1502 type: {:list, :string},
1503 description: "List of instances to strip media attachments from",
1504 suggestions: ["example.com", "*.example.com"]
1508 label: "Media NSFW",
1509 type: {:list, :string},
1510 description: "List of instances to tag all media as NSFW (sensitive) from",
1511 suggestions: ["example.com", "*.example.com"]
1514 key: :federated_timeline_removal,
1515 type: {:list, :string},
1517 "List of instances to remove from the Federated (aka The Whole Known Network) Timeline",
1518 suggestions: ["example.com", "*.example.com"]
1522 type: {:list, :string},
1523 description: "List of instances to reject activities from (except deletes)",
1524 suggestions: ["example.com", "*.example.com"]
1528 type: {:list, :string},
1529 description: "List of instances to only accept activities from (except deletes)",
1530 suggestions: ["example.com", "*.example.com"]
1533 key: :report_removal,
1534 type: {:list, :string},
1535 description: "List of instances to reject reports from",
1536 suggestions: ["example.com", "*.example.com"]
1539 key: :avatar_removal,
1540 type: {:list, :string},
1541 description: "List of instances to strip avatars from",
1542 suggestions: ["example.com", "*.example.com"]
1545 key: :banner_removal,
1546 type: {:list, :string},
1547 description: "List of instances to strip banners from",
1548 suggestions: ["example.com", "*.example.com"]
1551 key: :reject_deletes,
1552 type: {:list, :string},
1553 description: "List of instances to reject deletions from",
1554 suggestions: ["example.com", "*.example.com"]
1560 key: :mrf_activity_expiration,
1562 related_policy: "Pleroma.Web.ActivityPub.MRF.ActivityExpirationPolicy",
1563 label: "MRF Activity Expiration Policy",
1565 description: "Adds automatic expiration to all local activities",
1570 description: "Default global expiration time for all local activities (in days)",
1571 suggestions: [90, 365]
1579 related_policy: "Pleroma.Web.ActivityPub.MRF.SubchainPolicy",
1580 label: "MRF Subchain",
1583 "This policy processes messages through an alternate pipeline when a given message matches certain criteria." <>
1584 " All criteria are configured as a map of regular expressions to lists of policy modules.",
1588 type: {:map, {:list, :string}},
1589 description: "Matches a series of regular expressions against the actor field",
1592 ~r/https:\/\/example.com/s => [Pleroma.Web.ActivityPub.MRF.DropPolicy]
1600 key: :mrf_rejectnonpublic,
1602 related_policy: "Pleroma.Web.ActivityPub.MRF.RejectNonPublic",
1603 description: "RejectNonPublic drops posts with non-public visibility settings.",
1604 label: "MRF Reject Non Public",
1608 key: :allow_followersonly,
1609 label: "Allow followers-only",
1611 description: "Whether to allow followers-only posts"
1616 description: "Whether to allow direct messages"
1622 key: :mrf_hellthread,
1624 related_policy: "Pleroma.Web.ActivityPub.MRF.HellthreadPolicy",
1625 label: "MRF Hellthread",
1627 description: "Block messages with excessive user mentions",
1630 key: :delist_threshold,
1633 "Number of mentioned users after which the message gets removed from timelines and" <>
1634 "disables notifications. Set to 0 to disable.",
1638 key: :reject_threshold,
1641 "Number of mentioned users after which the messaged gets rejected. Set to 0 to disable.",
1650 related_policy: "Pleroma.Web.ActivityPub.MRF.KeywordPolicy",
1651 label: "MRF Keyword",
1653 description: "Reject or Word-Replace messages with a keyword or regex",
1657 type: {:list, :string},
1659 "A list of patterns which result in message being rejected. Each pattern can be a string or a regular expression.",
1660 suggestions: ["foo", ~r/foo/iu]
1663 key: :federated_timeline_removal,
1664 type: {:list, :string},
1666 "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.",
1667 suggestions: ["foo", ~r/foo/iu]
1671 type: {:list, :tuple},
1673 "A list of tuples containing {pattern, replacement}. Each pattern can be a string or a regular expression.",
1674 suggestions: [{"foo", "bar"}, {~r/foo/iu, "bar"}]
1682 related_policy: "Pleroma.Web.ActivityPub.MRF.MentionPolicy",
1683 label: "MRF Mention",
1685 description: "Block messages which mention a specific user",
1689 type: {:list, :string},
1690 description: "A list of actors for which any post mentioning them will be dropped",
1691 suggestions: ["actor1", "actor2"]
1697 key: :mrf_vocabulary,
1699 related_policy: "Pleroma.Web.ActivityPub.MRF.VocabularyPolicy",
1700 label: "MRF Vocabulary",
1702 description: "Filter messages which belong to certain activity vocabularies",
1706 type: {:list, :string},
1708 "A list of ActivityStreams terms to accept. If empty, all supported messages are accepted.",
1709 suggestions: ["Create", "Follow", "Mention", "Announce", "Like"]
1713 type: {:list, :string},
1715 "A list of ActivityStreams terms to reject. If empty, no messages are rejected.",
1716 suggestions: ["Create", "Follow", "Mention", "Announce", "Like"]
1722 # key: :mrf_user_allowlist,
1724 # related_policy: "Pleroma.Web.ActivityPub.MRF.UserAllowListPolicy",
1727 # "The keys in this section are the domain names that the policy should apply to." <>
1728 # " Each key should be assigned a list of users that should be allowed through by their ActivityPub ID",
1730 # %{"example.org" => ["https://example.org/users/admin"]}
1738 description: "Media proxy",
1743 description: "Enables proxying of remote media to the instance's proxy"
1750 "The base URL to access a user-uploaded file. Useful when you want to proxy the media files via another host/CDN fronts.",
1751 suggestions: ["https://example.com"]
1759 provider: Pleroma.Web.MediaProxy.Invalidation.Script
1765 description: "Enables invalidate media cache"
1770 description: "Module which will be used to cache purge.",
1772 Pleroma.Web.MediaProxy.Invalidation.Script,
1773 Pleroma.Web.MediaProxy.Invalidation.Http
1780 label: "Proxy Options",
1782 description: "Options for Pleroma.ReverseProxy",
1784 redirect_on_failure: false,
1785 max_body_length: 25 * 1_048_576,
1787 follow_redirect: true,
1793 key: :redirect_on_failure,
1796 "Redirects the client to the real remote URL if there's any HTTP errors. " <>
1797 "Any error during body processing will not be redirected as the response is chunked."
1800 key: :max_body_length,
1803 "Limits the content length to be approximately the " <>
1804 "specified length. It is validated with the `content-length` header and also verified when proxying."
1810 description: "HTTP options",
1815 description: "Adapter specific options",
1820 label: "SSL Options",
1821 description: "SSL options for HTTP adapter",
1825 type: {:list, :atom},
1826 description: "List of TLS version to use",
1827 suggestions: [:tlsv1, ":tlsv1.1", ":tlsv1.2"]
1836 type: [:string, :tuple],
1837 description: "Proxy URL",
1838 suggestions: ["127.0.0.1:8123", {:socks5, :localhost, 9050}]
1846 type: {:list, :string},
1847 description: "List of hosts with scheme to bypass the mediaproxy",
1848 suggestions: ["http://example.com"]
1854 key: Pleroma.Web.MediaProxy.Invalidation.Http,
1856 description: "HTTP invalidate settings",
1861 description: "HTTP method of request. Default: :purge"
1865 type: {:keyword, :string},
1866 description: "HTTP headers of request",
1867 suggestions: [{"x-refresh", 1}]
1872 description: "Request options",
1876 type: {:map, :string}
1884 key: Pleroma.Web.MediaProxy.Invalidation.Script,
1886 description: "Script invalidate settings",
1891 description: "Path to shell script. Which will run purge cache.",
1892 suggestions: ["./installation/nginx-cache-purge.sh.example"]
1900 description: "Gopher settings",
1905 description: "Enables the gopher interface"
1911 description: "IP address to bind to",
1912 suggestions: [{0, 0, 0, 0}]
1917 description: "Port to bind to",
1923 description: "Port advertised in URLs (optional, defaults to port)",
1931 label: "ActivityPub",
1933 description: "ActivityPub-related settings",
1936 key: :unfollow_blocked,
1938 description: "Whether blocks result in people getting unfollowed"
1941 key: :outgoing_blocks,
1943 description: "Whether to federate blocks to other instances"
1946 key: :sign_object_fetches,
1948 description: "Sign object fetches with HTTP signatures"
1951 key: :note_replies_output_limit,
1954 "The number of Note replies' URIs to be included with outgoing federation (`5` to match Mastodon hardcoded value, `0` to disable the output)"
1957 key: :follow_handshake_timeout,
1959 description: "Following handshake timeout",
1966 key: :http_security,
1967 label: "HTTP security",
1969 description: "HTTP security settings",
1974 description: "Whether the managed content security policy is enabled"
1980 description: "Whether to additionally send a Strict-Transport-Security header"
1984 label: "STS max age",
1986 description: "The maximum age for the Strict-Transport-Security header if sent",
1987 suggestions: [31_536_000]
1991 label: "CT max age",
1993 description: "The maximum age for the Expect-CT header if sent",
1994 suggestions: [2_592_000]
1997 key: :referrer_policy,
1999 description: "The referrer policy to use, either \"same-origin\" or \"no-referrer\"",
2000 suggestions: ["same-origin", "no-referrer"]
2004 label: "Report URI",
2006 description: "Adds the specified URL to report-uri and report-to group in CSP header",
2007 suggestions: ["https://example.com/report-uri"]
2012 group: :web_push_encryption,
2013 key: :vapid_details,
2014 label: "Vapid Details",
2017 "Web Push Notifications configuration. You can use the mix task mix web_push.gen.keypair to generate it.",
2023 "A mailto link for the administrative contact." <>
2024 " It's best if this email is not a personal email address, but rather a group email to the instance moderation team.",
2025 suggestions: ["mailto:moderators@pleroma.com"]
2030 description: "VAPID public key",
2031 suggestions: ["Public key"]
2036 description: "VAPID private key",
2037 suggestions: ["Private key"]
2043 key: Pleroma.Captcha,
2045 description: "Captcha-related settings",
2050 description: "Whether the captcha should be shown on registration"
2055 description: "The method/service to use for captcha",
2056 suggestions: [Pleroma.Captcha.Kocaptcha, Pleroma.Captcha.Native]
2059 key: :seconds_valid,
2061 description: "The time in seconds for which the captcha is valid",
2068 key: Pleroma.Captcha.Kocaptcha,
2071 "Kocaptcha is a very simple captcha service with a single API endpoint, the source code is" <>
2072 " here: https://github.com/koto-bank/kocaptcha. The default endpoint (https://captcha.kotobank.ch) is hosted by the developer.",
2077 description: "The kocaptcha endpoint to use",
2078 suggestions: ["https://captcha.kotobank.ch"]
2084 label: "Pleroma Admin Token",
2087 "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)",
2092 description: "Admin token",
2094 "Please use a high entropy string or UUID"
2104 [Oban](https://github.com/sorentwo/oban) asynchronous job processor configuration.
2106 Note: if you are running PostgreSQL in [`silent_mode`](https://postgresqlco.nf/en/doc/param/silent_mode?version=9.1),
2107 it's advised to set [`log_destination`](https://postgresqlco.nf/en/doc/param/log_destination?version=9.1) to `syslog`,
2108 otherwise `postmaster.log` file may grow because of "you don't own a lock of type ShareLock" warnings
2109 (see https://github.com/sorentwo/oban/issues/52).
2114 type: {:dropdown, :atom},
2115 description: "Logs verbose mode",
2116 suggestions: [false, :error, :warn, :info, :debug]
2120 type: {:keyword, :integer},
2122 "Background jobs queues (keys: queues, values: max numbers of concurrent jobs)",
2124 activity_expiration: 10,
2125 attachments_cleanup: 5,
2127 federator_incoming: 50,
2128 federator_outgoing: 50,
2130 scheduled_activities: 10,
2136 key: :activity_expiration,
2138 description: "Activity expiration queue",
2142 key: :attachments_cleanup,
2144 description: "Attachment deletion queue",
2150 description: "Background queue",
2154 key: :federator_incoming,
2156 description: "Incoming federation queue",
2160 key: :federator_outgoing,
2162 description: "Outgoing federation queue",
2168 description: "Email sender queue, see Pleroma.Emails.Mailer",
2172 key: :scheduled_activities,
2174 description: "Scheduled activities queue, see Pleroma.ScheduledActivities",
2178 key: :transmogrifier,
2180 description: "Transmogrifier queue",
2186 description: "Web push notifications queue",
2193 type: {:list, :tuple},
2194 description: "Settings for cron background jobs",
2196 {"0 0 * * *", Pleroma.Workers.Cron.ClearOauthTokenWorker},
2197 {"0 * * * *", Pleroma.Workers.Cron.StatsWorker},
2198 {"* * * * *", Pleroma.Workers.Cron.PurgeExpiredActivitiesWorker},
2199 {"0 0 * * 0", Pleroma.Workers.Cron.DigestEmailsWorker},
2200 {"0 0 * * *", Pleroma.Workers.Cron.NewUsersDigestWorker}
2209 description: "Includes custom worker options not interpretable directly by `Oban`",
2213 type: {:keyword, :integer},
2214 description: "Max retry attempts for failed jobs, per `Oban` queue",
2216 federator_incoming: 5,
2217 federator_outgoing: 5
2224 key: Pleroma.Web.Metadata,
2226 description: "Metadata-related settings",
2230 type: {:list, :module},
2231 description: "List of metadata providers to enable",
2233 Pleroma.Web.Metadata.Providers.OpenGraph,
2234 Pleroma.Web.Metadata.Providers.TwitterCard,
2235 Pleroma.Web.Metadata.Providers.RelMe,
2236 Pleroma.Web.Metadata.Providers.Feed
2241 label: "Unfurl NSFW",
2243 description: "When enabled NSFW attachments will be shown in previews"
2252 "If enabled the instance will parse metadata from attached links to generate link previews",
2257 description: "Enables RichMedia parsing of URLs"
2261 type: {:list, :string},
2262 description: "List of hosts which will be ignored by the metadata parser",
2263 suggestions: ["accounts.google.com", "xss.website"]
2267 label: "Ignore TLD",
2268 type: {:list, :string},
2269 description: "List TLDs (top-level domains) which will ignore for parse metadata",
2270 suggestions: ["local", "localdomain", "lan"]
2274 type: {:list, :module},
2276 "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.",
2278 Pleroma.Web.RichMedia.Parsers.OEmbed,
2279 Pleroma.Web.RichMedia.Parsers.TwitterCard
2284 label: "TTL setters",
2285 type: {:list, :module},
2287 "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.",
2289 Pleroma.Web.RichMedia.Parser.TTL.AwsSignedUrl
2296 key: Pleroma.Formatter,
2297 label: "Auto Linker",
2300 "Configuration for Pleroma's link formatter which parses mentions, hashtags, and URLs.",
2304 type: [:string, :boolean],
2305 description: "Specify the class to be added to the generated link. Disable to clear.",
2306 suggestions: ["auto-linker", false]
2310 type: [:string, :boolean],
2311 description: "Override the rel attribute. Disable to clear.",
2312 suggestions: ["ugc", "noopener noreferrer", false]
2317 description: "Link URLs will open in a new window/tab."
2321 type: [:integer, :boolean],
2323 "Set to a number to truncate URLs longer than the number. Truncated URLs will end in `...`",
2324 suggestions: [15, false]
2329 description: "Strip the scheme prefix."
2334 description: "Link URLs with rarely used schemes (magnet, ipfs, irc, etc.)"
2338 type: [:atom, :boolean],
2340 "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)",
2341 suggestions: [:no_scheme, true]
2347 key: Pleroma.ScheduledActivity,
2349 description: "Scheduled activities settings",
2352 key: :daily_user_limit,
2355 "The number of scheduled activities a user is allowed to create in a single day. Default: 25.",
2359 key: :total_user_limit,
2362 "The number of scheduled activities a user is allowed to create in total. Default: 300.",
2368 description: "Whether scheduled activities are sent to the job queue to be executed"
2374 key: Pleroma.ActivityExpiration,
2376 description: "Expired activity settings",
2381 description: "Whether expired activities will be sent to the job queue to be deleted"
2387 label: "Pleroma Authenticator",
2389 description: "Authenticator",
2392 key: Pleroma.Web.Auth.Authenticator,
2394 suggestions: [Pleroma.Web.Auth.PleromaAuthenticator, Pleroma.Web.Auth.LDAPAuthenticator]
2404 "Use LDAP for user authentication. When a user logs in to the Pleroma instance, the name and password" <>
2405 " will be verified by trying to authenticate (bind) to a LDAP server." <>
2406 " If a user exists in the LDAP directory but there is no account with the same name yet on the" <>
2407 " Pleroma instance then a new Pleroma account will be created with the same name as the LDAP user name.",
2412 description: "Enables LDAP authentication"
2417 description: "LDAP server hostname",
2418 suggestions: ["localhosts"]
2423 description: "LDAP port, e.g. 389 or 636",
2424 suggestions: [389, 636]
2430 description: "Enable to use SSL, usually implies the port 636"
2434 label: "SSL options",
2436 description: "Additional SSL options",
2437 suggestions: [cacertfile: "path/to/file/with/PEM/cacerts", verify: :verify_peer],
2442 description: "Path to file with PEM encoded cacerts",
2443 suggestions: ["path/to/file/with/PEM/cacerts"]
2448 description: "Type of cert verification",
2449 suggestions: [:verify_peer]
2457 description: "Enable to use STARTTLS, usually implies the port 389"
2461 label: "TLS options",
2463 description: "Additional TLS options",
2464 suggestions: [cacertfile: "path/to/file/with/PEM/cacerts", verify: :verify_peer],
2469 description: "Path to file with PEM encoded cacerts",
2470 suggestions: ["path/to/file/with/PEM/cacerts"]
2475 description: "Type of cert verification",
2476 suggestions: [:verify_peer]
2483 description: "LDAP base, e.g. \"dc=example,dc=com\"",
2484 suggestions: ["dc=example,dc=com"]
2491 "LDAP attribute name to authenticate the user, e.g. when \"cn\", the filter will be \"cn=username,base\"",
2500 description: "Authentication / authorization settings",
2503 key: :enforce_oauth_admin_scope_usage,
2504 label: "Enforce OAuth admin scope usage",
2507 "OAuth admin scope requirement toggle. " <>
2508 "If enabled, admin actions explicitly demand admin OAuth scope(s) presence in OAuth token " <>
2509 "(client app must support admin scopes). If disabled and token doesn't have admin scope(s), " <>
2510 "`is_admin` user flag grants access to admin-specific actions."
2513 key: :auth_template,
2516 "Authentication form template. By default it's `show.html` which corresponds to `lib/pleroma/web/templates/o_auth/o_auth/show.html.ee`.",
2517 suggestions: ["show.html"]
2520 key: :oauth_consumer_template,
2521 label: "OAuth consumer template",
2524 "OAuth consumer mode authentication form template. By default it's `consumer.html` which corresponds to" <>
2525 " `lib/pleroma/web/templates/o_auth/o_auth/consumer.html.eex`.",
2526 suggestions: ["consumer.html"]
2529 key: :oauth_consumer_strategies,
2530 label: "OAuth consumer strategies",
2531 type: {:list, :string},
2533 "The list of enabled OAuth consumer strategies. By default it's set by OAUTH_CONSUMER_STRATEGIES environment variable." <>
2534 " Each entry in this space-delimited string should be of format \"strategy\" or \"strategy:dependency\"" <>
2535 " (e.g. twitter or keycloak:ueberauth_keycloak_strategy in case dependency is named differently than ueberauth_<strategy>).",
2536 suggestions: ["twitter", "keycloak:ueberauth_keycloak_strategy"]
2542 key: :email_notifications,
2544 description: "Email notifications settings",
2550 "emails of \"what you've missed\" for users who have been inactive for a while",
2554 schedule: "0 0 * * 0",
2556 inactivity_threshold: 7
2564 description: "Globally enable or disable digest emails"
2570 "When to send digest email, in crontab format. \"0 0 0\" is the default, meaning \"once a week at midnight on Sunday morning\".",
2571 suggestions: ["0 0 * * 0"]
2576 description: "Minimum interval between digest emails to one user",
2580 key: :inactivity_threshold,
2582 description: "Minimum user inactivity threshold",
2591 key: Pleroma.Emails.UserEmail,
2593 description: "Email template settings",
2598 description: "A path to a custom logo. Set it to `nil` to use the default Pleroma logo.",
2599 suggestions: ["some/path/logo.png"]
2604 description: "A map with color settings for email templates.",
2607 link_color: "#d8a070",
2608 background_color: "#2C3645",
2609 content_background_color: "#1B2635",
2610 header_color: "#d8a070",
2611 text_color: "#b9b9ba",
2612 text_muted_color: "#b9b9ba"
2619 suggestions: ["#d8a070"]
2622 key: :background_color,
2624 suggestions: ["#2C3645"]
2627 key: :content_background_color,
2629 suggestions: ["#1B2635"]
2634 suggestions: ["#d8a070"]
2639 suggestions: ["#b9b9ba"]
2642 key: :text_muted_color,
2644 suggestions: ["#b9b9ba"]
2652 key: Pleroma.Emails.NewUsersDigestEmail,
2654 description: "New users admin email digest",
2659 description: "Enables new users admin digest email when `true`"
2668 description: "Configure OAuth 2 provider capabilities",
2671 key: :token_expires_in,
2673 description: "The lifetime in seconds of the access token",
2677 key: :issue_new_refresh_token,
2680 "Keeps old refresh token or generate new refresh token when to obtain an access token"
2683 key: :clean_expired_tokens,
2685 description: "Enable a background job to clean expired OAuth tokens. Default: disabled."
2695 key: :shortcode_globs,
2696 type: {:list, :string},
2697 description: "Location of custom emoji files. * can be used as a wildcard.",
2698 suggestions: ["/emoji/custom/**/*.png"]
2701 key: :pack_extensions,
2702 type: {:list, :string},
2704 "A list of file extensions for emojis, when no emoji.txt for a pack is present",
2705 suggestions: [".png", ".gif"]
2709 type: {:keyword, {:list, :string}},
2711 "Emojis are ordered in groups (tags). This is an array of key-value pairs where the key is the group name" <>
2712 " and the value is the location or array of locations. * can be used as a wildcard.",
2714 Custom: ["/emoji/*.png", "/emoji/**/*.png"]
2718 key: :default_manifest,
2721 "Location of the JSON-manifest. This manifest contains information about the emoji-packs you can download." <>
2722 " Currently only one manifest can be added (no arrays).",
2723 suggestions: ["https://git.pleroma.social/pleroma/emoji-index/raw/master/index.json"]
2726 key: :shared_pack_cache_seconds_per_file,
2727 label: "Shared pack cache s/file",
2730 "When an emoji pack is shared, the archive is created and cached in memory" <>
2731 " for this amount of seconds multiplied by the number of files.",
2741 "Rate limit settings. This is an advanced feature enabled only for :authentication by default.",
2745 type: [:tuple, {:list, :tuple}],
2746 description: "For the search requests (account & status search etc.)",
2747 suggestions: [{1000, 10}, [{10_000, 10}, {10_000, 50}]]
2751 type: [:tuple, {:list, :tuple}],
2752 description: "For requests to timelines (each timeline has it's own limiter)",
2753 suggestions: [{1000, 10}, [{10_000, 10}, {10_000, 50}]]
2756 key: :app_account_creation,
2757 type: [:tuple, {:list, :tuple}],
2758 description: "For registering user accounts from the same IP address",
2759 suggestions: [{1000, 10}, [{10_000, 10}, {10_000, 50}]]
2762 key: :relations_actions,
2763 type: [:tuple, {:list, :tuple}],
2764 description: "For actions on relationships with all users (follow, unfollow)",
2765 suggestions: [{1000, 10}, [{10_000, 10}, {10_000, 50}]]
2768 key: :relation_id_action,
2769 label: "Relation ID action",
2770 type: [:tuple, {:list, :tuple}],
2771 description: "For actions on relation with a specific user (follow, unfollow)",
2772 suggestions: [{1000, 10}, [{10_000, 10}, {10_000, 50}]]
2775 key: :statuses_actions,
2776 type: [:tuple, {:list, :tuple}],
2778 "For create / delete / fav / unfav / reblog / unreblog actions on any statuses",
2779 suggestions: [{1000, 10}, [{10_000, 10}, {10_000, 50}]]
2782 key: :status_id_action,
2783 label: "Status ID action",
2784 type: [:tuple, {:list, :tuple}],
2786 "For fav / unfav or reblog / unreblog actions on the same status by the same user",
2787 suggestions: [{1000, 10}, [{10_000, 10}, {10_000, 50}]]
2790 key: :authentication,
2791 type: [:tuple, {:list, :tuple}],
2792 description: "For authentication create / password check / user existence check requests",
2793 suggestions: [{60_000, 15}]
2802 "Before enabling this you must add :esshd to mix.exs as one of the extra_applications " <>
2803 "and generate host keys in your priv dir with ssh-keygen -m PEM -N \"\" -b 2048 -t rsa -f ssh_host_rsa_key",
2808 description: "Enables SSH"
2813 description: "Dir with SSH keys",
2814 suggestions: ["/some/path/ssh_keys"]
2819 description: "Handler module",
2820 suggestions: ["Pleroma.BBS.Handler"]
2825 description: "Port to connect",
2826 suggestions: [10_022]
2829 key: :password_authenticator,
2831 description: "Authenticator module",
2832 suggestions: ["Pleroma.BBS.Authenticator"]
2838 label: "Mime Types",
2840 description: "Mime Types settings",
2847 "application/xml" => ["xml"],
2848 "application/xrd+xml" => ["xrd+xml"],
2849 "application/jrd+json" => ["jrd+json"],
2850 "application/activity+json" => ["activity+json"],
2851 "application/ld+json" => ["activity+json"]
2856 key: "application/xml",
2857 type: {:list, :string},
2858 suggestions: ["xml"]
2861 key: "application/xrd+xml",
2862 type: {:list, :string},
2863 suggestions: ["xrd+xml"]
2866 key: "application/jrd+json",
2867 type: {:list, :string},
2868 suggestions: ["jrd+json"]
2871 key: "application/activity+json",
2872 type: {:list, :string},
2873 suggestions: ["activity+json"]
2876 key: "application/ld+json",
2877 type: {:list, :string},
2878 suggestions: ["activity+json"]
2888 description: "Pleroma chat settings",
2901 description: "HTTP settings",
2906 type: [:string, :tuple],
2907 description: "Proxy URL",
2908 suggestions: ["localhost:9020", {:socks5, :localhost, 3090}]
2911 key: :send_user_agent,
2916 type: [:string, :atom],
2918 "What user agent to use. Must be a string or an atom `:default`. Default value is `:default`.",
2919 suggestions: ["Pleroma", :default]
2924 description: "Adapter specific options",
2930 label: "SSL Options",
2931 description: "SSL options for HTTP adapter",
2935 type: {:list, :atom},
2936 description: "List of TLS version to use",
2937 suggestions: [:tlsv1, ":tlsv1.1", ":tlsv1.2"]
2948 label: "Markup Settings",
2952 key: :allow_inline_images,
2956 key: :allow_headings,
2969 type: {:list, :module},
2971 "Module names are shortened (removed leading `Pleroma.HTML.` part), but on adding custom module you need to use full name.",
2972 suggestions: [Pleroma.HTML.Transform.MediaProxy, Pleroma.HTML.Scrubber.Default]
2982 key: :deny_follow_blocked,
2989 key: :mrf_normalize_markup,
2991 related_policy: "Pleroma.Web.ActivityPub.MRF.NormalizeMarkup",
2992 label: "MRF Normalize Markup",
2993 description: "MRF NormalizeMarkup settings. Scrub configured hypertext markup.",
2999 suggestions: [Pleroma.HTML.Scrubber.Default]
3009 key: :restricted_nicknames,
3010 type: {:list, :string},
3029 "ostatus_subscribe",
3048 label: "CORS plug config",
3054 suggestions: [86_400]
3058 type: {:list, :string},
3059 suggestions: ["POST", "PUT", "DELETE", "GET", "PATCH", "OPTIONS"]
3063 type: {:list, :string},
3066 "X-RateLimit-Reset",
3067 "X-RateLimit-Limit",
3068 "X-RateLimit-Remaining",
3079 type: {:list, :string},
3080 suggestions: ["Authorization", "Content-Type", "Idempotency-Key"]
3086 key: Pleroma.Plugs.RemoteIp,
3089 `Pleroma.Plugs.RemoteIp` is a shim to call [`RemoteIp`](https://git.pleroma.social/pleroma/remote_ip) but with runtime configuration.
3090 **If your instance is not behind at least one reverse proxy, you should not enable this plug.**
3096 description: "Enable/disable the plug. Default: disabled."
3100 type: {:list, :string},
3102 "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]`."
3106 type: {:list, :string},
3108 "A list of strings in [CIDR](https://en.wikipedia.org/wiki/CIDR) notation specifying the IPs of known proxies. Default: `[]`."
3112 type: {:list, :string},
3114 "Defaults to [localhost](https://en.wikipedia.org/wiki/Localhost) and [private network](https://en.wikipedia.org/wiki/Private_network)."
3120 key: :web_cache_ttl,
3121 label: "Web cache TTL",
3124 "The expiration time for the web responses cache. Values should be in milliseconds or `nil` to disable expiration.",
3130 "Activity pub routes (except question activities). Default: `nil` (no expiration).",
3131 suggestions: [30_000, nil]
3134 key: :activity_pub_question,
3136 description: "Activity pub routes (question activities). Default: `30_000` (30 seconds).",
3137 suggestions: [30_000]
3147 "Render profiles and posts using server-generated HTML that is viewable without using JavaScript",
3152 description: "Enables the rendering of static HTML. Default: disabled."
3160 description: "Configure feed rendering",
3165 description: "Configure title rendering",
3170 description: "Maximum number of characters before truncating title",
3176 description: "Replacement which will be used after truncating string",
3177 suggestions: ["..."]
3185 key: :mrf_object_age,
3187 related_policy: "Pleroma.Web.ActivityPub.MRF.ObjectAgePolicy",
3188 label: "MRF Object Age",
3191 "Rejects or delists posts based on their timestamp deviance from your server's clock.",
3196 description: "Required age (in seconds) of a post before actions are taken.",
3197 suggestions: [172_800]
3201 type: {:list, :atom},
3203 "A list of actions to apply to the post. `:delist` removes the post from public timelines; " <>
3204 "`:strip_followers` removes followers from the ActivityPub recipient list ensuring they won't be delivered to home timelines; " <>
3205 "`:reject` rejects the message entirely",
3206 suggestions: [:delist, :strip_followers, :reject]
3214 description: "Custom Runtime Modules",
3219 description: "A path to custom Elixir modules (such as MRF policies)."
3227 description: "Settings for notifications streamer",
3232 description: "Number of workers to send notifications",
3236 key: :overflow_workers,
3238 description: "Maximum number of workers created if pool is empty",
3245 key: :connections_pool,
3247 description: "Advanced settings for `gun` connections pool",
3250 key: :connection_acquisition_wait,
3253 "Timeout to acquire a connection from pool.The total max time is this value multiplied by the number of retries. Default: 250ms.",
3257 key: :connection_acquisition_retries,
3260 "Number of attempts to acquire the connection from the pool if it is overloaded. Default: 5",
3264 key: :max_connections,
3266 description: "Maximum number of connections in the pool. Default: 250 connections.",
3270 key: :await_up_timeout,
3272 description: "Timeout while `gun` will wait until connection is up. Default: 5000ms.",
3276 key: :reclaim_multiplier,
3279 "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",
3288 description: "Advanced settings for `gun` workers pools",
3290 Enum.map([:federation, :media, :upload, :default], fn pool_name ->
3294 description: "Settings for #{pool_name} pool.",
3299 description: "Maximum number of concurrent requests in the pool.",
3306 "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",
3315 key: :hackney_pools,
3317 description: "Advanced settings for `hackney` connections pools",
3322 description: "Settings for federation pool.",
3325 key: :max_connections,
3327 description: "Number workers in the pool.",
3333 description: "Timeout while `hackney` will wait for response.",
3334 suggestions: [150_000]
3341 description: "Settings for media pool.",
3344 key: :max_connections,
3346 description: "Number workers in the pool.",
3352 description: "Timeout while `hackney` will wait for response.",
3353 suggestions: [150_000]
3360 description: "Settings for upload pool.",
3363 key: :max_connections,
3365 description: "Number workers in the pool.",
3371 description: "Timeout while `hackney` will wait for response.",
3372 suggestions: [300_000]
3380 key: :restrict_unauthenticated,
3383 "Disallow viewing timelines, user profiles and statuses for unauthenticated users.",
3388 description: "Settings for public and federated timelines.",
3393 description: "Disallow view public timeline."
3398 description: "Disallow view federated timeline."
3405 description: "Settings for user profiles.",
3410 description: "Disallow view local user profiles."
3415 description: "Disallow view remote user profiles."
3422 description: "Settings for statuses.",
3427 description: "Disallow view local statuses."
3432 description: "Disallow view remote statuses."
3440 key: Pleroma.Web.ApiSpec.CastAndValidate,
3447 "Enables strict input validation (useful in development, not recommended in production)"
3453 key: :instances_favicons,
3455 description: "Control favicons for instances",
3460 description: "Allow/disallow displaying and getting instances favicons"
3468 descriptions: "S3 service related settings",
3471 key: :access_key_id,
3473 description: "S3 access key ID",
3474 suggestions: ["AKIAQ8UKHTGIYN7DMWWJ"]
3477 key: :secret_access_key,
3479 description: "Secret access key",
3480 suggestions: ["JFGt+fgH1UQ7vLUQjpW+WvjTdV/UNzVxcwn7DkaeFKtBS5LvoXvIiME4NQBsT6ZZ"]
3485 description: "S3 host",
3486 suggestions: ["s3.eu-central-1.amazonaws.com"]