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