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