Add description for configuration.
[akkoma] / config / description.exs
1 use Mix.Config
2 alias Pleroma.Docs.Generator
3
4 websocket_config = [
5 path: "/websocket",
6 serializer: [
7 {Phoenix.Socket.V1.JSONSerializer, "~> 1.0.0"},
8 {Phoenix.Socket.V2.JSONSerializer, "~> 2.0.0"}
9 ],
10 timeout: 60_000,
11 transport_log: false,
12 compress: false
13 ]
14
15 config :pleroma, :config_description, [
16 %{
17 group: :pleroma,
18 key: Pleroma.Upload,
19 type: :group,
20 description: "Upload general settings",
21 children: [
22 %{
23 key: :uploader,
24 type: :module,
25 description: "Module which will be used for uploads",
26 suggestions: {:list_behaviour_implementations, Pleroma.Uploaders.Uploader}
27 },
28 %{
29 key: :filters,
30 type: {:list, :module},
31 description:
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}
34 },
35 %{
36 key: :link_name,
37 type: :boolean,
38 description:
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`."
40 },
41 %{
42 key: :base_url,
43 label: "Base URL",
44 type: :string,
45 description: "Base URL for the uploads, needed if you use CDN",
46 suggestions: [
47 "https://cdn-host.com"
48 ]
49 },
50 %{
51 key: :proxy_remote,
52 type: :boolean,
53 description:
54 "If enabled, requests to media stored using a remote uploader will be proxied instead of being redirected"
55 },
56 %{
57 key: :proxy_opts,
58 label: "Proxy Options",
59 type: :keyword,
60 description: "Options for Pleroma.ReverseProxy",
61 suggestions: [
62 redirect_on_failure: false,
63 max_body_length: 25 * 1_048_576,
64 http: [
65 follow_redirect: true,
66 pool: :media
67 ]
68 ],
69 children: [
70 %{
71 key: :redirect_on_failure,
72 type: :boolean,
73 description:
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."
76 },
77 %{
78 key: :max_body_length,
79 type: :integer,
80 description:
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."
83 },
84 %{
85 key: :http,
86 label: "HTTP",
87 type: :keyword,
88 description: "HTTP options",
89 children: [
90 %{
91 key: :adapter,
92 type: :keyword,
93 description: "Adapter specific options",
94 children: [
95 %{
96 key: :ssl_options,
97 type: :keyword,
98 label: "SSL Options",
99 description: "SSL options for HTTP adapter",
100 children: [
101 %{
102 key: :versions,
103 type: {:list, :atom},
104 description: "List of TLS versions to use",
105 suggestions: [:tlsv1, ":tlsv1.1", ":tlsv1.2"]
106 }
107 ]
108 }
109 ]
110 },
111 %{
112 key: :proxy_url,
113 label: "Proxy URL",
114 type: [:string, :tuple],
115 description: "Proxy URL",
116 suggestions: ["127.0.0.1:8123", {:socks5, :localhost, 9050}]
117 }
118 ]
119 }
120 ]
121 },
122 %{
123 key: :filename_display_max_length,
124 type: :integer,
125 description: "Set max length of a filename to display. 0 = no limit. Default: 30"
126 }
127 ]
128 },
129 %{
130 group: :pleroma,
131 key: Pleroma.Uploaders.Local,
132 type: :group,
133 description: "Local uploader-related settings",
134 children: [
135 %{
136 key: :uploads,
137 type: :string,
138 description: "Path where user's uploads will be saved",
139 suggestions: [
140 "uploads"
141 ]
142 }
143 ]
144 },
145 %{
146 group: :pleroma,
147 key: Pleroma.Uploaders.S3,
148 type: :group,
149 description: "S3 uploader-related settings",
150 children: [
151 %{
152 key: :bucket,
153 type: :string,
154 description: "S3 bucket",
155 suggestions: [
156 "bucket"
157 ]
158 },
159 %{
160 key: :bucket_namespace,
161 type: :string,
162 description: "S3 bucket namespace",
163 suggestions: ["pleroma"]
164 },
165 %{
166 key: :public_endpoint,
167 type: :string,
168 description: "S3 endpoint",
169 suggestions: ["https://s3.amazonaws.com"]
170 },
171 %{
172 key: :truncated_namespace,
173 type: :string,
174 description:
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."
177 },
178 %{
179 key: :streaming_enabled,
180 type: :boolean,
181 description:
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."
183 }
184 ]
185 },
186 %{
187 group: :pleroma,
188 key: Pleroma.Upload.Filter.Mogrify,
189 type: :group,
190 description: "Uploads mogrify filter settings",
191 children: [
192 %{
193 key: :args,
194 type: [:string, {:list, :string}, {:list, :tuple}],
195 description:
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.",
198 suggestions: [
199 "strip",
200 "auto-orient",
201 {"implode", "1"}
202 ]
203 }
204 ]
205 },
206 %{
207 group: :pleroma,
208 key: Pleroma.Upload.Filter.AnonymizeFilename,
209 type: :group,
210 description: "Filter replaces the filename of the upload",
211 children: [
212 %{
213 key: :text,
214 type: :string,
215 description:
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}.",
218 suggestions: [
219 "custom-file-name.{extension}"
220 ]
221 }
222 ]
223 },
224 %{
225 group: :pleroma,
226 key: Pleroma.Emails.Mailer,
227 type: :group,
228 description: "Mailer-related settings",
229 children: [
230 %{
231 key: :adapter,
232 type: :module,
233 description:
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",
236 suggestions: [
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,
246 Swoosh.Adapters.Dyn,
247 Swoosh.Adapters.SocketLabs,
248 Swoosh.Adapters.Gmail,
249 Swoosh.Adapters.Local
250 ]
251 },
252 %{
253 key: :enabled,
254 type: :boolean,
255 description: "Allow/disallow send emails"
256 },
257 %{
258 group: {:subgroup, Swoosh.Adapters.SMTP},
259 key: :relay,
260 type: :string,
261 description: "`Swoosh.Adapters.SMTP` adapter specific setting",
262 suggestions: ["smtp.gmail.com"]
263 },
264 %{
265 group: {:subgroup, Swoosh.Adapters.SMTP},
266 key: :username,
267 type: :string,
268 description: "`Swoosh.Adapters.SMTP` adapter specific setting",
269 suggestions: ["pleroma"]
270 },
271 %{
272 group: {:subgroup, Swoosh.Adapters.SMTP},
273 key: :password,
274 type: :string,
275 description: "`Swoosh.Adapters.SMTP` adapter specific setting",
276 suggestions: ["password"]
277 },
278 %{
279 group: {:subgroup, Swoosh.Adapters.SMTP},
280 key: :ssl,
281 label: "SSL",
282 type: :boolean,
283 description: "`Swoosh.Adapters.SMTP` adapter specific setting"
284 },
285 %{
286 group: {:subgroup, Swoosh.Adapters.SMTP},
287 key: :tls,
288 label: "TLS",
289 type: :atom,
290 description: "`Swoosh.Adapters.SMTP` adapter specific setting",
291 suggestions: [:always, :never, :if_available]
292 },
293 %{
294 group: {:subgroup, Swoosh.Adapters.SMTP},
295 key: :auth,
296 type: :atom,
297 description: "`Swoosh.Adapters.SMTP` adapter specific setting",
298 suggestions: [:always, :never, :if_available]
299 },
300 %{
301 group: {:subgroup, Swoosh.Adapters.SMTP},
302 key: :port,
303 type: :integer,
304 description: "`Swoosh.Adapters.SMTP` adapter specific setting",
305 suggestions: [1025]
306 },
307 %{
308 group: {:subgroup, Swoosh.Adapters.SMTP},
309 key: :retries,
310 type: :integer,
311 description: "`Swoosh.Adapters.SMTP` adapter specific setting",
312 suggestions: [5]
313 },
314 %{
315 group: {:subgroup, Swoosh.Adapters.SMTP},
316 key: :no_mx_lookups,
317 label: "No MX lookups",
318 type: :boolean,
319 description: "`Swoosh.Adapters.SMTP` adapter specific setting"
320 },
321 %{
322 group: {:subgroup, Swoosh.Adapters.Sendgrid},
323 key: :api_key,
324 label: "API key",
325 type: :string,
326 description: "`Swoosh.Adapters.Sendgrid` adapter specific setting",
327 suggestions: ["my-api-key"]
328 },
329 %{
330 group: {:subgroup, Swoosh.Adapters.Sendmail},
331 key: :cmd_path,
332 type: :string,
333 description: "`Swoosh.Adapters.Sendmail` adapter specific setting",
334 suggestions: ["/usr/bin/sendmail"]
335 },
336 %{
337 group: {:subgroup, Swoosh.Adapters.Sendmail},
338 key: :cmd_args,
339 type: :string,
340 description: "`Swoosh.Adapters.Sendmail` adapter specific setting",
341 suggestions: ["-N delay,failure,success"]
342 },
343 %{
344 group: {:subgroup, Swoosh.Adapters.Sendmail},
345 key: :qmail,
346 type: :boolean,
347 description: "`Swoosh.Adapters.Sendmail` adapter specific setting"
348 },
349 %{
350 group: {:subgroup, Swoosh.Adapters.Mandrill},
351 key: :api_key,
352 label: "API key",
353 type: :string,
354 description: "`Swoosh.Adapters.Mandrill` adapter specific setting",
355 suggestions: ["my-api-key"]
356 },
357 %{
358 group: {:subgroup, Swoosh.Adapters.Mailgun},
359 key: :api_key,
360 label: "API key",
361 type: :string,
362 description: "`Swoosh.Adapters.Mailgun` adapter specific setting",
363 suggestions: ["my-api-key"]
364 },
365 %{
366 group: {:subgroup, Swoosh.Adapters.Mailgun},
367 key: :domain,
368 type: :string,
369 description: "`Swoosh.Adapters.Mailgun` adapter specific setting",
370 suggestions: ["pleroma.com"]
371 },
372 %{
373 group: {:subgroup, Swoosh.Adapters.Mailjet},
374 key: :api_key,
375 label: "API key",
376 type: :string,
377 description: "`Swoosh.Adapters.Mailjet` adapter specific setting",
378 suggestions: ["my-api-key"]
379 },
380 %{
381 group: {:subgroup, Swoosh.Adapters.Mailjet},
382 key: :secret,
383 type: :string,
384 description: "`Swoosh.Adapters.Mailjet` adapter specific setting",
385 suggestions: ["my-secret-key"]
386 },
387 %{
388 group: {:subgroup, Swoosh.Adapters.Postmark},
389 key: :api_key,
390 label: "API key",
391 type: :string,
392 description: "`Swoosh.Adapters.Postmark` adapter specific setting",
393 suggestions: ["my-api-key"]
394 },
395 %{
396 group: {:subgroup, Swoosh.Adapters.SparkPost},
397 key: :api_key,
398 label: "API key",
399 type: :string,
400 description: "`Swoosh.Adapters.SparkPost` adapter specific setting",
401 suggestions: ["my-api-key"]
402 },
403 %{
404 group: {:subgroup, Swoosh.Adapters.SparkPost},
405 key: :endpoint,
406 type: :string,
407 description: "`Swoosh.Adapters.SparkPost` adapter specific setting",
408 suggestions: ["https://api.sparkpost.com/api/v1"]
409 },
410 %{
411 group: {:subgroup, Swoosh.Adapters.AmazonSES},
412 key: :region,
413 type: :string,
414 description: "`Swoosh.Adapters.AmazonSES` adapter specific setting",
415 suggestions: ["us-east-1", "us-east-2"]
416 },
417 %{
418 group: {:subgroup, Swoosh.Adapters.AmazonSES},
419 key: :access_key,
420 type: :string,
421 description: "`Swoosh.Adapters.AmazonSES` adapter specific setting",
422 suggestions: ["aws-access-key"]
423 },
424 %{
425 group: {:subgroup, Swoosh.Adapters.AmazonSES},
426 key: :secret,
427 type: :string,
428 description: "`Swoosh.Adapters.AmazonSES` adapter specific setting",
429 suggestions: ["aws-secret-key"]
430 },
431 %{
432 group: {:subgroup, Swoosh.Adapters.Dyn},
433 key: :api_key,
434 label: "API key",
435 type: :string,
436 description: "`Swoosh.Adapters.Dyn` adapter specific setting",
437 suggestions: ["my-api-key"]
438 },
439 %{
440 group: {:subgroup, Swoosh.Adapters.SocketLabs},
441 key: :server_id,
442 type: :string,
443 description: "`Swoosh.Adapters.SocketLabs` adapter specific setting"
444 },
445 %{
446 group: {:subgroup, Swoosh.Adapters.SocketLabs},
447 key: :api_key,
448 label: "API key",
449 type: :string,
450 description: "`Swoosh.Adapters.SocketLabs` adapter specific setting"
451 },
452 %{
453 group: {:subgroup, Swoosh.Adapters.Gmail},
454 key: :access_token,
455 type: :string,
456 description: "`Swoosh.Adapters.Gmail` adapter specific setting"
457 }
458 ]
459 },
460 %{
461 group: :swoosh,
462 type: :group,
463 description: "`Swoosh.Adapters.Local` adapter specific settings",
464 children: [
465 %{
466 group: {:subgroup, Swoosh.Adapters.Local},
467 key: :serve_mailbox,
468 type: :boolean,
469 description: "Run the preview server together as part of your app"
470 },
471 %{
472 group: {:subgroup, Swoosh.Adapters.Local},
473 key: :preview_port,
474 type: :integer,
475 description: "The preview server port",
476 suggestions: [4001]
477 }
478 ]
479 },
480 %{
481 group: :pleroma,
482 key: :uri_schemes,
483 label: "URI Schemes",
484 type: :group,
485 description: "URI schemes related settings",
486 children: [
487 %{
488 key: :valid_schemes,
489 type: {:list, :string},
490 description: "List of the scheme part that is considered valid to be an URL",
491 suggestions: [
492 "https",
493 "http",
494 "dat",
495 "dweb",
496 "gopher",
497 "hyper",
498 "ipfs",
499 "ipns",
500 "irc",
501 "ircs",
502 "magnet",
503 "mailto",
504 "mumble",
505 "ssb",
506 "xmpp"
507 ]
508 }
509 ]
510 },
511 %{
512 group: :pleroma,
513 key: :instance,
514 type: :group,
515 description: "Instance-related settings",
516 children: [
517 %{
518 key: :name,
519 type: :string,
520 description: "Name of the instance",
521 suggestions: [
522 "Pleroma"
523 ]
524 },
525 %{
526 key: :email,
527 label: "Admin Email Address",
528 type: :string,
529 description: "Email used to reach an Administrator/Moderator of the instance",
530 suggestions: [
531 "email@example.com"
532 ]
533 },
534 %{
535 key: :notify_email,
536 label: "Sender Email Address",
537 type: :string,
538 description: "Envelope FROM address for mail sent via Pleroma",
539 suggestions: [
540 "notify@example.com"
541 ]
542 },
543 %{
544 key: :description,
545 type: :string,
546 description:
547 "The instance's description. It can be seen in nodeinfo and `/api/v1/instance`",
548 suggestions: [
549 "Very cool instance"
550 ]
551 },
552 %{
553 key: :limit,
554 type: :integer,
555 description: "Posts character limit (CW/Subject included in the counter)",
556 suggestions: [
557 5_000
558 ]
559 },
560 %{
561 key: :chat_limit,
562 type: :integer,
563 description: "Character limit of the instance chat messages",
564 suggestions: [
565 5_000
566 ]
567 },
568 %{
569 key: :remote_limit,
570 type: :integer,
571 description: "Hard character limit beyond which remote posts will be dropped",
572 suggestions: [
573 100_000
574 ]
575 },
576 %{
577 key: :upload_limit,
578 type: :integer,
579 description: "File size limit of uploads (except for avatar, background, banner)",
580 suggestions: [
581 16_000_000
582 ]
583 },
584 %{
585 key: :avatar_upload_limit,
586 type: :integer,
587 description: "File size limit of user's profile avatars",
588 suggestions: [
589 2_000_000
590 ]
591 },
592 %{
593 key: :background_upload_limit,
594 type: :integer,
595 description: "File size limit of user's profile backgrounds",
596 suggestions: [
597 4_000_000
598 ]
599 },
600 %{
601 key: :banner_upload_limit,
602 type: :integer,
603 description: "File size limit of user's profile banners",
604 suggestions: [
605 4_000_000
606 ]
607 },
608 %{
609 key: :poll_limits,
610 type: :map,
611 description: "A map with poll limits for local polls",
612 suggestions: [
613 %{
614 max_options: 20,
615 max_option_chars: 200,
616 min_expiration: 0,
617 max_expiration: 31_536_000
618 }
619 ],
620 children: [
621 %{
622 key: :max_options,
623 type: :integer,
624 description: "Maximum number of options",
625 suggestions: [20]
626 },
627 %{
628 key: :max_option_chars,
629 type: :integer,
630 description: "Maximum number of characters per option",
631 suggestions: [200]
632 },
633 %{
634 key: :min_expiration,
635 type: :integer,
636 description: "Minimum expiration time (in seconds)",
637 suggestions: [0]
638 },
639 %{
640 key: :max_expiration,
641 type: :integer,
642 description: "Maximum expiration time (in seconds)",
643 suggestions: [3600]
644 }
645 ]
646 },
647 %{
648 key: :registrations_open,
649 type: :boolean,
650 description:
651 "Enable registrations for anyone. Invitations require this setting to be disabled."
652 },
653 %{
654 key: :invites_enabled,
655 type: :boolean,
656 description:
657 "Enable user invitations for admins (depends on `registrations_open` being disabled)"
658 },
659 %{
660 key: :account_activation_required,
661 type: :boolean,
662 description: "Require users to confirm their emails before signing in"
663 },
664 %{
665 key: :federating,
666 type: :boolean,
667 description: "Enable federation with other instances"
668 },
669 %{
670 key: :federation_incoming_replies_max_depth,
671 label: "Fed. incoming replies max depth",
672 type: :integer,
673 description:
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.",
676 suggestions: [
677 100
678 ]
679 },
680 %{
681 key: :federation_reachability_timeout_days,
682 label: "Fed. reachability timeout days",
683 type: :integer,
684 description:
685 "Timeout (in days) of each external federation target being unreachable prior to pausing federating to it",
686 suggestions: [
687 7
688 ]
689 },
690 %{
691 key: :allow_relay,
692 type: :boolean,
693 description: "Enable Pleroma's Relay, which makes it possible to follow a whole instance"
694 },
695 %{
696 key: :public,
697 type: :boolean,
698 description:
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."
702 },
703 %{
704 key: :quarantined_instances,
705 type: {:list, :string},
706 description:
707 "List of ActivityPub instances where private (DMs, followers-only) activities will not be sent",
708 suggestions: [
709 "quarantined.com",
710 "*.quarantined.com"
711 ]
712 },
713 %{
714 key: :managed_config,
715 type: :boolean,
716 description:
717 "Whenether the config for pleroma-fe is configured in this config or in static/config.json"
718 },
719 %{
720 key: :static_dir,
721 type: :string,
722 description: "Instance static directory",
723 suggestions: [
724 "instance/static/"
725 ]
726 },
727 %{
728 key: :allowed_post_formats,
729 type: {:list, :string},
730 description: "MIME-type list of formats allowed to be posted (transformed into HTML)",
731 suggestions: [
732 "text/plain",
733 "text/html",
734 "text/markdown",
735 "text/bbcode"
736 ]
737 },
738 %{
739 key: :extended_nickname_format,
740 type: :boolean,
741 description:
742 "Enable to use extended local nicknames format (allows underscores/dashes)." <>
743 " This will break federation with older software for theses nicknames."
744 },
745 %{
746 key: :cleanup_attachments,
747 type: :boolean,
748 description: """
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.
752 """
753 },
754 %{
755 key: :max_pinned_statuses,
756 type: :integer,
757 description: "The maximum number of pinned statuses. 0 will disable the feature.",
758 suggestions: [
759 0,
760 1,
761 3
762 ]
763 },
764 %{
765 key: :autofollowed_nicknames,
766 type: {:list, :string},
767 description:
768 "Set to nicknames of (local) users that every new user should automatically follow",
769 suggestions: [
770 "lain",
771 "kaniini",
772 "lanodan",
773 "rinpatch"
774 ]
775 },
776 %{
777 key: :attachment_links,
778 type: :boolean,
779 description: "Enable to automatically add attachment link text to statuses"
780 },
781 %{
782 key: :max_report_comment_size,
783 type: :integer,
784 description: "The maximum size of the report comment. Default: 1000.",
785 suggestions: [
786 1_000
787 ]
788 },
789 %{
790 key: :safe_dm_mentions,
791 label: "Safe DM mentions",
792 type: :boolean,
793 description:
794 "If enabled, only mentions at the beginning of a post will be used to address people in direct messages." <>
795 " This is to prevent accidental mentioning of people when talking about them (e.g. \"@admin please keep an eye on @bad_actor\")." <>
796 " Default: disabled"
797 },
798 %{
799 key: :healthcheck,
800 type: :boolean,
801 description: "If enabled, system data will be shown on `/api/pleroma/healthcheck`"
802 },
803 %{
804 key: :remote_post_retention_days,
805 type: :integer,
806 description:
807 "The default amount of days to retain remote posts when pruning the database",
808 suggestions: [
809 90
810 ]
811 },
812 %{
813 key: :user_bio_length,
814 type: :integer,
815 description: "A user bio maximum length. Default: 5000.",
816 suggestions: [
817 5_000
818 ]
819 },
820 %{
821 key: :user_name_length,
822 type: :integer,
823 description: "A user name maximum length. Default: 100.",
824 suggestions: [
825 100
826 ]
827 },
828 %{
829 key: :skip_thread_containment,
830 type: :boolean,
831 description: "Skip filtering out broken threads. Default: enabled."
832 },
833 %{
834 key: :limit_to_local_content,
835 type: {:dropdown, :atom},
836 description:
837 "Limit unauthenticated users to search for local statutes and users only. Default: `:unauthenticated`.",
838 suggestions: [
839 :unauthenticated,
840 :all,
841 false
842 ]
843 },
844 %{
845 key: :max_account_fields,
846 type: :integer,
847 description: "The maximum number of custom fields in the user profile. Default: 10.",
848 suggestions: [
849 10
850 ]
851 },
852 %{
853 key: :max_remote_account_fields,
854 type: :integer,
855 description:
856 "The maximum number of custom fields in the remote user profile. Default: 20.",
857 suggestions: [
858 20
859 ]
860 },
861 %{
862 key: :account_field_name_length,
863 type: :integer,
864 description: "An account field name maximum length. Default: 512.",
865 suggestions: [
866 512
867 ]
868 },
869 %{
870 key: :account_field_value_length,
871 type: :integer,
872 description: "An account field value maximum length. Default: 2048.",
873 suggestions: [
874 2048
875 ]
876 },
877 %{
878 key: :external_user_synchronization,
879 type: :boolean,
880 description: "Enabling following/followers counters synchronization for external users"
881 },
882 %{
883 key: :multi_factor_authentication,
884 type: :keyword,
885 description: "Multi-factor authentication settings",
886 suggestions: [
887 [
888 totp: [digits: 6, period: 30],
889 backup_codes: [number: 5, length: 16]
890 ]
891 ],
892 children: [
893 %{
894 key: :totp,
895 label: "TOTP settings",
896 type: :keyword,
897 description: "TOTP settings",
898 suggestions: [digits: 6, period: 30],
899 children: [
900 %{
901 key: :digits,
902 type: :integer,
903 suggestions: [6],
904 description:
905 "Determines the length of a one-time pass-code, in characters. Defaults to 6 characters."
906 },
907 %{
908 key: :period,
909 type: :integer,
910 suggestions: [30],
911 description:
912 "A period for which the TOTP code will be valid, in seconds. Defaults to 30 seconds."
913 }
914 ]
915 },
916 %{
917 key: :backup_codes,
918 type: :keyword,
919 description: "MFA backup codes settings",
920 suggestions: [number: 5, length: 16],
921 children: [
922 %{
923 key: :number,
924 type: :integer,
925 suggestions: [5],
926 description: "Number of backup codes to generate."
927 },
928 %{
929 key: :length,
930 type: :integer,
931 suggestions: [16],
932 description:
933 "Determines the length of backup one-time pass-codes, in characters. Defaults to 16 characters."
934 }
935 ]
936 }
937 ]
938 },
939 %{
940 key: :instance_thumbnail,
941 type: :string,
942 description:
943 "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.",
944 suggestions: ["/instance/thumbnail.jpeg"]
945 }
946 ]
947 },
948 %{
949 group: :welcome,
950 type: :group,
951 description: "Welcome messages settings",
952 children: [
953 %{
954 group: :direct_message,
955 type: :group,
956 descpiption: "Direct message settings",
957 children: [
958 %{
959 key: :enabled,
960 type: :boolean,
961 description: "Enables sends direct message for new user after registration"
962 },
963 %{
964 key: :message,
965 type: :string,
966 description:
967 "A message that will be sent to a newly registered users as a direct message",
968 suggestions: [
969 "Hi, @username! Welcome on board!"
970 ]
971 },
972 %{
973 key: :sender_nickname,
974 type: :string,
975 description: "The nickname of the local user that sends the welcome message",
976 suggestions: [
977 "lain"
978 ]
979 }
980 ]
981 },
982 %{
983 group: :email,
984 type: :group,
985 descpiption: "Email message settings",
986 children: [
987 %{
988 key: :enabled,
989 type: :boolean,
990 description: "Enables sends direct message for new user after registration"
991 },
992 %{
993 key: :sender,
994 type: [:string, :tuple],
995 description:
996 "The email address or tuple with `{nickname, email}` that will use as sender to the welcome email.",
997 suggestions: [
998 {"Pleroma App", "welcome@pleroma.app"}
999 ]
1000 },
1001 %{
1002 key: :subject,
1003 type: :string,
1004 description:
1005 "The subject of welcome email. Can be use EEX template with `user` and `instance_name` variables.",
1006 suggestions: ["Welcome to <%= instance_name%>"]
1007 },
1008 %{
1009 key: :html,
1010 type: :string,
1011 description:
1012 "The html content of welcome email. Can be use EEX template with `user` and `instance_name` variables.",
1013 suggestions: ["<h1>Hello <%= user.name%>. Welcome to <%= instance_name%></h1>"]
1014 },
1015 %{
1016 key: :text,
1017 type: :string,
1018 description:
1019 "The text content of welcome email. Can be use EEX template with `user` and `instance_name` variables.",
1020 suggestions: ["Hello <%= user.name%>. \n Welcome to <%= instance_name%>\n"]
1021 }
1022 ]
1023 }
1024 ]
1025 },
1026 %{
1027 group: :logger,
1028 type: :group,
1029 description: "Logger-related settings",
1030 children: [
1031 %{
1032 key: :backends,
1033 type: [:atom, :tuple, :module],
1034 description:
1035 "Where logs will be sent, :console - send logs to stdout, { ExSyslogger, :ex_syslogger } - to syslog, Quack.Logger - to Slack.",
1036 suggestions: [:console, {ExSyslogger, :ex_syslogger}, Quack.Logger]
1037 }
1038 ]
1039 },
1040 %{
1041 group: :logger,
1042 type: :group,
1043 key: :ex_syslogger,
1044 label: "ExSyslogger",
1045 description: "ExSyslogger-related settings",
1046 children: [
1047 %{
1048 key: :level,
1049 type: {:dropdown, :atom},
1050 description: "Log level",
1051 suggestions: [:debug, :info, :warn, :error]
1052 },
1053 %{
1054 key: :ident,
1055 type: :string,
1056 description:
1057 "A string that's prepended to every message, and is typically set to the app name",
1058 suggestions: ["pleroma"]
1059 },
1060 %{
1061 key: :format,
1062 type: :string,
1063 description: "Default: \"$date $time [$level] $levelpad$node $metadata $message\"",
1064 suggestions: ["$metadata[$level] $message"]
1065 },
1066 %{
1067 key: :metadata,
1068 type: {:list, :atom},
1069 suggestions: [:request_id]
1070 }
1071 ]
1072 },
1073 %{
1074 group: :logger,
1075 type: :group,
1076 key: :console,
1077 label: "Console Logger",
1078 description: "Console logger settings",
1079 children: [
1080 %{
1081 key: :level,
1082 type: {:dropdown, :atom},
1083 description: "Log level",
1084 suggestions: [:debug, :info, :warn, :error]
1085 },
1086 %{
1087 key: :format,
1088 type: :string,
1089 description: "Default: \"$date $time [$level] $levelpad$node $metadata $message\"",
1090 suggestions: ["$metadata[$level] $message"]
1091 },
1092 %{
1093 key: :metadata,
1094 type: {:list, :atom},
1095 suggestions: [:request_id]
1096 }
1097 ]
1098 },
1099 %{
1100 group: :quack,
1101 type: :group,
1102 label: "Quack Logger",
1103 description: "Quack-related settings",
1104 children: [
1105 %{
1106 key: :level,
1107 type: {:dropdown, :atom},
1108 description: "Log level",
1109 suggestions: [:debug, :info, :warn, :error]
1110 },
1111 %{
1112 key: :meta,
1113 type: {:list, :atom},
1114 description: "Configure which metadata you want to report on",
1115 suggestions: [
1116 :application,
1117 :module,
1118 :file,
1119 :function,
1120 :line,
1121 :pid,
1122 :crash_reason,
1123 :initial_call,
1124 :registered_name,
1125 :all,
1126 :none
1127 ]
1128 },
1129 %{
1130 key: :webhook_url,
1131 label: "Webhook URL",
1132 type: :string,
1133 description: "Configure the Slack incoming webhook",
1134 suggestions: ["https://hooks.slack.com/services/YOUR-KEY-HERE"]
1135 }
1136 ]
1137 },
1138 %{
1139 group: :pleroma,
1140 key: :frontend_configurations,
1141 type: :group,
1142 description:
1143 "This form can be used to configure a keyword list that keeps the configuration data for any " <>
1144 "kind of frontend. By default, settings for pleroma_fe and masto_fe are configured. If you want to " <>
1145 "add your own configuration your settings all fields must be complete.",
1146 children: [
1147 %{
1148 key: :pleroma_fe,
1149 label: "Pleroma FE",
1150 type: :map,
1151 description: "Settings for Pleroma FE",
1152 suggestions: [
1153 %{
1154 alwaysShowSubjectInput: true,
1155 background: "/static/aurora_borealis.jpg",
1156 collapseMessageWithSubject: false,
1157 disableChat: false,
1158 greentext: false,
1159 hideFilteredStatuses: false,
1160 hideMutedPosts: false,
1161 hidePostStats: false,
1162 hideSitename: false,
1163 hideUserStats: false,
1164 loginMethod: "password",
1165 logo: "/static/logo.png",
1166 logoMargin: ".1em",
1167 logoMask: true,
1168 minimalScopesMode: false,
1169 noAttachmentLinks: false,
1170 nsfwCensorImage: "/static/img/nsfw.74818f9.png",
1171 postContentType: "text/plain",
1172 redirectRootLogin: "/main/friends",
1173 redirectRootNoLogin: "/main/all",
1174 scopeCopy: true,
1175 sidebarRight: false,
1176 showFeaturesPanel: true,
1177 showInstanceSpecificPanel: false,
1178 subjectLineBehavior: "email",
1179 theme: "pleroma-dark",
1180 webPushNotifications: false
1181 }
1182 ],
1183 children: [
1184 %{
1185 key: :alwaysShowSubjectInput,
1186 label: "Always show subject input",
1187 type: :boolean,
1188 description: "When disabled, auto-hide the subject field if it's empty"
1189 },
1190 %{
1191 key: :background,
1192 type: :string,
1193 description:
1194 "URL of the background, unless viewing a user profile with a background that is set",
1195 suggestions: ["/images/city.jpg"]
1196 },
1197 %{
1198 key: :collapseMessageWithSubject,
1199 label: "Collapse message with subject",
1200 type: :boolean,
1201 description:
1202 "When a message has a subject (aka Content Warning), collapse it by default"
1203 },
1204 %{
1205 key: :disableChat,
1206 label: "PleromaFE Chat",
1207 type: :boolean,
1208 description: "Disables PleromaFE Chat component"
1209 },
1210 %{
1211 key: :greentext,
1212 label: "Greentext",
1213 type: :boolean,
1214 description: "Enables green text on lines prefixed with the > character"
1215 },
1216 %{
1217 key: :hideFilteredStatuses,
1218 label: "Hide Filtered Statuses",
1219 type: :boolean,
1220 description: "Hides filtered statuses from timelines"
1221 },
1222 %{
1223 key: :hideMutedPosts,
1224 label: "Hide Muted Posts",
1225 type: :boolean,
1226 description: "Hides muted statuses from timelines"
1227 },
1228 %{
1229 key: :hidePostStats,
1230 label: "Hide post stats",
1231 type: :boolean,
1232 description: "Hide notices statistics (repeats, favorites, ...)"
1233 },
1234 %{
1235 key: :hideSitename,
1236 label: "Hide Sitename",
1237 type: :boolean,
1238 description: "Hides instance name from PleromaFE banner"
1239 },
1240 %{
1241 key: :hideUserStats,
1242 label: "Hide user stats",
1243 type: :boolean,
1244 description:
1245 "Hide profile statistics (posts, posts per day, followers, followings, ...)"
1246 },
1247 %{
1248 key: :logo,
1249 type: :string,
1250 description: "URL of the logo, defaults to Pleroma's logo",
1251 suggestions: ["/static/logo.png"]
1252 },
1253 %{
1254 key: :logoMargin,
1255 label: "Logo margin",
1256 type: :string,
1257 description:
1258 "Allows you to adjust vertical margins between logo boundary and navbar borders. " <>
1259 "The idea is that to have logo's image without any extra margins and instead adjust them to your need in layout.",
1260 suggestions: [".1em"]
1261 },
1262 %{
1263 key: :logoMask,
1264 label: "Logo mask",
1265 type: :boolean,
1266 description:
1267 "By default it assumes logo used will be monochrome with alpha channel to be compatible with both light and dark themes. " <>
1268 "If you want a colorful logo you must disable logoMask."
1269 },
1270 %{
1271 key: :minimalScopesMode,
1272 label: "Minimal scopes mode",
1273 type: :boolean,
1274 description:
1275 "Limit scope selection to Direct, User default, and Scope of post replying to. " <>
1276 "Also prevents replying to a DM with a public post from PleromaFE."
1277 },
1278 %{
1279 key: :nsfwCensorImage,
1280 label: "NSFW Censor Image",
1281 type: :string,
1282 description:
1283 "URL of the image to use for hiding NSFW media attachments in the timeline",
1284 suggestions: ["/static/img/nsfw.74818f9.png"]
1285 },
1286 %{
1287 key: :postContentType,
1288 label: "Post Content Type",
1289 type: {:dropdown, :atom},
1290 description: "Default post formatting option",
1291 suggestions: ["text/plain", "text/html", "text/markdown", "text/bbcode"]
1292 },
1293 %{
1294 key: :redirectRootNoLogin,
1295 label: "Redirect root no login",
1296 type: :string,
1297 description:
1298 "Relative URL which indicates where to redirect when a user isn't logged in",
1299 suggestions: ["/main/all"]
1300 },
1301 %{
1302 key: :redirectRootLogin,
1303 label: "Redirect root login",
1304 type: :string,
1305 description:
1306 "Relative URL which indicates where to redirect when a user is logged in",
1307 suggestions: ["/main/friends"]
1308 },
1309 %{
1310 key: :scopeCopy,
1311 label: "Scope copy",
1312 type: :boolean,
1313 description: "Copy the scope (private/unlisted/public) in replies to posts by default"
1314 },
1315 %{
1316 key: :sidebarRight,
1317 label: "Sidebar on Right",
1318 type: :boolean,
1319 description: "Change alignment of sidebar and panels to the right"
1320 },
1321 %{
1322 key: :showFeaturesPanel,
1323 label: "Show instance features panel",
1324 type: :boolean,
1325 description:
1326 "Enables panel displaying functionality of the instance on the About page"
1327 },
1328 %{
1329 key: :showInstanceSpecificPanel,
1330 label: "Show instance specific panel",
1331 type: :boolean,
1332 description: "Whether to show the instance's custom panel"
1333 },
1334 %{
1335 key: :subjectLineBehavior,
1336 label: "Subject line behavior",
1337 type: :string,
1338 description: "Allows changing the default behaviour of subject lines in replies.
1339 `email`: copy and preprend re:, as in email,
1340 `masto`: copy verbatim, as in Mastodon,
1341 `noop`: don't copy the subject.",
1342 suggestions: ["email", "masto", "noop"]
1343 },
1344 %{
1345 key: :theme,
1346 type: :string,
1347 description: "Which theme to use. Available themes are defined in styles.json",
1348 suggestions: ["pleroma-dark"]
1349 }
1350 ]
1351 },
1352 %{
1353 key: :masto_fe,
1354 label: "Masto FE",
1355 type: :map,
1356 description: "Settings for Masto FE",
1357 suggestions: [
1358 %{
1359 showInstanceSpecificPanel: true
1360 }
1361 ],
1362 children: [
1363 %{
1364 key: :showInstanceSpecificPanel,
1365 label: "Show instance specific panel",
1366 type: :boolean,
1367 description: "Whenether to show the instance's specific panel"
1368 }
1369 ]
1370 }
1371 ]
1372 },
1373 %{
1374 group: :pleroma,
1375 key: :assets,
1376 type: :group,
1377 description:
1378 "This section configures assets to be used with various frontends. Currently the only option relates to mascots on the mastodon frontend",
1379 children: [
1380 %{
1381 key: :mascots,
1382 type: {:keyword, :map},
1383 description:
1384 "Keyword of mascots, each element must contain both an URL and a mime_type key",
1385 suggestions: [
1386 pleroma_fox_tan: %{
1387 url: "/images/pleroma-fox-tan-smol.png",
1388 mime_type: "image/png"
1389 },
1390 pleroma_fox_tan_shy: %{
1391 url: "/images/pleroma-fox-tan-shy.png",
1392 mime_type: "image/png"
1393 }
1394 ]
1395 },
1396 %{
1397 key: :default_mascot,
1398 type: :atom,
1399 description:
1400 "This will be used as the default mascot on MastoFE. Default: `:pleroma_fox_tan`",
1401 suggestions: [
1402 :pleroma_fox_tan
1403 ]
1404 },
1405 %{
1406 key: :default_user_avatar,
1407 type: :string,
1408 description: "URL of the default user avatar",
1409 suggestions: ["/images/avi.png"]
1410 }
1411 ]
1412 },
1413 %{
1414 group: :pleroma,
1415 key: :manifest,
1416 type: :group,
1417 description:
1418 "This section describe PWA manifest instance-specific values. Currently this option relate only for MastoFE.",
1419 children: [
1420 %{
1421 key: :icons,
1422 type: {:list, :map},
1423 description: "Describe the icons of the app",
1424 suggestion: [
1425 %{
1426 src: "/static/logo.png"
1427 },
1428 %{
1429 src: "/static/icon.png",
1430 type: "image/png"
1431 },
1432 %{
1433 src: "/static/icon.ico",
1434 sizes: "72x72 96x96 128x128 256x256"
1435 }
1436 ]
1437 },
1438 %{
1439 key: :theme_color,
1440 type: :string,
1441 description: "Describe the theme color of the app",
1442 suggestions: ["#282c37", "mediumpurple"]
1443 },
1444 %{
1445 key: :background_color,
1446 type: :string,
1447 description: "Describe the background color of the app",
1448 suggestions: ["#191b22", "aliceblue"]
1449 }
1450 ]
1451 },
1452 %{
1453 group: :pleroma,
1454 key: :mrf,
1455 tab: :mrf,
1456 label: "MRF",
1457 type: :group,
1458 description: "General MRF settings",
1459 children: [
1460 %{
1461 key: :policies,
1462 type: [:module, {:list, :module}],
1463 description:
1464 "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.",
1465 suggestions: {:list_behaviour_implementations, Pleroma.Web.ActivityPub.MRF}
1466 },
1467 %{
1468 key: :transparency,
1469 label: "MRF transparency",
1470 type: :boolean,
1471 description:
1472 "Make the content of your Message Rewrite Facility settings public (via nodeinfo)"
1473 },
1474 %{
1475 key: :transparency_exclusions,
1476 label: "MRF transparency exclusions",
1477 type: {:list, :string},
1478 description:
1479 "Exclude specific instance names from MRF transparency. The use of the exclusions feature will be disclosed in nodeinfo as a boolean value.",
1480 suggestions: [
1481 "exclusion.com"
1482 ]
1483 }
1484 ]
1485 },
1486 %{
1487 group: :pleroma,
1488 key: :mrf_simple,
1489 tab: :mrf,
1490 related_policy: "Pleroma.Web.ActivityPub.MRF.SimplePolicy",
1491 label: "MRF Simple",
1492 type: :group,
1493 description: "Simple ingress policies",
1494 children: [
1495 %{
1496 key: :media_removal,
1497 type: {:list, :string},
1498 description: "List of instances to strip media attachments from",
1499 suggestions: ["example.com", "*.example.com"]
1500 },
1501 %{
1502 key: :media_nsfw,
1503 label: "Media NSFW",
1504 type: {:list, :string},
1505 description: "List of instances to tag all media as NSFW (sensitive) from",
1506 suggestions: ["example.com", "*.example.com"]
1507 },
1508 %{
1509 key: :federated_timeline_removal,
1510 type: {:list, :string},
1511 description:
1512 "List of instances to remove from the Federated (aka The Whole Known Network) Timeline",
1513 suggestions: ["example.com", "*.example.com"]
1514 },
1515 %{
1516 key: :reject,
1517 type: {:list, :string},
1518 description: "List of instances to reject activities from (except deletes)",
1519 suggestions: ["example.com", "*.example.com"]
1520 },
1521 %{
1522 key: :accept,
1523 type: {:list, :string},
1524 description: "List of instances to only accept activities from (except deletes)",
1525 suggestions: ["example.com", "*.example.com"]
1526 },
1527 %{
1528 key: :report_removal,
1529 type: {:list, :string},
1530 description: "List of instances to reject reports from",
1531 suggestions: ["example.com", "*.example.com"]
1532 },
1533 %{
1534 key: :avatar_removal,
1535 type: {:list, :string},
1536 description: "List of instances to strip avatars from",
1537 suggestions: ["example.com", "*.example.com"]
1538 },
1539 %{
1540 key: :banner_removal,
1541 type: {:list, :string},
1542 description: "List of instances to strip banners from",
1543 suggestions: ["example.com", "*.example.com"]
1544 },
1545 %{
1546 key: :reject_deletes,
1547 type: {:list, :string},
1548 description: "List of instances to reject deletions from",
1549 suggestions: ["example.com", "*.example.com"]
1550 }
1551 ]
1552 },
1553 %{
1554 group: :pleroma,
1555 key: :mrf_activity_expiration,
1556 tab: :mrf,
1557 related_policy: "Pleroma.Web.ActivityPub.MRF.ActivityExpirationPolicy",
1558 label: "MRF Activity Expiration Policy",
1559 type: :group,
1560 description: "Adds automatic expiration to all local activities",
1561 children: [
1562 %{
1563 key: :days,
1564 type: :integer,
1565 description: "Default global expiration time for all local activities (in days)",
1566 suggestions: [90, 365]
1567 }
1568 ]
1569 },
1570 %{
1571 group: :pleroma,
1572 key: :mrf_subchain,
1573 tab: :mrf,
1574 related_policy: "Pleroma.Web.ActivityPub.MRF.SubchainPolicy",
1575 label: "MRF Subchain",
1576 type: :group,
1577 description:
1578 "This policy processes messages through an alternate pipeline when a given message matches certain criteria." <>
1579 " All criteria are configured as a map of regular expressions to lists of policy modules.",
1580 children: [
1581 %{
1582 key: :match_actor,
1583 type: {:map, {:list, :string}},
1584 description: "Matches a series of regular expressions against the actor field",
1585 suggestions: [
1586 %{
1587 ~r/https:\/\/example.com/s => [Pleroma.Web.ActivityPub.MRF.DropPolicy]
1588 }
1589 ]
1590 }
1591 ]
1592 },
1593 %{
1594 group: :pleroma,
1595 key: :mrf_rejectnonpublic,
1596 tab: :mrf,
1597 related_policy: "Pleroma.Web.ActivityPub.MRF.RejectNonPublic",
1598 description: "RejectNonPublic drops posts with non-public visibility settings.",
1599 label: "MRF Reject Non Public",
1600 type: :group,
1601 children: [
1602 %{
1603 key: :allow_followersonly,
1604 label: "Allow followers-only",
1605 type: :boolean,
1606 description: "Whether to allow followers-only posts"
1607 },
1608 %{
1609 key: :allow_direct,
1610 type: :boolean,
1611 description: "Whether to allow direct messages"
1612 }
1613 ]
1614 },
1615 %{
1616 group: :pleroma,
1617 key: :mrf_hellthread,
1618 tab: :mrf,
1619 related_policy: "Pleroma.Web.ActivityPub.MRF.HellthreadPolicy",
1620 label: "MRF Hellthread",
1621 type: :group,
1622 description: "Block messages with excessive user mentions",
1623 children: [
1624 %{
1625 key: :delist_threshold,
1626 type: :integer,
1627 description:
1628 "Number of mentioned users after which the message gets removed from timelines and" <>
1629 "disables notifications. Set to 0 to disable.",
1630 suggestions: [10]
1631 },
1632 %{
1633 key: :reject_threshold,
1634 type: :integer,
1635 description:
1636 "Number of mentioned users after which the messaged gets rejected. Set to 0 to disable.",
1637 suggestions: [20]
1638 }
1639 ]
1640 },
1641 %{
1642 group: :pleroma,
1643 key: :mrf_keyword,
1644 tab: :mrf,
1645 related_policy: "Pleroma.Web.ActivityPub.MRF.KeywordPolicy",
1646 label: "MRF Keyword",
1647 type: :group,
1648 description: "Reject or Word-Replace messages with a keyword or regex",
1649 children: [
1650 %{
1651 key: :reject,
1652 type: {:list, :string},
1653 description:
1654 "A list of patterns which result in message being rejected. Each pattern can be a string or a regular expression.",
1655 suggestions: ["foo", ~r/foo/iu]
1656 },
1657 %{
1658 key: :federated_timeline_removal,
1659 type: {:list, :string},
1660 description:
1661 "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.",
1662 suggestions: ["foo", ~r/foo/iu]
1663 },
1664 %{
1665 key: :replace,
1666 type: {:list, :tuple},
1667 description:
1668 "A list of tuples containing {pattern, replacement}. Each pattern can be a string or a regular expression.",
1669 suggestions: [{"foo", "bar"}, {~r/foo/iu, "bar"}]
1670 }
1671 ]
1672 },
1673 %{
1674 group: :pleroma,
1675 key: :mrf_mention,
1676 tab: :mrf,
1677 related_policy: "Pleroma.Web.ActivityPub.MRF.MentionPolicy",
1678 label: "MRF Mention",
1679 type: :group,
1680 description: "Block messages which mention a specific user",
1681 children: [
1682 %{
1683 key: :actors,
1684 type: {:list, :string},
1685 description: "A list of actors for which any post mentioning them will be dropped",
1686 suggestions: ["actor1", "actor2"]
1687 }
1688 ]
1689 },
1690 %{
1691 group: :pleroma,
1692 key: :mrf_vocabulary,
1693 tab: :mrf,
1694 related_policy: "Pleroma.Web.ActivityPub.MRF.VocabularyPolicy",
1695 label: "MRF Vocabulary",
1696 type: :group,
1697 description: "Filter messages which belong to certain activity vocabularies",
1698 children: [
1699 %{
1700 key: :accept,
1701 type: {:list, :string},
1702 description:
1703 "A list of ActivityStreams terms to accept. If empty, all supported messages are accepted.",
1704 suggestions: ["Create", "Follow", "Mention", "Announce", "Like"]
1705 },
1706 %{
1707 key: :reject,
1708 type: {:list, :string},
1709 description:
1710 "A list of ActivityStreams terms to reject. If empty, no messages are rejected.",
1711 suggestions: ["Create", "Follow", "Mention", "Announce", "Like"]
1712 }
1713 ]
1714 },
1715 # %{
1716 # group: :pleroma,
1717 # key: :mrf_user_allowlist,
1718 # tab: :mrf,
1719 # related_policy: "Pleroma.Web.ActivityPub.MRF.UserAllowListPolicy",
1720 # type: :map,
1721 # description:
1722 # "The keys in this section are the domain names that the policy should apply to." <>
1723 # " Each key should be assigned a list of users that should be allowed through by their ActivityPub ID",
1724 # suggestions: [
1725 # %{"example.org" => ["https://example.org/users/admin"]}
1726 # ]
1727 # ]
1728 # },
1729 %{
1730 group: :pleroma,
1731 key: :media_proxy,
1732 type: :group,
1733 description: "Media proxy",
1734 children: [
1735 %{
1736 key: :enabled,
1737 type: :boolean,
1738 description: "Enables proxying of remote media to the instance's proxy"
1739 },
1740 %{
1741 key: :base_url,
1742 label: "Base URL",
1743 type: :string,
1744 description:
1745 "The base URL to access a user-uploaded file. Useful when you want to proxy the media files via another host/CDN fronts.",
1746 suggestions: ["https://example.com"]
1747 },
1748 %{
1749 key: :invalidation,
1750 type: :keyword,
1751 descpiption: "",
1752 suggestions: [
1753 enabled: true,
1754 provider: Pleroma.Web.MediaProxy.Invalidation.Script
1755 ],
1756 children: [
1757 %{
1758 key: :enabled,
1759 type: :boolean,
1760 description: "Enables invalidate media cache"
1761 },
1762 %{
1763 key: :provider,
1764 type: :module,
1765 description: "Module which will be used to cache purge.",
1766 suggestions: [
1767 Pleroma.Web.MediaProxy.Invalidation.Script,
1768 Pleroma.Web.MediaProxy.Invalidation.Http
1769 ]
1770 }
1771 ]
1772 },
1773 %{
1774 key: :proxy_opts,
1775 label: "Proxy Options",
1776 type: :keyword,
1777 description: "Options for Pleroma.ReverseProxy",
1778 suggestions: [
1779 redirect_on_failure: false,
1780 max_body_length: 25 * 1_048_576,
1781 http: [
1782 follow_redirect: true,
1783 pool: :media
1784 ]
1785 ],
1786 children: [
1787 %{
1788 key: :redirect_on_failure,
1789 type: :boolean,
1790 description:
1791 "Redirects the client to the real remote URL if there's any HTTP errors. " <>
1792 "Any error during body processing will not be redirected as the response is chunked."
1793 },
1794 %{
1795 key: :max_body_length,
1796 type: :integer,
1797 description:
1798 "Limits the content length to be approximately the " <>
1799 "specified length. It is validated with the `content-length` header and also verified when proxying."
1800 },
1801 %{
1802 key: :http,
1803 label: "HTTP",
1804 type: :keyword,
1805 description: "HTTP options",
1806 children: [
1807 %{
1808 key: :adapter,
1809 type: :keyword,
1810 description: "Adapter specific options",
1811 children: [
1812 %{
1813 key: :ssl_options,
1814 type: :keyword,
1815 label: "SSL Options",
1816 description: "SSL options for HTTP adapter",
1817 children: [
1818 %{
1819 key: :versions,
1820 type: {:list, :atom},
1821 description: "List of TLS version to use",
1822 suggestions: [:tlsv1, ":tlsv1.1", ":tlsv1.2"]
1823 }
1824 ]
1825 }
1826 ]
1827 },
1828 %{
1829 key: :proxy_url,
1830 label: "Proxy URL",
1831 type: [:string, :tuple],
1832 description: "Proxy URL",
1833 suggestions: ["127.0.0.1:8123", {:socks5, :localhost, 9050}]
1834 }
1835 ]
1836 }
1837 ]
1838 },
1839 %{
1840 key: :whitelist,
1841 type: {:list, :string},
1842 description: "List of hosts with scheme to bypass the mediaproxy",
1843 suggestions: ["http://example.com"]
1844 }
1845 ]
1846 },
1847 %{
1848 group: :pleroma,
1849 key: Pleroma.Web.MediaProxy.Invalidation.Http,
1850 type: :group,
1851 description: "HTTP invalidate settings",
1852 children: [
1853 %{
1854 key: :method,
1855 type: :atom,
1856 description: "HTTP method of request. Default: :purge"
1857 },
1858 %{
1859 key: :headers,
1860 type: {:keyword, :string},
1861 description: "HTTP headers of request",
1862 suggestions: [{"x-refresh", 1}]
1863 },
1864 %{
1865 key: :options,
1866 type: :keyword,
1867 description: "Request options",
1868 children: [
1869 %{
1870 key: :params,
1871 type: {:map, :string}
1872 }
1873 ]
1874 }
1875 ]
1876 },
1877 %{
1878 group: :pleroma,
1879 key: Pleroma.Web.MediaProxy.Invalidation.Script,
1880 type: :group,
1881 description: "Script invalidate settings",
1882 children: [
1883 %{
1884 key: :script_path,
1885 type: :string,
1886 description: "Path to shell script. Which will run purge cache.",
1887 suggestions: ["./installation/nginx-cache-purge.sh.example"]
1888 }
1889 ]
1890 },
1891 %{
1892 group: :pleroma,
1893 key: :gopher,
1894 type: :group,
1895 description: "Gopher settings",
1896 children: [
1897 %{
1898 key: :enabled,
1899 type: :boolean,
1900 description: "Enables the gopher interface"
1901 },
1902 %{
1903 key: :ip,
1904 label: "IP",
1905 type: :tuple,
1906 description: "IP address to bind to",
1907 suggestions: [{0, 0, 0, 0}]
1908 },
1909 %{
1910 key: :port,
1911 type: :integer,
1912 description: "Port to bind to",
1913 suggestions: [9999]
1914 },
1915 %{
1916 key: :dstport,
1917 type: :integer,
1918 description: "Port advertised in URLs (optional, defaults to port)",
1919 suggestions: [9999]
1920 }
1921 ]
1922 },
1923 %{
1924 group: :pleroma,
1925 key: :activitypub,
1926 label: "ActivityPub",
1927 type: :group,
1928 description: "ActivityPub-related settings",
1929 children: [
1930 %{
1931 key: :unfollow_blocked,
1932 type: :boolean,
1933 description: "Whether blocks result in people getting unfollowed"
1934 },
1935 %{
1936 key: :outgoing_blocks,
1937 type: :boolean,
1938 description: "Whether to federate blocks to other instances"
1939 },
1940 %{
1941 key: :sign_object_fetches,
1942 type: :boolean,
1943 description: "Sign object fetches with HTTP signatures"
1944 },
1945 %{
1946 key: :note_replies_output_limit,
1947 type: :integer,
1948 description:
1949 "The number of Note replies' URIs to be included with outgoing federation (`5` to match Mastodon hardcoded value, `0` to disable the output)"
1950 },
1951 %{
1952 key: :follow_handshake_timeout,
1953 type: :integer,
1954 description: "Following handshake timeout",
1955 suggestions: [500]
1956 }
1957 ]
1958 },
1959 %{
1960 group: :pleroma,
1961 key: :http_security,
1962 label: "HTTP security",
1963 type: :group,
1964 description: "HTTP security settings",
1965 children: [
1966 %{
1967 key: :enabled,
1968 type: :boolean,
1969 description: "Whether the managed content security policy is enabled"
1970 },
1971 %{
1972 key: :sts,
1973 label: "STS",
1974 type: :boolean,
1975 description: "Whether to additionally send a Strict-Transport-Security header"
1976 },
1977 %{
1978 key: :sts_max_age,
1979 label: "STS max age",
1980 type: :integer,
1981 description: "The maximum age for the Strict-Transport-Security header if sent",
1982 suggestions: [31_536_000]
1983 },
1984 %{
1985 key: :ct_max_age,
1986 label: "CT max age",
1987 type: :integer,
1988 description: "The maximum age for the Expect-CT header if sent",
1989 suggestions: [2_592_000]
1990 },
1991 %{
1992 key: :referrer_policy,
1993 type: :string,
1994 description: "The referrer policy to use, either \"same-origin\" or \"no-referrer\"",
1995 suggestions: ["same-origin", "no-referrer"]
1996 },
1997 %{
1998 key: :report_uri,
1999 label: "Report URI",
2000 type: :string,
2001 description: "Adds the specified URL to report-uri and report-to group in CSP header",
2002 suggestions: ["https://example.com/report-uri"]
2003 }
2004 ]
2005 },
2006 %{
2007 group: :web_push_encryption,
2008 key: :vapid_details,
2009 label: "Vapid Details",
2010 type: :group,
2011 description:
2012 "Web Push Notifications configuration. You can use the mix task mix web_push.gen.keypair to generate it.",
2013 children: [
2014 %{
2015 key: :subject,
2016 type: :string,
2017 description:
2018 "A mailto link for the administrative contact." <>
2019 " It's best if this email is not a personal email address, but rather a group email to the instance moderation team.",
2020 suggestions: ["mailto:moderators@pleroma.com"]
2021 },
2022 %{
2023 key: :public_key,
2024 type: :string,
2025 description: "VAPID public key",
2026 suggestions: ["Public key"]
2027 },
2028 %{
2029 key: :private_key,
2030 type: :string,
2031 description: "VAPID private key",
2032 suggestions: ["Private key"]
2033 }
2034 ]
2035 },
2036 %{
2037 group: :pleroma,
2038 key: Pleroma.Captcha,
2039 type: :group,
2040 description: "Captcha-related settings",
2041 children: [
2042 %{
2043 key: :enabled,
2044 type: :boolean,
2045 description: "Whether the captcha should be shown on registration"
2046 },
2047 %{
2048 key: :method,
2049 type: :module,
2050 description: "The method/service to use for captcha",
2051 suggestions: [Pleroma.Captcha.Kocaptcha, Pleroma.Captcha.Native]
2052 },
2053 %{
2054 key: :seconds_valid,
2055 type: :integer,
2056 description: "The time in seconds for which the captcha is valid",
2057 suggestions: [60]
2058 }
2059 ]
2060 },
2061 %{
2062 group: :pleroma,
2063 key: Pleroma.Captcha.Kocaptcha,
2064 type: :group,
2065 description:
2066 "Kocaptcha is a very simple captcha service with a single API endpoint, the source code is" <>
2067 " here: https://github.com/koto-bank/kocaptcha. The default endpoint (https://captcha.kotobank.ch) is hosted by the developer.",
2068 children: [
2069 %{
2070 key: :endpoint,
2071 type: :string,
2072 description: "The kocaptcha endpoint to use",
2073 suggestions: ["https://captcha.kotobank.ch"]
2074 }
2075 ]
2076 },
2077 %{
2078 group: :pleroma,
2079 label: "Pleroma Admin Token",
2080 type: :group,
2081 description:
2082 "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)",
2083 children: [
2084 %{
2085 key: :admin_token,
2086 type: :string,
2087 description: "Admin token",
2088 suggestions: [
2089 "Please use a high entropy string or UUID"
2090 ]
2091 }
2092 ]
2093 },
2094 %{
2095 group: :pleroma,
2096 key: Oban,
2097 type: :group,
2098 description: """
2099 [Oban](https://github.com/sorentwo/oban) asynchronous job processor configuration.
2100
2101 Note: if you are running PostgreSQL in [`silent_mode`](https://postgresqlco.nf/en/doc/param/silent_mode?version=9.1),
2102 it's advised to set [`log_destination`](https://postgresqlco.nf/en/doc/param/log_destination?version=9.1) to `syslog`,
2103 otherwise `postmaster.log` file may grow because of "you don't own a lock of type ShareLock" warnings
2104 (see https://github.com/sorentwo/oban/issues/52).
2105 """,
2106 children: [
2107 %{
2108 key: :log,
2109 type: {:dropdown, :atom},
2110 description: "Logs verbose mode",
2111 suggestions: [false, :error, :warn, :info, :debug]
2112 },
2113 %{
2114 key: :queues,
2115 type: {:keyword, :integer},
2116 description:
2117 "Background jobs queues (keys: queues, values: max numbers of concurrent jobs)",
2118 suggestions: [
2119 activity_expiration: 10,
2120 attachments_cleanup: 5,
2121 background: 5,
2122 federator_incoming: 50,
2123 federator_outgoing: 50,
2124 mailer: 10,
2125 scheduled_activities: 10,
2126 transmogrifier: 20,
2127 web_push: 50
2128 ],
2129 children: [
2130 %{
2131 key: :activity_expiration,
2132 type: :integer,
2133 description: "Activity expiration queue",
2134 suggestions: [10]
2135 },
2136 %{
2137 key: :attachments_cleanup,
2138 type: :integer,
2139 description: "Attachment deletion queue",
2140 suggestions: [5]
2141 },
2142 %{
2143 key: :background,
2144 type: :integer,
2145 description: "Background queue",
2146 suggestions: [5]
2147 },
2148 %{
2149 key: :federator_incoming,
2150 type: :integer,
2151 description: "Incoming federation queue",
2152 suggestions: [50]
2153 },
2154 %{
2155 key: :federator_outgoing,
2156 type: :integer,
2157 description: "Outgoing federation queue",
2158 suggestions: [50]
2159 },
2160 %{
2161 key: :mailer,
2162 type: :integer,
2163 description: "Email sender queue, see Pleroma.Emails.Mailer",
2164 suggestions: [10]
2165 },
2166 %{
2167 key: :scheduled_activities,
2168 type: :integer,
2169 description: "Scheduled activities queue, see Pleroma.ScheduledActivities",
2170 suggestions: [10]
2171 },
2172 %{
2173 key: :transmogrifier,
2174 type: :integer,
2175 description: "Transmogrifier queue",
2176 suggestions: [20]
2177 },
2178 %{
2179 key: :web_push,
2180 type: :integer,
2181 description: "Web push notifications queue",
2182 suggestions: [50]
2183 }
2184 ]
2185 },
2186 %{
2187 key: :crontab,
2188 type: {:list, :tuple},
2189 description: "Settings for cron background jobs",
2190 suggestions: [
2191 {"0 0 * * *", Pleroma.Workers.Cron.ClearOauthTokenWorker},
2192 {"0 * * * *", Pleroma.Workers.Cron.StatsWorker},
2193 {"* * * * *", Pleroma.Workers.Cron.PurgeExpiredActivitiesWorker},
2194 {"0 0 * * 0", Pleroma.Workers.Cron.DigestEmailsWorker},
2195 {"0 0 * * *", Pleroma.Workers.Cron.NewUsersDigestWorker}
2196 ]
2197 }
2198 ]
2199 },
2200 %{
2201 group: :pleroma,
2202 key: :workers,
2203 type: :group,
2204 description: "Includes custom worker options not interpretable directly by `Oban`",
2205 children: [
2206 %{
2207 key: :retries,
2208 type: {:keyword, :integer},
2209 description: "Max retry attempts for failed jobs, per `Oban` queue",
2210 suggestions: [
2211 federator_incoming: 5,
2212 federator_outgoing: 5
2213 ]
2214 }
2215 ]
2216 },
2217 %{
2218 group: :pleroma,
2219 key: Pleroma.Web.Metadata,
2220 type: :group,
2221 description: "Metadata-related settings",
2222 children: [
2223 %{
2224 key: :providers,
2225 type: {:list, :module},
2226 description: "List of metadata providers to enable",
2227 suggestions: [
2228 Pleroma.Web.Metadata.Providers.OpenGraph,
2229 Pleroma.Web.Metadata.Providers.TwitterCard,
2230 Pleroma.Web.Metadata.Providers.RelMe,
2231 Pleroma.Web.Metadata.Providers.Feed
2232 ]
2233 },
2234 %{
2235 key: :unfurl_nsfw,
2236 label: "Unfurl NSFW",
2237 type: :boolean,
2238 description: "When enabled NSFW attachments will be shown in previews"
2239 }
2240 ]
2241 },
2242 %{
2243 group: :pleroma,
2244 key: :rich_media,
2245 type: :group,
2246 description:
2247 "If enabled the instance will parse metadata from attached links to generate link previews",
2248 children: [
2249 %{
2250 key: :enabled,
2251 type: :boolean,
2252 description: "Enables RichMedia parsing of URLs"
2253 },
2254 %{
2255 key: :ignore_hosts,
2256 type: {:list, :string},
2257 description: "List of hosts which will be ignored by the metadata parser",
2258 suggestions: ["accounts.google.com", "xss.website"]
2259 },
2260 %{
2261 key: :ignore_tld,
2262 label: "Ignore TLD",
2263 type: {:list, :string},
2264 description: "List TLDs (top-level domains) which will ignore for parse metadata",
2265 suggestions: ["local", "localdomain", "lan"]
2266 },
2267 %{
2268 key: :parsers,
2269 type: {:list, :module},
2270 description:
2271 "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.",
2272 suggestions: [
2273 Pleroma.Web.RichMedia.Parsers.OEmbed,
2274 Pleroma.Web.RichMedia.Parsers.TwitterCard
2275 ]
2276 },
2277 %{
2278 key: :ttl_setters,
2279 label: "TTL setters",
2280 type: {:list, :module},
2281 description:
2282 "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.",
2283 suggestions: [
2284 Pleroma.Web.RichMedia.Parser.TTL.AwsSignedUrl
2285 ]
2286 }
2287 ]
2288 },
2289 %{
2290 group: :pleroma,
2291 key: Pleroma.Formatter,
2292 label: "Auto Linker",
2293 type: :group,
2294 description:
2295 "Configuration for Pleroma's link formatter which parses mentions, hashtags, and URLs.",
2296 children: [
2297 %{
2298 key: :class,
2299 type: [:string, :boolean],
2300 description: "Specify the class to be added to the generated link. Disable to clear.",
2301 suggestions: ["auto-linker", false]
2302 },
2303 %{
2304 key: :rel,
2305 type: [:string, :boolean],
2306 description: "Override the rel attribute. Disable to clear.",
2307 suggestions: ["ugc", "noopener noreferrer", false]
2308 },
2309 %{
2310 key: :new_window,
2311 type: :boolean,
2312 description: "Link URLs will open in a new window/tab."
2313 },
2314 %{
2315 key: :truncate,
2316 type: [:integer, :boolean],
2317 description:
2318 "Set to a number to truncate URLs longer than the number. Truncated URLs will end in `...`",
2319 suggestions: [15, false]
2320 },
2321 %{
2322 key: :strip_prefix,
2323 type: :boolean,
2324 description: "Strip the scheme prefix."
2325 },
2326 %{
2327 key: :extra,
2328 type: :boolean,
2329 description: "Link URLs with rarely used schemes (magnet, ipfs, irc, etc.)"
2330 },
2331 %{
2332 key: :validate_tld,
2333 type: [:atom, :boolean],
2334 description:
2335 "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)",
2336 suggestions: [:no_scheme, true]
2337 }
2338 ]
2339 },
2340 %{
2341 group: :pleroma,
2342 key: Pleroma.ScheduledActivity,
2343 type: :group,
2344 description: "Scheduled activities settings",
2345 children: [
2346 %{
2347 key: :daily_user_limit,
2348 type: :integer,
2349 description:
2350 "The number of scheduled activities a user is allowed to create in a single day. Default: 25.",
2351 suggestions: [25]
2352 },
2353 %{
2354 key: :total_user_limit,
2355 type: :integer,
2356 description:
2357 "The number of scheduled activities a user is allowed to create in total. Default: 300.",
2358 suggestions: [300]
2359 },
2360 %{
2361 key: :enabled,
2362 type: :boolean,
2363 description: "Whether scheduled activities are sent to the job queue to be executed"
2364 }
2365 ]
2366 },
2367 %{
2368 group: :pleroma,
2369 key: Pleroma.ActivityExpiration,
2370 type: :group,
2371 description: "Expired activity settings",
2372 children: [
2373 %{
2374 key: :enabled,
2375 type: :boolean,
2376 description: "Whether expired activities will be sent to the job queue to be deleted"
2377 }
2378 ]
2379 },
2380 %{
2381 group: :pleroma,
2382 label: "Pleroma Authenticator",
2383 type: :group,
2384 description: "Authenticator",
2385 children: [
2386 %{
2387 key: Pleroma.Web.Auth.Authenticator,
2388 type: :module,
2389 suggestions: [Pleroma.Web.Auth.PleromaAuthenticator, Pleroma.Web.Auth.LDAPAuthenticator]
2390 }
2391 ]
2392 },
2393 %{
2394 group: :pleroma,
2395 key: :ldap,
2396 label: "LDAP",
2397 type: :group,
2398 description:
2399 "Use LDAP for user authentication. When a user logs in to the Pleroma instance, the name and password" <>
2400 " will be verified by trying to authenticate (bind) to a LDAP server." <>
2401 " If a user exists in the LDAP directory but there is no account with the same name yet on the" <>
2402 " Pleroma instance then a new Pleroma account will be created with the same name as the LDAP user name.",
2403 children: [
2404 %{
2405 key: :enabled,
2406 type: :boolean,
2407 description: "Enables LDAP authentication"
2408 },
2409 %{
2410 key: :host,
2411 type: :string,
2412 description: "LDAP server hostname",
2413 suggestions: ["localhosts"]
2414 },
2415 %{
2416 key: :port,
2417 type: :integer,
2418 description: "LDAP port, e.g. 389 or 636",
2419 suggestions: [389, 636]
2420 },
2421 %{
2422 key: :ssl,
2423 label: "SSL",
2424 type: :boolean,
2425 description: "Enable to use SSL, usually implies the port 636"
2426 },
2427 %{
2428 key: :sslopts,
2429 label: "SSL options",
2430 type: :keyword,
2431 description: "Additional SSL options",
2432 suggestions: [cacertfile: "path/to/file/with/PEM/cacerts", verify: :verify_peer],
2433 children: [
2434 %{
2435 key: :cacertfile,
2436 type: :string,
2437 description: "Path to file with PEM encoded cacerts",
2438 suggestions: ["path/to/file/with/PEM/cacerts"]
2439 },
2440 %{
2441 key: :verify,
2442 type: :atom,
2443 description: "Type of cert verification",
2444 suggestions: [:verify_peer]
2445 }
2446 ]
2447 },
2448 %{
2449 key: :tls,
2450 label: "TLS",
2451 type: :boolean,
2452 description: "Enable to use STARTTLS, usually implies the port 389"
2453 },
2454 %{
2455 key: :tlsopts,
2456 label: "TLS options",
2457 type: :keyword,
2458 description: "Additional TLS options",
2459 suggestions: [cacertfile: "path/to/file/with/PEM/cacerts", verify: :verify_peer],
2460 children: [
2461 %{
2462 key: :cacertfile,
2463 type: :string,
2464 description: "Path to file with PEM encoded cacerts",
2465 suggestions: ["path/to/file/with/PEM/cacerts"]
2466 },
2467 %{
2468 key: :verify,
2469 type: :atom,
2470 description: "Type of cert verification",
2471 suggestions: [:verify_peer]
2472 }
2473 ]
2474 },
2475 %{
2476 key: :base,
2477 type: :string,
2478 description: "LDAP base, e.g. \"dc=example,dc=com\"",
2479 suggestions: ["dc=example,dc=com"]
2480 },
2481 %{
2482 key: :uid,
2483 label: "UID",
2484 type: :string,
2485 description:
2486 "LDAP attribute name to authenticate the user, e.g. when \"cn\", the filter will be \"cn=username,base\"",
2487 suggestions: ["cn"]
2488 }
2489 ]
2490 },
2491 %{
2492 group: :pleroma,
2493 key: :auth,
2494 type: :group,
2495 description: "Authentication / authorization settings",
2496 children: [
2497 %{
2498 key: :enforce_oauth_admin_scope_usage,
2499 label: "Enforce OAuth admin scope usage",
2500 type: :boolean,
2501 description:
2502 "OAuth admin scope requirement toggle. " <>
2503 "If enabled, admin actions explicitly demand admin OAuth scope(s) presence in OAuth token " <>
2504 "(client app must support admin scopes). If disabled and token doesn't have admin scope(s), " <>
2505 "`is_admin` user flag grants access to admin-specific actions."
2506 },
2507 %{
2508 key: :auth_template,
2509 type: :string,
2510 description:
2511 "Authentication form template. By default it's `show.html` which corresponds to `lib/pleroma/web/templates/o_auth/o_auth/show.html.ee`.",
2512 suggestions: ["show.html"]
2513 },
2514 %{
2515 key: :oauth_consumer_template,
2516 label: "OAuth consumer template",
2517 type: :string,
2518 description:
2519 "OAuth consumer mode authentication form template. By default it's `consumer.html` which corresponds to" <>
2520 " `lib/pleroma/web/templates/o_auth/o_auth/consumer.html.eex`.",
2521 suggestions: ["consumer.html"]
2522 },
2523 %{
2524 key: :oauth_consumer_strategies,
2525 label: "OAuth consumer strategies",
2526 type: {:list, :string},
2527 description:
2528 "The list of enabled OAuth consumer strategies. By default it's set by OAUTH_CONSUMER_STRATEGIES environment variable." <>
2529 " Each entry in this space-delimited string should be of format \"strategy\" or \"strategy:dependency\"" <>
2530 " (e.g. twitter or keycloak:ueberauth_keycloak_strategy in case dependency is named differently than ueberauth_<strategy>).",
2531 suggestions: ["twitter", "keycloak:ueberauth_keycloak_strategy"]
2532 }
2533 ]
2534 },
2535 %{
2536 group: :pleroma,
2537 key: :email_notifications,
2538 type: :group,
2539 description: "Email notifications settings",
2540 children: [
2541 %{
2542 key: :digest,
2543 type: :map,
2544 description:
2545 "emails of \"what you've missed\" for users who have been inactive for a while",
2546 suggestions: [
2547 %{
2548 active: false,
2549 schedule: "0 0 * * 0",
2550 interval: 7,
2551 inactivity_threshold: 7
2552 }
2553 ],
2554 children: [
2555 %{
2556 key: :active,
2557 label: "Enabled",
2558 type: :boolean,
2559 description: "Globally enable or disable digest emails"
2560 },
2561 %{
2562 key: :schedule,
2563 type: :string,
2564 description:
2565 "When to send digest email, in crontab format. \"0 0 0\" is the default, meaning \"once a week at midnight on Sunday morning\".",
2566 suggestions: ["0 0 * * 0"]
2567 },
2568 %{
2569 key: :interval,
2570 type: :integer,
2571 description: "Minimum interval between digest emails to one user",
2572 suggestions: [7]
2573 },
2574 %{
2575 key: :inactivity_threshold,
2576 type: :integer,
2577 description: "Minimum user inactivity threshold",
2578 suggestions: [7]
2579 }
2580 ]
2581 }
2582 ]
2583 },
2584 %{
2585 group: :pleroma,
2586 key: Pleroma.Emails.UserEmail,
2587 type: :group,
2588 description: "Email template settings",
2589 children: [
2590 %{
2591 key: :logo,
2592 type: :string,
2593 description: "A path to a custom logo. Set it to `nil` to use the default Pleroma logo.",
2594 suggestions: ["some/path/logo.png"]
2595 },
2596 %{
2597 key: :styling,
2598 type: :map,
2599 description: "A map with color settings for email templates.",
2600 suggestions: [
2601 %{
2602 link_color: "#d8a070",
2603 background_color: "#2C3645",
2604 content_background_color: "#1B2635",
2605 header_color: "#d8a070",
2606 text_color: "#b9b9ba",
2607 text_muted_color: "#b9b9ba"
2608 }
2609 ],
2610 children: [
2611 %{
2612 key: :link_color,
2613 type: :string,
2614 suggestions: ["#d8a070"]
2615 },
2616 %{
2617 key: :background_color,
2618 type: :string,
2619 suggestions: ["#2C3645"]
2620 },
2621 %{
2622 key: :content_background_color,
2623 type: :string,
2624 suggestions: ["#1B2635"]
2625 },
2626 %{
2627 key: :header_color,
2628 type: :string,
2629 suggestions: ["#d8a070"]
2630 },
2631 %{
2632 key: :text_color,
2633 type: :string,
2634 suggestions: ["#b9b9ba"]
2635 },
2636 %{
2637 key: :text_muted_color,
2638 type: :string,
2639 suggestions: ["#b9b9ba"]
2640 }
2641 ]
2642 }
2643 ]
2644 },
2645 %{
2646 group: :pleroma,
2647 key: Pleroma.Emails.NewUsersDigestEmail,
2648 type: :group,
2649 description: "New users admin email digest",
2650 children: [
2651 %{
2652 key: :enabled,
2653 type: :boolean,
2654 description: "Enables new users admin digest email when `true`"
2655 }
2656 ]
2657 },
2658 %{
2659 group: :pleroma,
2660 key: :oauth2,
2661 label: "OAuth2",
2662 type: :group,
2663 description: "Configure OAuth 2 provider capabilities",
2664 children: [
2665 %{
2666 key: :token_expires_in,
2667 type: :integer,
2668 description: "The lifetime in seconds of the access token",
2669 suggestions: [600]
2670 },
2671 %{
2672 key: :issue_new_refresh_token,
2673 type: :boolean,
2674 description:
2675 "Keeps old refresh token or generate new refresh token when to obtain an access token"
2676 },
2677 %{
2678 key: :clean_expired_tokens,
2679 type: :boolean,
2680 description: "Enable a background job to clean expired OAuth tokens. Default: disabled."
2681 }
2682 ]
2683 },
2684 %{
2685 group: :pleroma,
2686 key: :emoji,
2687 type: :group,
2688 children: [
2689 %{
2690 key: :shortcode_globs,
2691 type: {:list, :string},
2692 description: "Location of custom emoji files. * can be used as a wildcard.",
2693 suggestions: ["/emoji/custom/**/*.png"]
2694 },
2695 %{
2696 key: :pack_extensions,
2697 type: {:list, :string},
2698 description:
2699 "A list of file extensions for emojis, when no emoji.txt for a pack is present",
2700 suggestions: [".png", ".gif"]
2701 },
2702 %{
2703 key: :groups,
2704 type: {:keyword, {:list, :string}},
2705 description:
2706 "Emojis are ordered in groups (tags). This is an array of key-value pairs where the key is the group name" <>
2707 " and the value is the location or array of locations. * can be used as a wildcard.",
2708 suggestions: [
2709 Custom: ["/emoji/*.png", "/emoji/**/*.png"]
2710 ]
2711 },
2712 %{
2713 key: :default_manifest,
2714 type: :string,
2715 description:
2716 "Location of the JSON-manifest. This manifest contains information about the emoji-packs you can download." <>
2717 " Currently only one manifest can be added (no arrays).",
2718 suggestions: ["https://git.pleroma.social/pleroma/emoji-index/raw/master/index.json"]
2719 },
2720 %{
2721 key: :shared_pack_cache_seconds_per_file,
2722 label: "Shared pack cache s/file",
2723 type: :integer,
2724 descpiption:
2725 "When an emoji pack is shared, the archive is created and cached in memory" <>
2726 " for this amount of seconds multiplied by the number of files.",
2727 suggestions: [60]
2728 }
2729 ]
2730 },
2731 %{
2732 group: :pleroma,
2733 key: :rate_limit,
2734 type: :group,
2735 description:
2736 "Rate limit settings. This is an advanced feature enabled only for :authentication by default.",
2737 children: [
2738 %{
2739 key: :search,
2740 type: [:tuple, {:list, :tuple}],
2741 description: "For the search requests (account & status search etc.)",
2742 suggestions: [{1000, 10}, [{10_000, 10}, {10_000, 50}]]
2743 },
2744 %{
2745 key: :timeline,
2746 type: [:tuple, {:list, :tuple}],
2747 description: "For requests to timelines (each timeline has it's own limiter)",
2748 suggestions: [{1000, 10}, [{10_000, 10}, {10_000, 50}]]
2749 },
2750 %{
2751 key: :app_account_creation,
2752 type: [:tuple, {:list, :tuple}],
2753 description: "For registering user accounts from the same IP address",
2754 suggestions: [{1000, 10}, [{10_000, 10}, {10_000, 50}]]
2755 },
2756 %{
2757 key: :relations_actions,
2758 type: [:tuple, {:list, :tuple}],
2759 description: "For actions on relationships with all users (follow, unfollow)",
2760 suggestions: [{1000, 10}, [{10_000, 10}, {10_000, 50}]]
2761 },
2762 %{
2763 key: :relation_id_action,
2764 label: "Relation ID action",
2765 type: [:tuple, {:list, :tuple}],
2766 description: "For actions on relation with a specific user (follow, unfollow)",
2767 suggestions: [{1000, 10}, [{10_000, 10}, {10_000, 50}]]
2768 },
2769 %{
2770 key: :statuses_actions,
2771 type: [:tuple, {:list, :tuple}],
2772 description:
2773 "For create / delete / fav / unfav / reblog / unreblog actions on any statuses",
2774 suggestions: [{1000, 10}, [{10_000, 10}, {10_000, 50}]]
2775 },
2776 %{
2777 key: :status_id_action,
2778 label: "Status ID action",
2779 type: [:tuple, {:list, :tuple}],
2780 description:
2781 "For fav / unfav or reblog / unreblog actions on the same status by the same user",
2782 suggestions: [{1000, 10}, [{10_000, 10}, {10_000, 50}]]
2783 },
2784 %{
2785 key: :authentication,
2786 type: [:tuple, {:list, :tuple}],
2787 description: "For authentication create / password check / user existence check requests",
2788 suggestions: [{60_000, 15}]
2789 }
2790 ]
2791 },
2792 %{
2793 group: :esshd,
2794 label: "ESSHD",
2795 type: :group,
2796 description:
2797 "Before enabling this you must add :esshd to mix.exs as one of the extra_applications " <>
2798 "and generate host keys in your priv dir with ssh-keygen -m PEM -N \"\" -b 2048 -t rsa -f ssh_host_rsa_key",
2799 children: [
2800 %{
2801 key: :enabled,
2802 type: :boolean,
2803 description: "Enables SSH"
2804 },
2805 %{
2806 key: :priv_dir,
2807 type: :string,
2808 description: "Dir with SSH keys",
2809 suggestions: ["/some/path/ssh_keys"]
2810 },
2811 %{
2812 key: :handler,
2813 type: :string,
2814 description: "Handler module",
2815 suggestions: ["Pleroma.BBS.Handler"]
2816 },
2817 %{
2818 key: :port,
2819 type: :integer,
2820 description: "Port to connect",
2821 suggestions: [10_022]
2822 },
2823 %{
2824 key: :password_authenticator,
2825 type: :string,
2826 description: "Authenticator module",
2827 suggestions: ["Pleroma.BBS.Authenticator"]
2828 }
2829 ]
2830 },
2831 %{
2832 group: :mime,
2833 label: "Mime Types",
2834 type: :group,
2835 description: "Mime Types settings",
2836 children: [
2837 %{
2838 key: :types,
2839 type: :map,
2840 suggestions: [
2841 %{
2842 "application/xml" => ["xml"],
2843 "application/xrd+xml" => ["xrd+xml"],
2844 "application/jrd+json" => ["jrd+json"],
2845 "application/activity+json" => ["activity+json"],
2846 "application/ld+json" => ["activity+json"]
2847 }
2848 ],
2849 children: [
2850 %{
2851 key: "application/xml",
2852 type: {:list, :string},
2853 suggestions: ["xml"]
2854 },
2855 %{
2856 key: "application/xrd+xml",
2857 type: {:list, :string},
2858 suggestions: ["xrd+xml"]
2859 },
2860 %{
2861 key: "application/jrd+json",
2862 type: {:list, :string},
2863 suggestions: ["jrd+json"]
2864 },
2865 %{
2866 key: "application/activity+json",
2867 type: {:list, :string},
2868 suggestions: ["activity+json"]
2869 },
2870 %{
2871 key: "application/ld+json",
2872 type: {:list, :string},
2873 suggestions: ["activity+json"]
2874 }
2875 ]
2876 }
2877 ]
2878 },
2879 %{
2880 group: :pleroma,
2881 key: :chat,
2882 type: :group,
2883 description: "Pleroma chat settings",
2884 children: [
2885 %{
2886 key: :enabled,
2887 type: :boolean
2888 }
2889 ]
2890 },
2891 %{
2892 group: :pleroma,
2893 key: :http,
2894 label: "HTTP",
2895 type: :group,
2896 description: "HTTP settings",
2897 children: [
2898 %{
2899 key: :proxy_url,
2900 label: "Proxy URL",
2901 type: [:string, :tuple],
2902 description: "Proxy URL",
2903 suggestions: ["localhost:9020", {:socks5, :localhost, 3090}]
2904 },
2905 %{
2906 key: :send_user_agent,
2907 type: :boolean
2908 },
2909 %{
2910 key: :user_agent,
2911 type: [:string, :atom],
2912 description:
2913 "What user agent to use. Must be a string or an atom `:default`. Default value is `:default`.",
2914 suggestions: ["Pleroma", :default]
2915 },
2916 %{
2917 key: :adapter,
2918 type: :keyword,
2919 description: "Adapter specific options",
2920 suggestions: [],
2921 children: [
2922 %{
2923 key: :ssl_options,
2924 type: :keyword,
2925 label: "SSL Options",
2926 description: "SSL options for HTTP adapter",
2927 children: [
2928 %{
2929 key: :versions,
2930 type: {:list, :atom},
2931 description: "List of TLS version to use",
2932 suggestions: [:tlsv1, ":tlsv1.1", ":tlsv1.2"]
2933 }
2934 ]
2935 }
2936 ]
2937 }
2938 ]
2939 },
2940 %{
2941 group: :pleroma,
2942 key: :markup,
2943 label: "Markup Settings",
2944 type: :group,
2945 children: [
2946 %{
2947 key: :allow_inline_images,
2948 type: :boolean
2949 },
2950 %{
2951 key: :allow_headings,
2952 type: :boolean
2953 },
2954 %{
2955 key: :allow_tables,
2956 type: :boolean
2957 },
2958 %{
2959 key: :allow_fonts,
2960 type: :boolean
2961 },
2962 %{
2963 key: :scrub_policy,
2964 type: {:list, :module},
2965 description:
2966 "Module names are shortened (removed leading `Pleroma.HTML.` part), but on adding custom module you need to use full name.",
2967 suggestions: [Pleroma.HTML.Transform.MediaProxy, Pleroma.HTML.Scrubber.Default]
2968 }
2969 ]
2970 },
2971 %{
2972 group: :pleroma,
2973 key: :user,
2974 type: :group,
2975 children: [
2976 %{
2977 key: :deny_follow_blocked,
2978 type: :boolean
2979 }
2980 ]
2981 },
2982 %{
2983 group: :pleroma,
2984 key: :mrf_normalize_markup,
2985 tab: :mrf,
2986 related_policy: "Pleroma.Web.ActivityPub.MRF.NormalizeMarkup",
2987 label: "MRF Normalize Markup",
2988 description: "MRF NormalizeMarkup settings. Scrub configured hypertext markup.",
2989 type: :group,
2990 children: [
2991 %{
2992 key: :scrub_policy,
2993 type: :module,
2994 suggestions: [Pleroma.HTML.Scrubber.Default]
2995 }
2996 ]
2997 },
2998 %{
2999 group: :pleroma,
3000 key: Pleroma.User,
3001 type: :group,
3002 children: [
3003 %{
3004 key: :restricted_nicknames,
3005 type: {:list, :string},
3006 suggestions: [
3007 ".well-known",
3008 "~",
3009 "about",
3010 "activities",
3011 "api",
3012 "auth",
3013 "check_password",
3014 "dev",
3015 "friend-requests",
3016 "inbox",
3017 "internal",
3018 "main",
3019 "media",
3020 "nodeinfo",
3021 "notice",
3022 "oauth",
3023 "objects",
3024 "ostatus_subscribe",
3025 "pleroma",
3026 "proxy",
3027 "push",
3028 "registration",
3029 "relay",
3030 "settings",
3031 "status",
3032 "tag",
3033 "user-search",
3034 "user_exists",
3035 "users",
3036 "web"
3037 ]
3038 }
3039 ]
3040 },
3041 %{
3042 group: :cors_plug,
3043 label: "CORS plug config",
3044 type: :group,
3045 children: [
3046 %{
3047 key: :max_age,
3048 type: :integer,
3049 suggestions: [86_400]
3050 },
3051 %{
3052 key: :methods,
3053 type: {:list, :string},
3054 suggestions: ["POST", "PUT", "DELETE", "GET", "PATCH", "OPTIONS"]
3055 },
3056 %{
3057 key: :expose,
3058 type: {:list, :string},
3059 suggestions: [
3060 "Link",
3061 "X-RateLimit-Reset",
3062 "X-RateLimit-Limit",
3063 "X-RateLimit-Remaining",
3064 "X-Request-Id",
3065 "Idempotency-Key"
3066 ]
3067 },
3068 %{
3069 key: :credentials,
3070 type: :boolean
3071 },
3072 %{
3073 key: :headers,
3074 type: {:list, :string},
3075 suggestions: ["Authorization", "Content-Type", "Idempotency-Key"]
3076 }
3077 ]
3078 },
3079 %{
3080 group: :pleroma,
3081 key: Pleroma.Plugs.RemoteIp,
3082 type: :group,
3083 description: """
3084 `Pleroma.Plugs.RemoteIp` is a shim to call [`RemoteIp`](https://git.pleroma.social/pleroma/remote_ip) but with runtime configuration.
3085 **If your instance is not behind at least one reverse proxy, you should not enable this plug.**
3086 """,
3087 children: [
3088 %{
3089 key: :enabled,
3090 type: :boolean,
3091 description: "Enable/disable the plug. Default: disabled."
3092 },
3093 %{
3094 key: :headers,
3095 type: {:list, :string},
3096 description:
3097 "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]`."
3098 },
3099 %{
3100 key: :proxies,
3101 type: {:list, :string},
3102 description:
3103 "A list of strings in [CIDR](https://en.wikipedia.org/wiki/CIDR) notation specifying the IPs of known proxies. Default: `[]`."
3104 },
3105 %{
3106 key: :reserved,
3107 type: {:list, :string},
3108 description:
3109 "Defaults to [localhost](https://en.wikipedia.org/wiki/Localhost) and [private network](https://en.wikipedia.org/wiki/Private_network)."
3110 }
3111 ]
3112 },
3113 %{
3114 group: :pleroma,
3115 key: :web_cache_ttl,
3116 label: "Web cache TTL",
3117 type: :group,
3118 description:
3119 "The expiration time for the web responses cache. Values should be in milliseconds or `nil` to disable expiration.",
3120 children: [
3121 %{
3122 key: :activity_pub,
3123 type: :integer,
3124 description:
3125 "Activity pub routes (except question activities). Default: `nil` (no expiration).",
3126 suggestions: [30_000, nil]
3127 },
3128 %{
3129 key: :activity_pub_question,
3130 type: :integer,
3131 description: "Activity pub routes (question activities). Default: `30_000` (30 seconds).",
3132 suggestions: [30_000]
3133 }
3134 ]
3135 },
3136 %{
3137 group: :pleroma,
3138 key: :static_fe,
3139 label: "Static FE",
3140 type: :group,
3141 description:
3142 "Render profiles and posts using server-generated HTML that is viewable without using JavaScript",
3143 children: [
3144 %{
3145 key: :enabled,
3146 type: :boolean,
3147 description: "Enables the rendering of static HTML. Default: disabled."
3148 }
3149 ]
3150 },
3151 %{
3152 group: :pleroma,
3153 key: :feed,
3154 type: :group,
3155 description: "Configure feed rendering",
3156 children: [
3157 %{
3158 key: :post_title,
3159 type: :map,
3160 description: "Configure title rendering",
3161 children: [
3162 %{
3163 key: :max_length,
3164 type: :integer,
3165 description: "Maximum number of characters before truncating title",
3166 suggestions: [100]
3167 },
3168 %{
3169 key: :omission,
3170 type: :string,
3171 description: "Replacement which will be used after truncating string",
3172 suggestions: ["..."]
3173 }
3174 ]
3175 }
3176 ]
3177 },
3178 %{
3179 group: :pleroma,
3180 key: :mrf_object_age,
3181 tab: :mrf,
3182 related_policy: "Pleroma.Web.ActivityPub.MRF.ObjectAgePolicy",
3183 label: "MRF Object Age",
3184 type: :group,
3185 description:
3186 "Rejects or delists posts based on their timestamp deviance from your server's clock.",
3187 children: [
3188 %{
3189 key: :threshold,
3190 type: :integer,
3191 description: "Required age (in seconds) of a post before actions are taken.",
3192 suggestions: [172_800]
3193 },
3194 %{
3195 key: :actions,
3196 type: {:list, :atom},
3197 description:
3198 "A list of actions to apply to the post. `:delist` removes the post from public timelines; " <>
3199 "`:strip_followers` removes followers from the ActivityPub recipient list ensuring they won't be delivered to home timelines; " <>
3200 "`:reject` rejects the message entirely",
3201 suggestions: [:delist, :strip_followers, :reject]
3202 }
3203 ]
3204 },
3205 %{
3206 group: :pleroma,
3207 key: :modules,
3208 type: :group,
3209 description: "Custom Runtime Modules",
3210 children: [
3211 %{
3212 key: :runtime_dir,
3213 type: :string,
3214 description: "A path to custom Elixir modules (such as MRF policies)."
3215 }
3216 ]
3217 },
3218 %{
3219 group: :pleroma,
3220 key: :streamer,
3221 type: :group,
3222 description: "Settings for notifications streamer",
3223 children: [
3224 %{
3225 key: :workers,
3226 type: :integer,
3227 description: "Number of workers to send notifications",
3228 suggestions: [3]
3229 },
3230 %{
3231 key: :overflow_workers,
3232 type: :integer,
3233 description: "Maximum number of workers created if pool is empty",
3234 suggestions: [2]
3235 }
3236 ]
3237 },
3238 %{
3239 group: :pleroma,
3240 key: :connections_pool,
3241 type: :group,
3242 description: "Advanced settings for `gun` connections pool",
3243 children: [
3244 %{
3245 key: :connection_acquisition_wait,
3246 type: :integer,
3247 description:
3248 "Timeout to acquire a connection from pool.The total max time is this value multiplied by the number of retries. Default: 250ms.",
3249 suggestions: [250]
3250 },
3251 %{
3252 key: :connection_acquisition_retries,
3253 type: :integer,
3254 description:
3255 "Number of attempts to acquire the connection from the pool if it is overloaded. Default: 5",
3256 suggestions: [5]
3257 },
3258 %{
3259 key: :max_connections,
3260 type: :integer,
3261 description: "Maximum number of connections in the pool. Default: 250 connections.",
3262 suggestions: [250]
3263 },
3264 %{
3265 key: :await_up_timeout,
3266 type: :integer,
3267 description: "Timeout while `gun` will wait until connection is up. Default: 5000ms.",
3268 suggestions: [5000]
3269 },
3270 %{
3271 key: :reclaim_multiplier,
3272 type: :integer,
3273 description:
3274 "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",
3275 suggestions: [0.1]
3276 }
3277 ]
3278 },
3279 %{
3280 group: :pleroma,
3281 key: :pools,
3282 type: :group,
3283 description: "Advanced settings for `gun` workers pools",
3284 children:
3285 Enum.map([:federation, :media, :upload, :default], fn pool_name ->
3286 %{
3287 key: pool_name,
3288 type: :keyword,
3289 description: "Settings for #{pool_name} pool.",
3290 children: [
3291 %{
3292 key: :size,
3293 type: :integer,
3294 description: "Maximum number of concurrent requests in the pool.",
3295 suggestions: [50]
3296 },
3297 %{
3298 key: :max_waiting,
3299 type: :integer,
3300 description:
3301 "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",
3302 suggestions: [10]
3303 }
3304 ]
3305 }
3306 end)
3307 },
3308 %{
3309 group: :pleroma,
3310 key: :hackney_pools,
3311 type: :group,
3312 description: "Advanced settings for `hackney` connections pools",
3313 children: [
3314 %{
3315 key: :federation,
3316 type: :keyword,
3317 description: "Settings for federation pool.",
3318 children: [
3319 %{
3320 key: :max_connections,
3321 type: :integer,
3322 description: "Number workers in the pool.",
3323 suggestions: [50]
3324 },
3325 %{
3326 key: :timeout,
3327 type: :integer,
3328 description: "Timeout while `hackney` will wait for response.",
3329 suggestions: [150_000]
3330 }
3331 ]
3332 },
3333 %{
3334 key: :media,
3335 type: :keyword,
3336 description: "Settings for media pool.",
3337 children: [
3338 %{
3339 key: :max_connections,
3340 type: :integer,
3341 description: "Number workers in the pool.",
3342 suggestions: [50]
3343 },
3344 %{
3345 key: :timeout,
3346 type: :integer,
3347 description: "Timeout while `hackney` will wait for response.",
3348 suggestions: [150_000]
3349 }
3350 ]
3351 },
3352 %{
3353 key: :upload,
3354 type: :keyword,
3355 description: "Settings for upload pool.",
3356 children: [
3357 %{
3358 key: :max_connections,
3359 type: :integer,
3360 description: "Number workers in the pool.",
3361 suggestions: [25]
3362 },
3363 %{
3364 key: :timeout,
3365 type: :integer,
3366 description: "Timeout while `hackney` will wait for response.",
3367 suggestions: [300_000]
3368 }
3369 ]
3370 }
3371 ]
3372 },
3373 %{
3374 group: :pleroma,
3375 key: :restrict_unauthenticated,
3376 type: :group,
3377 description:
3378 "Disallow viewing timelines, user profiles and statuses for unauthenticated users.",
3379 children: [
3380 %{
3381 key: :timelines,
3382 type: :map,
3383 description: "Settings for public and federated timelines.",
3384 children: [
3385 %{
3386 key: :local,
3387 type: :boolean,
3388 description: "Disallow view public timeline."
3389 },
3390 %{
3391 key: :federated,
3392 type: :boolean,
3393 description: "Disallow view federated timeline."
3394 }
3395 ]
3396 },
3397 %{
3398 key: :profiles,
3399 type: :map,
3400 description: "Settings for user profiles.",
3401 children: [
3402 %{
3403 key: :local,
3404 type: :boolean,
3405 description: "Disallow view local user profiles."
3406 },
3407 %{
3408 key: :remote,
3409 type: :boolean,
3410 description: "Disallow view remote user profiles."
3411 }
3412 ]
3413 },
3414 %{
3415 key: :activities,
3416 type: :map,
3417 description: "Settings for statuses.",
3418 children: [
3419 %{
3420 key: :local,
3421 type: :boolean,
3422 description: "Disallow view local statuses."
3423 },
3424 %{
3425 key: :remote,
3426 type: :boolean,
3427 description: "Disallow view remote statuses."
3428 }
3429 ]
3430 }
3431 ]
3432 },
3433 %{
3434 group: :pleroma,
3435 key: Pleroma.Web.ApiSpec.CastAndValidate,
3436 type: :group,
3437 children: [
3438 %{
3439 key: :strict,
3440 type: :boolean,
3441 description:
3442 "Enables strict input validation (useful in development, not recommended in production)"
3443 }
3444 ]
3445 },
3446 %{
3447 group: :pleroma,
3448 key: :instances_favicons,
3449 type: :group,
3450 description: "Control favicons for instances",
3451 children: [
3452 %{
3453 key: :enabled,
3454 type: :boolean,
3455 description: "Allow/disallow displaying and getting instances favicons"
3456 }
3457 ]
3458 },
3459 %{
3460 group: :ex_aws,
3461 key: :s3,
3462 type: :group,
3463 descriptions: "S3 service related settings",
3464 children: [
3465 %{
3466 key: :access_key_id,
3467 type: :string,
3468 description: "S3 access key ID",
3469 suggestions: ["AKIAQ8UKHTGIYN7DMWWJ"]
3470 },
3471 %{
3472 key: :secret_access_key,
3473 type: :string,
3474 description: "Secret access key",
3475 suggestions: ["JFGt+fgH1UQ7vLUQjpW+WvjTdV/UNzVxcwn7DkaeFKtBS5LvoXvIiME4NQBsT6ZZ"]
3476 },
3477 %{
3478 key: :host,
3479 type: :string,
3480 description: "S3 host",
3481 suggestions: ["s3.eu-central-1.amazonaws.com"]
3482 }
3483 ]
3484 },
3485 %{
3486 group: :pleroma,
3487 key: :frontends,
3488 type: :group,
3489 description: "Installed frontends management",
3490 children: [
3491 %{
3492 key: :primary,
3493 type: :map,
3494 description: "Primary frontend, the one that is served for all pages by default",
3495 children: [
3496 %{
3497 key: "name",
3498 type: :string,
3499 description: "Name of the installed primary frontend"
3500 },
3501 %{
3502 key: "ref",
3503 type: :string,
3504 description: "reference of the installed primary frontend to be used"
3505 }
3506 ]
3507 }
3508 ]
3509 }
3510 ]