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