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