11fbe0d788b4181957fc38332b6827f0ab6427c5
[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: :report_removal,
1547 type: {:list, :string},
1548 description: "List of instances to reject reports from",
1549 suggestions: ["example.com", "*.example.com"]
1550 },
1551 %{
1552 key: :avatar_removal,
1553 type: {:list, :string},
1554 description: "List of instances to strip avatars from",
1555 suggestions: ["example.com", "*.example.com"]
1556 },
1557 %{
1558 key: :banner_removal,
1559 type: {:list, :string},
1560 description: "List of instances to strip banners from",
1561 suggestions: ["example.com", "*.example.com"]
1562 },
1563 %{
1564 key: :reject_deletes,
1565 type: {:list, :string},
1566 description: "List of instances to reject deletions from",
1567 suggestions: ["example.com", "*.example.com"]
1568 }
1569 ]
1570 },
1571 %{
1572 group: :pleroma,
1573 key: :mrf_activity_expiration,
1574 tab: :mrf,
1575 related_policy: "Pleroma.Web.ActivityPub.MRF.ActivityExpirationPolicy",
1576 label: "MRF Activity Expiration Policy",
1577 type: :group,
1578 description: "Adds automatic expiration to all local activities",
1579 children: [
1580 %{
1581 key: :days,
1582 type: :integer,
1583 description: "Default global expiration time for all local activities (in days)",
1584 suggestions: [90, 365]
1585 }
1586 ]
1587 },
1588 %{
1589 group: :pleroma,
1590 key: :mrf_subchain,
1591 tab: :mrf,
1592 related_policy: "Pleroma.Web.ActivityPub.MRF.SubchainPolicy",
1593 label: "MRF Subchain",
1594 type: :group,
1595 description:
1596 "This policy processes messages through an alternate pipeline when a given message matches certain criteria." <>
1597 " All criteria are configured as a map of regular expressions to lists of policy modules.",
1598 children: [
1599 %{
1600 key: :match_actor,
1601 type: {:map, {:list, :string}},
1602 description: "Matches a series of regular expressions against the actor field",
1603 suggestions: [
1604 %{
1605 ~r/https:\/\/example.com/s => [Pleroma.Web.ActivityPub.MRF.DropPolicy]
1606 }
1607 ]
1608 }
1609 ]
1610 },
1611 %{
1612 group: :pleroma,
1613 key: :mrf_rejectnonpublic,
1614 tab: :mrf,
1615 related_policy: "Pleroma.Web.ActivityPub.MRF.RejectNonPublic",
1616 description: "RejectNonPublic drops posts with non-public visibility settings.",
1617 label: "MRF Reject Non Public",
1618 type: :group,
1619 children: [
1620 %{
1621 key: :allow_followersonly,
1622 label: "Allow followers-only",
1623 type: :boolean,
1624 description: "Whether to allow followers-only posts"
1625 },
1626 %{
1627 key: :allow_direct,
1628 type: :boolean,
1629 description: "Whether to allow direct messages"
1630 }
1631 ]
1632 },
1633 %{
1634 group: :pleroma,
1635 key: :mrf_hellthread,
1636 tab: :mrf,
1637 related_policy: "Pleroma.Web.ActivityPub.MRF.HellthreadPolicy",
1638 label: "MRF Hellthread",
1639 type: :group,
1640 description: "Block messages with excessive user mentions",
1641 children: [
1642 %{
1643 key: :delist_threshold,
1644 type: :integer,
1645 description:
1646 "Number of mentioned users after which the message gets removed from timelines and" <>
1647 "disables notifications. Set to 0 to disable.",
1648 suggestions: [10]
1649 },
1650 %{
1651 key: :reject_threshold,
1652 type: :integer,
1653 description:
1654 "Number of mentioned users after which the messaged gets rejected. Set to 0 to disable.",
1655 suggestions: [20]
1656 }
1657 ]
1658 },
1659 %{
1660 group: :pleroma,
1661 key: :mrf_keyword,
1662 tab: :mrf,
1663 related_policy: "Pleroma.Web.ActivityPub.MRF.KeywordPolicy",
1664 label: "MRF Keyword",
1665 type: :group,
1666 description: "Reject or Word-Replace messages with a keyword or regex",
1667 children: [
1668 %{
1669 key: :reject,
1670 type: {:list, :string},
1671 description:
1672 "A list of patterns which result in message being rejected. Each pattern can be a string or a regular expression.",
1673 suggestions: ["foo", ~r/foo/iu]
1674 },
1675 %{
1676 key: :federated_timeline_removal,
1677 type: {:list, :string},
1678 description:
1679 "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.",
1680 suggestions: ["foo", ~r/foo/iu]
1681 },
1682 %{
1683 key: :replace,
1684 type: {:list, :tuple},
1685 description:
1686 "A list of tuples containing {pattern, replacement}. Each pattern can be a string or a regular expression.",
1687 suggestions: [{"foo", "bar"}, {~r/foo/iu, "bar"}]
1688 }
1689 ]
1690 },
1691 %{
1692 group: :pleroma,
1693 key: :mrf_mention,
1694 tab: :mrf,
1695 related_policy: "Pleroma.Web.ActivityPub.MRF.MentionPolicy",
1696 label: "MRF Mention",
1697 type: :group,
1698 description: "Block messages which mention a specific user",
1699 children: [
1700 %{
1701 key: :actors,
1702 type: {:list, :string},
1703 description: "A list of actors for which any post mentioning them will be dropped",
1704 suggestions: ["actor1", "actor2"]
1705 }
1706 ]
1707 },
1708 %{
1709 group: :pleroma,
1710 key: :mrf_vocabulary,
1711 tab: :mrf,
1712 related_policy: "Pleroma.Web.ActivityPub.MRF.VocabularyPolicy",
1713 label: "MRF Vocabulary",
1714 type: :group,
1715 description: "Filter messages which belong to certain activity vocabularies",
1716 children: [
1717 %{
1718 key: :accept,
1719 type: {:list, :string},
1720 description:
1721 "A list of ActivityStreams terms to accept. If empty, all supported messages are accepted.",
1722 suggestions: ["Create", "Follow", "Mention", "Announce", "Like"]
1723 },
1724 %{
1725 key: :reject,
1726 type: {:list, :string},
1727 description:
1728 "A list of ActivityStreams terms to reject. If empty, no messages are rejected.",
1729 suggestions: ["Create", "Follow", "Mention", "Announce", "Like"]
1730 }
1731 ]
1732 },
1733 # %{
1734 # group: :pleroma,
1735 # key: :mrf_user_allowlist,
1736 # tab: :mrf,
1737 # related_policy: "Pleroma.Web.ActivityPub.MRF.UserAllowListPolicy",
1738 # type: :map,
1739 # description:
1740 # "The keys in this section are the domain names that the policy should apply to." <>
1741 # " Each key should be assigned a list of users that should be allowed through by their ActivityPub ID",
1742 # suggestions: [
1743 # %{"example.org" => ["https://example.org/users/admin"]}
1744 # ]
1745 # ]
1746 # },
1747 %{
1748 group: :pleroma,
1749 key: :media_proxy,
1750 type: :group,
1751 description: "Media proxy",
1752 children: [
1753 %{
1754 key: :enabled,
1755 type: :boolean,
1756 description: "Enables proxying of remote media to the instance's proxy"
1757 },
1758 %{
1759 key: :base_url,
1760 label: "Base URL",
1761 type: :string,
1762 description:
1763 "The base URL to access a user-uploaded file. Useful when you want to proxy the media files via another host/CDN fronts.",
1764 suggestions: ["https://example.com"]
1765 },
1766 %{
1767 key: :invalidation,
1768 type: :keyword,
1769 descpiption: "",
1770 suggestions: [
1771 enabled: true,
1772 provider: Pleroma.Web.MediaProxy.Invalidation.Script
1773 ],
1774 children: [
1775 %{
1776 key: :enabled,
1777 type: :boolean,
1778 description: "Enables invalidate media cache"
1779 },
1780 %{
1781 key: :provider,
1782 type: :module,
1783 description: "Module which will be used to cache purge.",
1784 suggestions: [
1785 Pleroma.Web.MediaProxy.Invalidation.Script,
1786 Pleroma.Web.MediaProxy.Invalidation.Http
1787 ]
1788 }
1789 ]
1790 },
1791 %{
1792 key: :proxy_opts,
1793 label: "Proxy Options",
1794 type: :keyword,
1795 description: "Options for Pleroma.ReverseProxy",
1796 suggestions: [
1797 redirect_on_failure: false,
1798 max_body_length: 25 * 1_048_576,
1799 http: [
1800 follow_redirect: true,
1801 pool: :media
1802 ]
1803 ],
1804 children: [
1805 %{
1806 key: :redirect_on_failure,
1807 type: :boolean,
1808 description:
1809 "Redirects the client to the real remote URL if there's any HTTP errors. " <>
1810 "Any error during body processing will not be redirected as the response is chunked."
1811 },
1812 %{
1813 key: :max_body_length,
1814 type: :integer,
1815 description:
1816 "Limits the content length to be approximately the " <>
1817 "specified length. It is validated with the `content-length` header and also verified when proxying."
1818 },
1819 %{
1820 key: :http,
1821 label: "HTTP",
1822 type: :keyword,
1823 description: "HTTP options",
1824 children: [
1825 %{
1826 key: :adapter,
1827 type: :keyword,
1828 description: "Adapter specific options",
1829 children: [
1830 %{
1831 key: :ssl_options,
1832 type: :keyword,
1833 label: "SSL Options",
1834 description: "SSL options for HTTP adapter",
1835 children: [
1836 %{
1837 key: :versions,
1838 type: {:list, :atom},
1839 description: "List of TLS version to use",
1840 suggestions: [:tlsv1, ":tlsv1.1", ":tlsv1.2"]
1841 }
1842 ]
1843 }
1844 ]
1845 },
1846 %{
1847 key: :proxy_url,
1848 label: "Proxy URL",
1849 type: [:string, :tuple],
1850 description: "Proxy URL",
1851 suggestions: ["127.0.0.1:8123", {:socks5, :localhost, 9050}]
1852 }
1853 ]
1854 }
1855 ]
1856 },
1857 %{
1858 key: :whitelist,
1859 type: {:list, :string},
1860 description: "List of hosts with scheme to bypass the mediaproxy",
1861 suggestions: ["http://example.com"]
1862 }
1863 ]
1864 },
1865 %{
1866 group: :pleroma,
1867 key: Pleroma.Web.MediaProxy.Invalidation.Http,
1868 type: :group,
1869 description: "HTTP invalidate settings",
1870 children: [
1871 %{
1872 key: :method,
1873 type: :atom,
1874 description: "HTTP method of request. Default: :purge"
1875 },
1876 %{
1877 key: :headers,
1878 type: {:keyword, :string},
1879 description: "HTTP headers of request",
1880 suggestions: [{"x-refresh", 1}]
1881 },
1882 %{
1883 key: :options,
1884 type: :keyword,
1885 description: "Request options",
1886 children: [
1887 %{
1888 key: :params,
1889 type: {:map, :string}
1890 }
1891 ]
1892 }
1893 ]
1894 },
1895 %{
1896 group: :pleroma,
1897 key: Pleroma.Web.MediaProxy.Invalidation.Script,
1898 type: :group,
1899 description: "Script invalidate settings",
1900 children: [
1901 %{
1902 key: :script_path,
1903 type: :string,
1904 description: "Path to shell script. Which will run purge cache.",
1905 suggestions: ["./installation/nginx-cache-purge.sh.example"]
1906 }
1907 ]
1908 },
1909 %{
1910 group: :pleroma,
1911 key: :gopher,
1912 type: :group,
1913 description: "Gopher settings",
1914 children: [
1915 %{
1916 key: :enabled,
1917 type: :boolean,
1918 description: "Enables the gopher interface"
1919 },
1920 %{
1921 key: :ip,
1922 label: "IP",
1923 type: :tuple,
1924 description: "IP address to bind to",
1925 suggestions: [{0, 0, 0, 0}]
1926 },
1927 %{
1928 key: :port,
1929 type: :integer,
1930 description: "Port to bind to",
1931 suggestions: [9999]
1932 },
1933 %{
1934 key: :dstport,
1935 type: :integer,
1936 description: "Port advertised in URLs (optional, defaults to port)",
1937 suggestions: [9999]
1938 }
1939 ]
1940 },
1941 %{
1942 group: :pleroma,
1943 key: :activitypub,
1944 label: "ActivityPub",
1945 type: :group,
1946 description: "ActivityPub-related settings",
1947 children: [
1948 %{
1949 key: :unfollow_blocked,
1950 type: :boolean,
1951 description: "Whether blocks result in people getting unfollowed"
1952 },
1953 %{
1954 key: :outgoing_blocks,
1955 type: :boolean,
1956 description: "Whether to federate blocks to other instances"
1957 },
1958 %{
1959 key: :sign_object_fetches,
1960 type: :boolean,
1961 description: "Sign object fetches with HTTP signatures"
1962 },
1963 %{
1964 key: :note_replies_output_limit,
1965 type: :integer,
1966 description:
1967 "The number of Note replies' URIs to be included with outgoing federation (`5` to match Mastodon hardcoded value, `0` to disable the output)"
1968 },
1969 %{
1970 key: :follow_handshake_timeout,
1971 type: :integer,
1972 description: "Following handshake timeout",
1973 suggestions: [500]
1974 }
1975 ]
1976 },
1977 %{
1978 group: :pleroma,
1979 key: :http_security,
1980 label: "HTTP security",
1981 type: :group,
1982 description: "HTTP security settings",
1983 children: [
1984 %{
1985 key: :enabled,
1986 type: :boolean,
1987 description: "Whether the managed content security policy is enabled"
1988 },
1989 %{
1990 key: :sts,
1991 label: "STS",
1992 type: :boolean,
1993 description: "Whether to additionally send a Strict-Transport-Security header"
1994 },
1995 %{
1996 key: :sts_max_age,
1997 label: "STS max age",
1998 type: :integer,
1999 description: "The maximum age for the Strict-Transport-Security header if sent",
2000 suggestions: [31_536_000]
2001 },
2002 %{
2003 key: :ct_max_age,
2004 label: "CT max age",
2005 type: :integer,
2006 description: "The maximum age for the Expect-CT header if sent",
2007 suggestions: [2_592_000]
2008 },
2009 %{
2010 key: :referrer_policy,
2011 type: :string,
2012 description: "The referrer policy to use, either \"same-origin\" or \"no-referrer\"",
2013 suggestions: ["same-origin", "no-referrer"]
2014 },
2015 %{
2016 key: :report_uri,
2017 label: "Report URI",
2018 type: :string,
2019 description: "Adds the specified URL to report-uri and report-to group in CSP header",
2020 suggestions: ["https://example.com/report-uri"]
2021 }
2022 ]
2023 },
2024 %{
2025 group: :web_push_encryption,
2026 key: :vapid_details,
2027 label: "Vapid Details",
2028 type: :group,
2029 description:
2030 "Web Push Notifications configuration. You can use the mix task mix web_push.gen.keypair to generate it.",
2031 children: [
2032 %{
2033 key: :subject,
2034 type: :string,
2035 description:
2036 "A mailto link for the administrative contact." <>
2037 " It's best if this email is not a personal email address, but rather a group email to the instance moderation team.",
2038 suggestions: ["mailto:moderators@pleroma.com"]
2039 },
2040 %{
2041 key: :public_key,
2042 type: :string,
2043 description: "VAPID public key",
2044 suggestions: ["Public key"]
2045 },
2046 %{
2047 key: :private_key,
2048 type: :string,
2049 description: "VAPID private key",
2050 suggestions: ["Private key"]
2051 }
2052 ]
2053 },
2054 %{
2055 group: :pleroma,
2056 key: Pleroma.Captcha,
2057 type: :group,
2058 description: "Captcha-related settings",
2059 children: [
2060 %{
2061 key: :enabled,
2062 type: :boolean,
2063 description: "Whether the captcha should be shown on registration"
2064 },
2065 %{
2066 key: :method,
2067 type: :module,
2068 description: "The method/service to use for captcha",
2069 suggestions: [Pleroma.Captcha.Kocaptcha, Pleroma.Captcha.Native]
2070 },
2071 %{
2072 key: :seconds_valid,
2073 type: :integer,
2074 description: "The time in seconds for which the captcha is valid",
2075 suggestions: [60]
2076 }
2077 ]
2078 },
2079 %{
2080 group: :pleroma,
2081 key: Pleroma.Captcha.Kocaptcha,
2082 type: :group,
2083 description:
2084 "Kocaptcha is a very simple captcha service with a single API endpoint, the source code is" <>
2085 " here: https://github.com/koto-bank/kocaptcha. The default endpoint (https://captcha.kotobank.ch) is hosted by the developer.",
2086 children: [
2087 %{
2088 key: :endpoint,
2089 type: :string,
2090 description: "The kocaptcha endpoint to use",
2091 suggestions: ["https://captcha.kotobank.ch"]
2092 }
2093 ]
2094 },
2095 %{
2096 group: :pleroma,
2097 label: "Pleroma Admin Token",
2098 type: :group,
2099 description:
2100 "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)",
2101 children: [
2102 %{
2103 key: :admin_token,
2104 type: :string,
2105 description: "Admin token",
2106 suggestions: [
2107 "Please use a high entropy string or UUID"
2108 ]
2109 }
2110 ]
2111 },
2112 %{
2113 group: :pleroma,
2114 key: Oban,
2115 type: :group,
2116 description: """
2117 [Oban](https://github.com/sorentwo/oban) asynchronous job processor configuration.
2118
2119 Note: if you are running PostgreSQL in [`silent_mode`](https://postgresqlco.nf/en/doc/param/silent_mode?version=9.1),
2120 it's advised to set [`log_destination`](https://postgresqlco.nf/en/doc/param/log_destination?version=9.1) to `syslog`,
2121 otherwise `postmaster.log` file may grow because of "you don't own a lock of type ShareLock" warnings
2122 (see https://github.com/sorentwo/oban/issues/52).
2123 """,
2124 children: [
2125 %{
2126 key: :log,
2127 type: {:dropdown, :atom},
2128 description: "Logs verbose mode",
2129 suggestions: [false, :error, :warn, :info, :debug]
2130 },
2131 %{
2132 key: :queues,
2133 type: {:keyword, :integer},
2134 description:
2135 "Background jobs queues (keys: queues, values: max numbers of concurrent jobs)",
2136 suggestions: [
2137 activity_expiration: 10,
2138 attachments_cleanup: 5,
2139 background: 5,
2140 federator_incoming: 50,
2141 federator_outgoing: 50,
2142 mailer: 10,
2143 scheduled_activities: 10,
2144 transmogrifier: 20,
2145 web_push: 50
2146 ],
2147 children: [
2148 %{
2149 key: :activity_expiration,
2150 type: :integer,
2151 description: "Activity expiration queue",
2152 suggestions: [10]
2153 },
2154 %{
2155 key: :attachments_cleanup,
2156 type: :integer,
2157 description: "Attachment deletion queue",
2158 suggestions: [5]
2159 },
2160 %{
2161 key: :background,
2162 type: :integer,
2163 description: "Background queue",
2164 suggestions: [5]
2165 },
2166 %{
2167 key: :federator_incoming,
2168 type: :integer,
2169 description: "Incoming federation queue",
2170 suggestions: [50]
2171 },
2172 %{
2173 key: :federator_outgoing,
2174 type: :integer,
2175 description: "Outgoing federation queue",
2176 suggestions: [50]
2177 },
2178 %{
2179 key: :mailer,
2180 type: :integer,
2181 description: "Email sender queue, see Pleroma.Emails.Mailer",
2182 suggestions: [10]
2183 },
2184 %{
2185 key: :scheduled_activities,
2186 type: :integer,
2187 description: "Scheduled activities queue, see Pleroma.ScheduledActivities",
2188 suggestions: [10]
2189 },
2190 %{
2191 key: :transmogrifier,
2192 type: :integer,
2193 description: "Transmogrifier queue",
2194 suggestions: [20]
2195 },
2196 %{
2197 key: :web_push,
2198 type: :integer,
2199 description: "Web push notifications queue",
2200 suggestions: [50]
2201 }
2202 ]
2203 },
2204 %{
2205 key: :crontab,
2206 type: {:list, :tuple},
2207 description: "Settings for cron background jobs",
2208 suggestions: [
2209 {"0 0 * * *", Pleroma.Workers.Cron.ClearOauthTokenWorker},
2210 {"0 * * * *", Pleroma.Workers.Cron.StatsWorker},
2211 {"* * * * *", Pleroma.Workers.Cron.PurgeExpiredActivitiesWorker},
2212 {"0 0 * * 0", Pleroma.Workers.Cron.DigestEmailsWorker},
2213 {"0 0 * * *", Pleroma.Workers.Cron.NewUsersDigestWorker}
2214 ]
2215 }
2216 ]
2217 },
2218 %{
2219 group: :pleroma,
2220 key: :workers,
2221 type: :group,
2222 description: "Includes custom worker options not interpretable directly by `Oban`",
2223 children: [
2224 %{
2225 key: :retries,
2226 type: {:keyword, :integer},
2227 description: "Max retry attempts for failed jobs, per `Oban` queue",
2228 suggestions: [
2229 federator_incoming: 5,
2230 federator_outgoing: 5
2231 ]
2232 }
2233 ]
2234 },
2235 %{
2236 group: :pleroma,
2237 key: Pleroma.Web.Metadata,
2238 type: :group,
2239 description: "Metadata-related settings",
2240 children: [
2241 %{
2242 key: :providers,
2243 type: {:list, :module},
2244 description: "List of metadata providers to enable",
2245 suggestions: [
2246 Pleroma.Web.Metadata.Providers.OpenGraph,
2247 Pleroma.Web.Metadata.Providers.TwitterCard,
2248 Pleroma.Web.Metadata.Providers.RelMe,
2249 Pleroma.Web.Metadata.Providers.Feed
2250 ]
2251 },
2252 %{
2253 key: :unfurl_nsfw,
2254 label: "Unfurl NSFW",
2255 type: :boolean,
2256 description: "When enabled NSFW attachments will be shown in previews"
2257 }
2258 ]
2259 },
2260 %{
2261 group: :pleroma,
2262 key: :rich_media,
2263 type: :group,
2264 description:
2265 "If enabled the instance will parse metadata from attached links to generate link previews",
2266 children: [
2267 %{
2268 key: :enabled,
2269 type: :boolean,
2270 description: "Enables RichMedia parsing of URLs"
2271 },
2272 %{
2273 key: :ignore_hosts,
2274 type: {:list, :string},
2275 description: "List of hosts which will be ignored by the metadata parser",
2276 suggestions: ["accounts.google.com", "xss.website"]
2277 },
2278 %{
2279 key: :ignore_tld,
2280 label: "Ignore TLD",
2281 type: {:list, :string},
2282 description: "List TLDs (top-level domains) which will ignore for parse metadata",
2283 suggestions: ["local", "localdomain", "lan"]
2284 },
2285 %{
2286 key: :parsers,
2287 type: {:list, :module},
2288 description:
2289 "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.",
2290 suggestions: [
2291 Pleroma.Web.RichMedia.Parsers.OEmbed,
2292 Pleroma.Web.RichMedia.Parsers.TwitterCard
2293 ]
2294 },
2295 %{
2296 key: :ttl_setters,
2297 label: "TTL setters",
2298 type: {:list, :module},
2299 description:
2300 "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.",
2301 suggestions: [
2302 Pleroma.Web.RichMedia.Parser.TTL.AwsSignedUrl
2303 ]
2304 }
2305 ]
2306 },
2307 %{
2308 group: :pleroma,
2309 key: Pleroma.Formatter,
2310 label: "Auto Linker",
2311 type: :group,
2312 description:
2313 "Configuration for Pleroma's link formatter which parses mentions, hashtags, and URLs.",
2314 children: [
2315 %{
2316 key: :class,
2317 type: [:string, :boolean],
2318 description: "Specify the class to be added to the generated link. Disable to clear.",
2319 suggestions: ["auto-linker", false]
2320 },
2321 %{
2322 key: :rel,
2323 type: [:string, :boolean],
2324 description: "Override the rel attribute. Disable to clear.",
2325 suggestions: ["ugc", "noopener noreferrer", false]
2326 },
2327 %{
2328 key: :new_window,
2329 type: :boolean,
2330 description: "Link URLs will open in a new window/tab."
2331 },
2332 %{
2333 key: :truncate,
2334 type: [:integer, :boolean],
2335 description:
2336 "Set to a number to truncate URLs longer than the number. Truncated URLs will end in `...`",
2337 suggestions: [15, false]
2338 },
2339 %{
2340 key: :strip_prefix,
2341 type: :boolean,
2342 description: "Strip the scheme prefix."
2343 },
2344 %{
2345 key: :extra,
2346 type: :boolean,
2347 description: "Link URLs with rarely used schemes (magnet, ipfs, irc, etc.)"
2348 },
2349 %{
2350 key: :validate_tld,
2351 type: [:atom, :boolean],
2352 description:
2353 "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)",
2354 suggestions: [:no_scheme, true]
2355 }
2356 ]
2357 },
2358 %{
2359 group: :pleroma,
2360 key: Pleroma.ScheduledActivity,
2361 type: :group,
2362 description: "Scheduled activities settings",
2363 children: [
2364 %{
2365 key: :daily_user_limit,
2366 type: :integer,
2367 description:
2368 "The number of scheduled activities a user is allowed to create in a single day. Default: 25.",
2369 suggestions: [25]
2370 },
2371 %{
2372 key: :total_user_limit,
2373 type: :integer,
2374 description:
2375 "The number of scheduled activities a user is allowed to create in total. Default: 300.",
2376 suggestions: [300]
2377 },
2378 %{
2379 key: :enabled,
2380 type: :boolean,
2381 description: "Whether scheduled activities are sent to the job queue to be executed"
2382 }
2383 ]
2384 },
2385 %{
2386 group: :pleroma,
2387 key: Pleroma.ActivityExpiration,
2388 type: :group,
2389 description: "Expired activity settings",
2390 children: [
2391 %{
2392 key: :enabled,
2393 type: :boolean,
2394 description: "Whether expired activities will be sent to the job queue to be deleted"
2395 }
2396 ]
2397 },
2398 %{
2399 group: :pleroma,
2400 label: "Pleroma Authenticator",
2401 type: :group,
2402 description: "Authenticator",
2403 children: [
2404 %{
2405 key: Pleroma.Web.Auth.Authenticator,
2406 type: :module,
2407 suggestions: [Pleroma.Web.Auth.PleromaAuthenticator, Pleroma.Web.Auth.LDAPAuthenticator]
2408 }
2409 ]
2410 },
2411 %{
2412 group: :pleroma,
2413 key: :ldap,
2414 label: "LDAP",
2415 type: :group,
2416 description:
2417 "Use LDAP for user authentication. When a user logs in to the Pleroma instance, the name and password" <>
2418 " will be verified by trying to authenticate (bind) to a LDAP server." <>
2419 " If a user exists in the LDAP directory but there is no account with the same name yet on the" <>
2420 " Pleroma instance then a new Pleroma account will be created with the same name as the LDAP user name.",
2421 children: [
2422 %{
2423 key: :enabled,
2424 type: :boolean,
2425 description: "Enables LDAP authentication"
2426 },
2427 %{
2428 key: :host,
2429 type: :string,
2430 description: "LDAP server hostname",
2431 suggestions: ["localhosts"]
2432 },
2433 %{
2434 key: :port,
2435 type: :integer,
2436 description: "LDAP port, e.g. 389 or 636",
2437 suggestions: [389, 636]
2438 },
2439 %{
2440 key: :ssl,
2441 label: "SSL",
2442 type: :boolean,
2443 description: "Enable to use SSL, usually implies the port 636"
2444 },
2445 %{
2446 key: :sslopts,
2447 label: "SSL options",
2448 type: :keyword,
2449 description: "Additional SSL options",
2450 suggestions: [cacertfile: "path/to/file/with/PEM/cacerts", verify: :verify_peer],
2451 children: [
2452 %{
2453 key: :cacertfile,
2454 type: :string,
2455 description: "Path to file with PEM encoded cacerts",
2456 suggestions: ["path/to/file/with/PEM/cacerts"]
2457 },
2458 %{
2459 key: :verify,
2460 type: :atom,
2461 description: "Type of cert verification",
2462 suggestions: [:verify_peer]
2463 }
2464 ]
2465 },
2466 %{
2467 key: :tls,
2468 label: "TLS",
2469 type: :boolean,
2470 description: "Enable to use STARTTLS, usually implies the port 389"
2471 },
2472 %{
2473 key: :tlsopts,
2474 label: "TLS options",
2475 type: :keyword,
2476 description: "Additional TLS options",
2477 suggestions: [cacertfile: "path/to/file/with/PEM/cacerts", verify: :verify_peer],
2478 children: [
2479 %{
2480 key: :cacertfile,
2481 type: :string,
2482 description: "Path to file with PEM encoded cacerts",
2483 suggestions: ["path/to/file/with/PEM/cacerts"]
2484 },
2485 %{
2486 key: :verify,
2487 type: :atom,
2488 description: "Type of cert verification",
2489 suggestions: [:verify_peer]
2490 }
2491 ]
2492 },
2493 %{
2494 key: :base,
2495 type: :string,
2496 description: "LDAP base, e.g. \"dc=example,dc=com\"",
2497 suggestions: ["dc=example,dc=com"]
2498 },
2499 %{
2500 key: :uid,
2501 label: "UID",
2502 type: :string,
2503 description:
2504 "LDAP attribute name to authenticate the user, e.g. when \"cn\", the filter will be \"cn=username,base\"",
2505 suggestions: ["cn"]
2506 }
2507 ]
2508 },
2509 %{
2510 group: :pleroma,
2511 key: :auth,
2512 type: :group,
2513 description: "Authentication / authorization settings",
2514 children: [
2515 %{
2516 key: :enforce_oauth_admin_scope_usage,
2517 label: "Enforce OAuth admin scope usage",
2518 type: :boolean,
2519 description:
2520 "OAuth admin scope requirement toggle. " <>
2521 "If enabled, admin actions explicitly demand admin OAuth scope(s) presence in OAuth token " <>
2522 "(client app must support admin scopes). If disabled and token doesn't have admin scope(s), " <>
2523 "`is_admin` user flag grants access to admin-specific actions."
2524 },
2525 %{
2526 key: :auth_template,
2527 type: :string,
2528 description:
2529 "Authentication form template. By default it's `show.html` which corresponds to `lib/pleroma/web/templates/o_auth/o_auth/show.html.ee`.",
2530 suggestions: ["show.html"]
2531 },
2532 %{
2533 key: :oauth_consumer_template,
2534 label: "OAuth consumer template",
2535 type: :string,
2536 description:
2537 "OAuth consumer mode authentication form template. By default it's `consumer.html` which corresponds to" <>
2538 " `lib/pleroma/web/templates/o_auth/o_auth/consumer.html.eex`.",
2539 suggestions: ["consumer.html"]
2540 },
2541 %{
2542 key: :oauth_consumer_strategies,
2543 label: "OAuth consumer strategies",
2544 type: {:list, :string},
2545 description:
2546 "The list of enabled OAuth consumer strategies. By default it's set by OAUTH_CONSUMER_STRATEGIES environment variable." <>
2547 " Each entry in this space-delimited string should be of format \"strategy\" or \"strategy:dependency\"" <>
2548 " (e.g. twitter or keycloak:ueberauth_keycloak_strategy in case dependency is named differently than ueberauth_<strategy>).",
2549 suggestions: ["twitter", "keycloak:ueberauth_keycloak_strategy"]
2550 }
2551 ]
2552 },
2553 %{
2554 group: :pleroma,
2555 key: :email_notifications,
2556 type: :group,
2557 description: "Email notifications settings",
2558 children: [
2559 %{
2560 key: :digest,
2561 type: :map,
2562 description:
2563 "emails of \"what you've missed\" for users who have been inactive for a while",
2564 suggestions: [
2565 %{
2566 active: false,
2567 schedule: "0 0 * * 0",
2568 interval: 7,
2569 inactivity_threshold: 7
2570 }
2571 ],
2572 children: [
2573 %{
2574 key: :active,
2575 label: "Enabled",
2576 type: :boolean,
2577 description: "Globally enable or disable digest emails"
2578 },
2579 %{
2580 key: :schedule,
2581 type: :string,
2582 description:
2583 "When to send digest email, in crontab format. \"0 0 0\" is the default, meaning \"once a week at midnight on Sunday morning\".",
2584 suggestions: ["0 0 * * 0"]
2585 },
2586 %{
2587 key: :interval,
2588 type: :integer,
2589 description: "Minimum interval between digest emails to one user",
2590 suggestions: [7]
2591 },
2592 %{
2593 key: :inactivity_threshold,
2594 type: :integer,
2595 description: "Minimum user inactivity threshold",
2596 suggestions: [7]
2597 }
2598 ]
2599 }
2600 ]
2601 },
2602 %{
2603 group: :pleroma,
2604 key: Pleroma.Emails.UserEmail,
2605 type: :group,
2606 description: "Email template settings",
2607 children: [
2608 %{
2609 key: :logo,
2610 type: :string,
2611 description: "A path to a custom logo. Set it to `nil` to use the default Pleroma logo.",
2612 suggestions: ["some/path/logo.png"]
2613 },
2614 %{
2615 key: :styling,
2616 type: :map,
2617 description: "A map with color settings for email templates.",
2618 suggestions: [
2619 %{
2620 link_color: "#d8a070",
2621 background_color: "#2C3645",
2622 content_background_color: "#1B2635",
2623 header_color: "#d8a070",
2624 text_color: "#b9b9ba",
2625 text_muted_color: "#b9b9ba"
2626 }
2627 ],
2628 children: [
2629 %{
2630 key: :link_color,
2631 type: :string,
2632 suggestions: ["#d8a070"]
2633 },
2634 %{
2635 key: :background_color,
2636 type: :string,
2637 suggestions: ["#2C3645"]
2638 },
2639 %{
2640 key: :content_background_color,
2641 type: :string,
2642 suggestions: ["#1B2635"]
2643 },
2644 %{
2645 key: :header_color,
2646 type: :string,
2647 suggestions: ["#d8a070"]
2648 },
2649 %{
2650 key: :text_color,
2651 type: :string,
2652 suggestions: ["#b9b9ba"]
2653 },
2654 %{
2655 key: :text_muted_color,
2656 type: :string,
2657 suggestions: ["#b9b9ba"]
2658 }
2659 ]
2660 }
2661 ]
2662 },
2663 %{
2664 group: :pleroma,
2665 key: Pleroma.Emails.NewUsersDigestEmail,
2666 type: :group,
2667 description: "New users admin email digest",
2668 children: [
2669 %{
2670 key: :enabled,
2671 type: :boolean,
2672 description: "Enables new users admin digest email when `true`"
2673 }
2674 ]
2675 },
2676 %{
2677 group: :pleroma,
2678 key: :oauth2,
2679 label: "OAuth2",
2680 type: :group,
2681 description: "Configure OAuth 2 provider capabilities",
2682 children: [
2683 %{
2684 key: :token_expires_in,
2685 type: :integer,
2686 description: "The lifetime in seconds of the access token",
2687 suggestions: [600]
2688 },
2689 %{
2690 key: :issue_new_refresh_token,
2691 type: :boolean,
2692 description:
2693 "Keeps old refresh token or generate new refresh token when to obtain an access token"
2694 },
2695 %{
2696 key: :clean_expired_tokens,
2697 type: :boolean,
2698 description: "Enable a background job to clean expired OAuth tokens. Default: disabled."
2699 }
2700 ]
2701 },
2702 %{
2703 group: :pleroma,
2704 key: :emoji,
2705 type: :group,
2706 children: [
2707 %{
2708 key: :shortcode_globs,
2709 type: {:list, :string},
2710 description: "Location of custom emoji files. * can be used as a wildcard.",
2711 suggestions: ["/emoji/custom/**/*.png"]
2712 },
2713 %{
2714 key: :pack_extensions,
2715 type: {:list, :string},
2716 description:
2717 "A list of file extensions for emojis, when no emoji.txt for a pack is present",
2718 suggestions: [".png", ".gif"]
2719 },
2720 %{
2721 key: :groups,
2722 type: {:keyword, {:list, :string}},
2723 description:
2724 "Emojis are ordered in groups (tags). This is an array of key-value pairs where the key is the group name" <>
2725 " and the value is the location or array of locations. * can be used as a wildcard.",
2726 suggestions: [
2727 Custom: ["/emoji/*.png", "/emoji/**/*.png"]
2728 ]
2729 },
2730 %{
2731 key: :default_manifest,
2732 type: :string,
2733 description:
2734 "Location of the JSON-manifest. This manifest contains information about the emoji-packs you can download." <>
2735 " Currently only one manifest can be added (no arrays).",
2736 suggestions: ["https://git.pleroma.social/pleroma/emoji-index/raw/master/index.json"]
2737 },
2738 %{
2739 key: :shared_pack_cache_seconds_per_file,
2740 label: "Shared pack cache s/file",
2741 type: :integer,
2742 descpiption:
2743 "When an emoji pack is shared, the archive is created and cached in memory" <>
2744 " for this amount of seconds multiplied by the number of files.",
2745 suggestions: [60]
2746 }
2747 ]
2748 },
2749 %{
2750 group: :pleroma,
2751 key: :rate_limit,
2752 type: :group,
2753 description:
2754 "Rate limit settings. This is an advanced feature enabled only for :authentication by default.",
2755 children: [
2756 %{
2757 key: :search,
2758 type: [:tuple, {:list, :tuple}],
2759 description: "For the search requests (account & status search etc.)",
2760 suggestions: [{1000, 10}, [{10_000, 10}, {10_000, 50}]]
2761 },
2762 %{
2763 key: :timeline,
2764 type: [:tuple, {:list, :tuple}],
2765 description: "For requests to timelines (each timeline has it's own limiter)",
2766 suggestions: [{1000, 10}, [{10_000, 10}, {10_000, 50}]]
2767 },
2768 %{
2769 key: :app_account_creation,
2770 type: [:tuple, {:list, :tuple}],
2771 description: "For registering user accounts from the same IP address",
2772 suggestions: [{1000, 10}, [{10_000, 10}, {10_000, 50}]]
2773 },
2774 %{
2775 key: :relations_actions,
2776 type: [:tuple, {:list, :tuple}],
2777 description: "For actions on relationships with all users (follow, unfollow)",
2778 suggestions: [{1000, 10}, [{10_000, 10}, {10_000, 50}]]
2779 },
2780 %{
2781 key: :relation_id_action,
2782 label: "Relation ID action",
2783 type: [:tuple, {:list, :tuple}],
2784 description: "For actions on relation with a specific user (follow, unfollow)",
2785 suggestions: [{1000, 10}, [{10_000, 10}, {10_000, 50}]]
2786 },
2787 %{
2788 key: :statuses_actions,
2789 type: [:tuple, {:list, :tuple}],
2790 description:
2791 "For create / delete / fav / unfav / reblog / unreblog actions on any statuses",
2792 suggestions: [{1000, 10}, [{10_000, 10}, {10_000, 50}]]
2793 },
2794 %{
2795 key: :status_id_action,
2796 label: "Status ID action",
2797 type: [:tuple, {:list, :tuple}],
2798 description:
2799 "For fav / unfav or reblog / unreblog actions on the same status by the same user",
2800 suggestions: [{1000, 10}, [{10_000, 10}, {10_000, 50}]]
2801 },
2802 %{
2803 key: :authentication,
2804 type: [:tuple, {:list, :tuple}],
2805 description: "For authentication create / password check / user existence check requests",
2806 suggestions: [{60_000, 15}]
2807 }
2808 ]
2809 },
2810 %{
2811 group: :esshd,
2812 label: "ESSHD",
2813 type: :group,
2814 description:
2815 "Before enabling this you must add :esshd to mix.exs as one of the extra_applications " <>
2816 "and generate host keys in your priv dir with ssh-keygen -m PEM -N \"\" -b 2048 -t rsa -f ssh_host_rsa_key",
2817 children: [
2818 %{
2819 key: :enabled,
2820 type: :boolean,
2821 description: "Enables SSH"
2822 },
2823 %{
2824 key: :priv_dir,
2825 type: :string,
2826 description: "Dir with SSH keys",
2827 suggestions: ["/some/path/ssh_keys"]
2828 },
2829 %{
2830 key: :handler,
2831 type: :string,
2832 description: "Handler module",
2833 suggestions: ["Pleroma.BBS.Handler"]
2834 },
2835 %{
2836 key: :port,
2837 type: :integer,
2838 description: "Port to connect",
2839 suggestions: [10_022]
2840 },
2841 %{
2842 key: :password_authenticator,
2843 type: :string,
2844 description: "Authenticator module",
2845 suggestions: ["Pleroma.BBS.Authenticator"]
2846 }
2847 ]
2848 },
2849 %{
2850 group: :mime,
2851 label: "Mime Types",
2852 type: :group,
2853 description: "Mime Types settings",
2854 children: [
2855 %{
2856 key: :types,
2857 type: :map,
2858 suggestions: [
2859 %{
2860 "application/xml" => ["xml"],
2861 "application/xrd+xml" => ["xrd+xml"],
2862 "application/jrd+json" => ["jrd+json"],
2863 "application/activity+json" => ["activity+json"],
2864 "application/ld+json" => ["activity+json"]
2865 }
2866 ],
2867 children: [
2868 %{
2869 key: "application/xml",
2870 type: {:list, :string},
2871 suggestions: ["xml"]
2872 },
2873 %{
2874 key: "application/xrd+xml",
2875 type: {:list, :string},
2876 suggestions: ["xrd+xml"]
2877 },
2878 %{
2879 key: "application/jrd+json",
2880 type: {:list, :string},
2881 suggestions: ["jrd+json"]
2882 },
2883 %{
2884 key: "application/activity+json",
2885 type: {:list, :string},
2886 suggestions: ["activity+json"]
2887 },
2888 %{
2889 key: "application/ld+json",
2890 type: {:list, :string},
2891 suggestions: ["activity+json"]
2892 }
2893 ]
2894 }
2895 ]
2896 },
2897 %{
2898 group: :pleroma,
2899 key: :chat,
2900 type: :group,
2901 description: "Pleroma chat settings",
2902 children: [
2903 %{
2904 key: :enabled,
2905 type: :boolean
2906 }
2907 ]
2908 },
2909 %{
2910 group: :pleroma,
2911 key: :http,
2912 label: "HTTP",
2913 type: :group,
2914 description: "HTTP settings",
2915 children: [
2916 %{
2917 key: :proxy_url,
2918 label: "Proxy URL",
2919 type: [:string, :tuple],
2920 description: "Proxy URL",
2921 suggestions: ["localhost:9020", {:socks5, :localhost, 3090}]
2922 },
2923 %{
2924 key: :send_user_agent,
2925 type: :boolean
2926 },
2927 %{
2928 key: :user_agent,
2929 type: [:string, :atom],
2930 description:
2931 "What user agent to use. Must be a string or an atom `:default`. Default value is `:default`.",
2932 suggestions: ["Pleroma", :default]
2933 },
2934 %{
2935 key: :adapter,
2936 type: :keyword,
2937 description: "Adapter specific options",
2938 suggestions: [],
2939 children: [
2940 %{
2941 key: :ssl_options,
2942 type: :keyword,
2943 label: "SSL Options",
2944 description: "SSL options for HTTP adapter",
2945 children: [
2946 %{
2947 key: :versions,
2948 type: {:list, :atom},
2949 description: "List of TLS version to use",
2950 suggestions: [:tlsv1, ":tlsv1.1", ":tlsv1.2"]
2951 }
2952 ]
2953 }
2954 ]
2955 }
2956 ]
2957 },
2958 %{
2959 group: :pleroma,
2960 key: :markup,
2961 label: "Markup Settings",
2962 type: :group,
2963 children: [
2964 %{
2965 key: :allow_inline_images,
2966 type: :boolean
2967 },
2968 %{
2969 key: :allow_headings,
2970 type: :boolean
2971 },
2972 %{
2973 key: :allow_tables,
2974 type: :boolean
2975 },
2976 %{
2977 key: :allow_fonts,
2978 type: :boolean
2979 },
2980 %{
2981 key: :scrub_policy,
2982 type: {:list, :module},
2983 description:
2984 "Module names are shortened (removed leading `Pleroma.HTML.` part), but on adding custom module you need to use full name.",
2985 suggestions: [Pleroma.HTML.Transform.MediaProxy, Pleroma.HTML.Scrubber.Default]
2986 }
2987 ]
2988 },
2989 %{
2990 group: :pleroma,
2991 key: :user,
2992 type: :group,
2993 children: [
2994 %{
2995 key: :deny_follow_blocked,
2996 type: :boolean
2997 }
2998 ]
2999 },
3000 %{
3001 group: :pleroma,
3002 key: :mrf_normalize_markup,
3003 tab: :mrf,
3004 related_policy: "Pleroma.Web.ActivityPub.MRF.NormalizeMarkup",
3005 label: "MRF Normalize Markup",
3006 description: "MRF NormalizeMarkup settings. Scrub configured hypertext markup.",
3007 type: :group,
3008 children: [
3009 %{
3010 key: :scrub_policy,
3011 type: :module,
3012 suggestions: [Pleroma.HTML.Scrubber.Default]
3013 }
3014 ]
3015 },
3016 %{
3017 group: :pleroma,
3018 key: Pleroma.User,
3019 type: :group,
3020 children: [
3021 %{
3022 key: :restricted_nicknames,
3023 type: {:list, :string},
3024 suggestions: [
3025 ".well-known",
3026 "~",
3027 "about",
3028 "activities",
3029 "api",
3030 "auth",
3031 "check_password",
3032 "dev",
3033 "friend-requests",
3034 "inbox",
3035 "internal",
3036 "main",
3037 "media",
3038 "nodeinfo",
3039 "notice",
3040 "oauth",
3041 "objects",
3042 "ostatus_subscribe",
3043 "pleroma",
3044 "proxy",
3045 "push",
3046 "registration",
3047 "relay",
3048 "settings",
3049 "status",
3050 "tag",
3051 "user-search",
3052 "user_exists",
3053 "users",
3054 "web"
3055 ]
3056 }
3057 ]
3058 },
3059 %{
3060 group: :cors_plug,
3061 label: "CORS plug config",
3062 type: :group,
3063 children: [
3064 %{
3065 key: :max_age,
3066 type: :integer,
3067 suggestions: [86_400]
3068 },
3069 %{
3070 key: :methods,
3071 type: {:list, :string},
3072 suggestions: ["POST", "PUT", "DELETE", "GET", "PATCH", "OPTIONS"]
3073 },
3074 %{
3075 key: :expose,
3076 type: {:list, :string},
3077 suggestions: [
3078 "Link",
3079 "X-RateLimit-Reset",
3080 "X-RateLimit-Limit",
3081 "X-RateLimit-Remaining",
3082 "X-Request-Id",
3083 "Idempotency-Key"
3084 ]
3085 },
3086 %{
3087 key: :credentials,
3088 type: :boolean
3089 },
3090 %{
3091 key: :headers,
3092 type: {:list, :string},
3093 suggestions: ["Authorization", "Content-Type", "Idempotency-Key"]
3094 }
3095 ]
3096 },
3097 %{
3098 group: :pleroma,
3099 key: Pleroma.Plugs.RemoteIp,
3100 type: :group,
3101 description: """
3102 `Pleroma.Plugs.RemoteIp` is a shim to call [`RemoteIp`](https://git.pleroma.social/pleroma/remote_ip) but with runtime configuration.
3103 **If your instance is not behind at least one reverse proxy, you should not enable this plug.**
3104 """,
3105 children: [
3106 %{
3107 key: :enabled,
3108 type: :boolean,
3109 description: "Enable/disable the plug. Default: disabled."
3110 },
3111 %{
3112 key: :headers,
3113 type: {:list, :string},
3114 description:
3115 "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]`."
3116 },
3117 %{
3118 key: :proxies,
3119 type: {:list, :string},
3120 description:
3121 "A list of strings in [CIDR](https://en.wikipedia.org/wiki/CIDR) notation specifying the IPs of known proxies. Default: `[]`."
3122 },
3123 %{
3124 key: :reserved,
3125 type: {:list, :string},
3126 description:
3127 "Defaults to [localhost](https://en.wikipedia.org/wiki/Localhost) and [private network](https://en.wikipedia.org/wiki/Private_network)."
3128 }
3129 ]
3130 },
3131 %{
3132 group: :pleroma,
3133 key: :web_cache_ttl,
3134 label: "Web cache TTL",
3135 type: :group,
3136 description:
3137 "The expiration time for the web responses cache. Values should be in milliseconds or `nil` to disable expiration.",
3138 children: [
3139 %{
3140 key: :activity_pub,
3141 type: :integer,
3142 description:
3143 "Activity pub routes (except question activities). Default: `nil` (no expiration).",
3144 suggestions: [30_000, nil]
3145 },
3146 %{
3147 key: :activity_pub_question,
3148 type: :integer,
3149 description: "Activity pub routes (question activities). Default: `30_000` (30 seconds).",
3150 suggestions: [30_000]
3151 }
3152 ]
3153 },
3154 %{
3155 group: :pleroma,
3156 key: :static_fe,
3157 label: "Static FE",
3158 type: :group,
3159 description:
3160 "Render profiles and posts using server-generated HTML that is viewable without using JavaScript",
3161 children: [
3162 %{
3163 key: :enabled,
3164 type: :boolean,
3165 description: "Enables the rendering of static HTML. Default: disabled."
3166 }
3167 ]
3168 },
3169 %{
3170 group: :pleroma,
3171 key: :feed,
3172 type: :group,
3173 description: "Configure feed rendering",
3174 children: [
3175 %{
3176 key: :post_title,
3177 type: :map,
3178 description: "Configure title rendering",
3179 children: [
3180 %{
3181 key: :max_length,
3182 type: :integer,
3183 description: "Maximum number of characters before truncating title",
3184 suggestions: [100]
3185 },
3186 %{
3187 key: :omission,
3188 type: :string,
3189 description: "Replacement which will be used after truncating string",
3190 suggestions: ["..."]
3191 }
3192 ]
3193 }
3194 ]
3195 },
3196 %{
3197 group: :pleroma,
3198 key: :mrf_object_age,
3199 tab: :mrf,
3200 related_policy: "Pleroma.Web.ActivityPub.MRF.ObjectAgePolicy",
3201 label: "MRF Object Age",
3202 type: :group,
3203 description:
3204 "Rejects or delists posts based on their timestamp deviance from your server's clock.",
3205 children: [
3206 %{
3207 key: :threshold,
3208 type: :integer,
3209 description: "Required age (in seconds) of a post before actions are taken.",
3210 suggestions: [172_800]
3211 },
3212 %{
3213 key: :actions,
3214 type: {:list, :atom},
3215 description:
3216 "A list of actions to apply to the post. `:delist` removes the post from public timelines; " <>
3217 "`:strip_followers` removes followers from the ActivityPub recipient list ensuring they won't be delivered to home timelines; " <>
3218 "`:reject` rejects the message entirely",
3219 suggestions: [:delist, :strip_followers, :reject]
3220 }
3221 ]
3222 },
3223 %{
3224 group: :pleroma,
3225 key: :modules,
3226 type: :group,
3227 description: "Custom Runtime Modules",
3228 children: [
3229 %{
3230 key: :runtime_dir,
3231 type: :string,
3232 description: "A path to custom Elixir modules (such as MRF policies)."
3233 }
3234 ]
3235 },
3236 %{
3237 group: :pleroma,
3238 key: :streamer,
3239 type: :group,
3240 description: "Settings for notifications streamer",
3241 children: [
3242 %{
3243 key: :workers,
3244 type: :integer,
3245 description: "Number of workers to send notifications",
3246 suggestions: [3]
3247 },
3248 %{
3249 key: :overflow_workers,
3250 type: :integer,
3251 description: "Maximum number of workers created if pool is empty",
3252 suggestions: [2]
3253 }
3254 ]
3255 },
3256 %{
3257 group: :pleroma,
3258 key: :connections_pool,
3259 type: :group,
3260 description: "Advanced settings for `gun` connections pool",
3261 children: [
3262 %{
3263 key: :connection_acquisition_wait,
3264 type: :integer,
3265 description:
3266 "Timeout to acquire a connection from pool.The total max time is this value multiplied by the number of retries. Default: 250ms.",
3267 suggestions: [250]
3268 },
3269 %{
3270 key: :connection_acquisition_retries,
3271 type: :integer,
3272 description:
3273 "Number of attempts to acquire the connection from the pool if it is overloaded. Default: 5",
3274 suggestions: [5]
3275 },
3276 %{
3277 key: :max_connections,
3278 type: :integer,
3279 description: "Maximum number of connections in the pool. Default: 250 connections.",
3280 suggestions: [250]
3281 },
3282 %{
3283 key: :await_up_timeout,
3284 type: :integer,
3285 description: "Timeout while `gun` will wait until connection is up. Default: 5000ms.",
3286 suggestions: [5000]
3287 },
3288 %{
3289 key: :reclaim_multiplier,
3290 type: :integer,
3291 description:
3292 "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",
3293 suggestions: [0.1]
3294 }
3295 ]
3296 },
3297 %{
3298 group: :pleroma,
3299 key: :pools,
3300 type: :group,
3301 description: "Advanced settings for `gun` workers pools",
3302 children:
3303 Enum.map([:federation, :media, :upload, :default], fn pool_name ->
3304 %{
3305 key: pool_name,
3306 type: :keyword,
3307 description: "Settings for #{pool_name} pool.",
3308 children: [
3309 %{
3310 key: :size,
3311 type: :integer,
3312 description: "Maximum number of concurrent requests in the pool.",
3313 suggestions: [50]
3314 },
3315 %{
3316 key: :max_waiting,
3317 type: :integer,
3318 description:
3319 "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",
3320 suggestions: [10]
3321 }
3322 ]
3323 }
3324 end)
3325 },
3326 %{
3327 group: :pleroma,
3328 key: :hackney_pools,
3329 type: :group,
3330 description: "Advanced settings for `hackney` connections pools",
3331 children: [
3332 %{
3333 key: :federation,
3334 type: :keyword,
3335 description: "Settings for federation pool.",
3336 children: [
3337 %{
3338 key: :max_connections,
3339 type: :integer,
3340 description: "Number workers in the pool.",
3341 suggestions: [50]
3342 },
3343 %{
3344 key: :timeout,
3345 type: :integer,
3346 description: "Timeout while `hackney` will wait for response.",
3347 suggestions: [150_000]
3348 }
3349 ]
3350 },
3351 %{
3352 key: :media,
3353 type: :keyword,
3354 description: "Settings for media pool.",
3355 children: [
3356 %{
3357 key: :max_connections,
3358 type: :integer,
3359 description: "Number workers in the pool.",
3360 suggestions: [50]
3361 },
3362 %{
3363 key: :timeout,
3364 type: :integer,
3365 description: "Timeout while `hackney` will wait for response.",
3366 suggestions: [150_000]
3367 }
3368 ]
3369 },
3370 %{
3371 key: :upload,
3372 type: :keyword,
3373 description: "Settings for upload pool.",
3374 children: [
3375 %{
3376 key: :max_connections,
3377 type: :integer,
3378 description: "Number workers in the pool.",
3379 suggestions: [25]
3380 },
3381 %{
3382 key: :timeout,
3383 type: :integer,
3384 description: "Timeout while `hackney` will wait for response.",
3385 suggestions: [300_000]
3386 }
3387 ]
3388 }
3389 ]
3390 },
3391 %{
3392 group: :pleroma,
3393 key: :restrict_unauthenticated,
3394 type: :group,
3395 description:
3396 "Disallow viewing timelines, user profiles and statuses for unauthenticated users.",
3397 children: [
3398 %{
3399 key: :timelines,
3400 type: :map,
3401 description: "Settings for public and federated timelines.",
3402 children: [
3403 %{
3404 key: :local,
3405 type: :boolean,
3406 description: "Disallow view public timeline."
3407 },
3408 %{
3409 key: :federated,
3410 type: :boolean,
3411 description: "Disallow view federated timeline."
3412 }
3413 ]
3414 },
3415 %{
3416 key: :profiles,
3417 type: :map,
3418 description: "Settings for user profiles.",
3419 children: [
3420 %{
3421 key: :local,
3422 type: :boolean,
3423 description: "Disallow view local user profiles."
3424 },
3425 %{
3426 key: :remote,
3427 type: :boolean,
3428 description: "Disallow view remote user profiles."
3429 }
3430 ]
3431 },
3432 %{
3433 key: :activities,
3434 type: :map,
3435 description: "Settings for statuses.",
3436 children: [
3437 %{
3438 key: :local,
3439 type: :boolean,
3440 description: "Disallow view local statuses."
3441 },
3442 %{
3443 key: :remote,
3444 type: :boolean,
3445 description: "Disallow view remote statuses."
3446 }
3447 ]
3448 }
3449 ]
3450 },
3451 %{
3452 group: :pleroma,
3453 key: Pleroma.Web.ApiSpec.CastAndValidate,
3454 type: :group,
3455 children: [
3456 %{
3457 key: :strict,
3458 type: :boolean,
3459 description:
3460 "Enables strict input validation (useful in development, not recommended in production)"
3461 }
3462 ]
3463 },
3464 %{
3465 group: :pleroma,
3466 key: :instances_favicons,
3467 type: :group,
3468 description: "Control favicons for instances",
3469 children: [
3470 %{
3471 key: :enabled,
3472 type: :boolean,
3473 description: "Allow/disallow displaying and getting instances favicons"
3474 }
3475 ]
3476 },
3477 %{
3478 group: :ex_aws,
3479 key: :s3,
3480 type: :group,
3481 descriptions: "S3 service related settings",
3482 children: [
3483 %{
3484 key: :access_key_id,
3485 type: :string,
3486 description: "S3 access key ID",
3487 suggestions: ["AKIAQ8UKHTGIYN7DMWWJ"]
3488 },
3489 %{
3490 key: :secret_access_key,
3491 type: :string,
3492 description: "Secret access key",
3493 suggestions: ["JFGt+fgH1UQ7vLUQjpW+WvjTdV/UNzVxcwn7DkaeFKtBS5LvoXvIiME4NQBsT6ZZ"]
3494 },
3495 %{
3496 key: :host,
3497 type: :string,
3498 description: "S3 host",
3499 suggestions: ["s3.eu-central-1.amazonaws.com"]
3500 }
3501 ]
3502 },
3503 %{
3504 group: :pleroma,
3505 key: :frontends,
3506 type: :group,
3507 description: "Installed frontends management",
3508 children: [
3509 %{
3510 key: :primary,
3511 type: :map,
3512 description: "Primary frontend, the one that is served for all pages by default",
3513 children: [
3514 %{
3515 key: "name",
3516 type: :string,
3517 description: "Name of the installed primary frontend"
3518 },
3519 %{
3520 key: "ref",
3521 type: :string,
3522 description: "reference of the installed primary frontend to be used"
3523 }
3524 ]
3525 }
3526 ]
3527 }
3528 ]