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