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