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