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