[#1505] Added tests, changelog entry, tweaked config settings related to replies...
[akkoma] / config / config.exs
1 # .i;;;;i.
2 # iYcviii;vXY:
3 # .YXi .i1c.
4 # .YC. . in7.
5 # .vc. ...... ;1c.
6 # i7, .. .;1;
7 # i7, .. ... .Y1i
8 # ,7v .6MMM@; .YX,
9 # .7;. ..IMMMMMM1 :t7.
10 # .;Y. ;$MMMMMM9. :tc.
11 # vY. .. .nMMM@MMU. ;1v.
12 # i7i ... .#MM@M@C. .....:71i
13 # it: .... $MMM@9;.,i;;;i,;tti
14 # :t7. ..... 0MMMWv.,iii:::,,;St.
15 # .nC. ..... IMMMQ..,::::::,.,czX.
16 # .ct: ....... .ZMMMI..,:::::::,,:76Y.
17 # c2: ......,i..Y$M@t..:::::::,,..inZY
18 # vov ......:ii..c$MBc..,,,,,,,,,,..iI9i
19 # i9Y ......iii:..7@MA,..,,,,,,,,,....;AA:
20 # iIS. ......:ii::..;@MI....,............;Ez.
21 # .I9. ......:i::::...8M1..................C0z.
22 # .z9; ......:i::::,.. .i:...................zWX.
23 # vbv ......,i::::,,. ................. :AQY
24 # c6Y. .,...,::::,,..:t0@@QY. ................ :8bi
25 # :6S. ..,,...,:::,,,..EMMMMMMI. ............... .;bZ,
26 # :6o, .,,,,..:::,,,..i#MMMMMM#v................. YW2.
27 # .n8i ..,,,,,,,::,,,,.. tMMMMM@C:.................. .1Wn
28 # 7Uc. .:::,,,,,::,,,,.. i1t;,..................... .UEi
29 # 7C...::::::::::::,,,,.. .................... vSi.
30 # ;1;...,,::::::,......... .................. Yz:
31 # v97,......... .voC.
32 # izAotX7777777777777777777777777777777777777777Y7n92:
33 # .;CoIIIIIUAA666666699999ZZZZZZZZZZZZZZZZZZZZ6ov.
34 #
35 # !!! ATTENTION !!!
36 # DO NOT EDIT THIS FILE! THIS FILE CONTAINS THE DEFAULT VALUES FOR THE CON-
37 # FIGURATION! EDIT YOUR SECRET FILE (either prod.secret.exs, dev.secret.exs).
38 #
39 # This file is responsible for configuring your application
40 # and its dependencies with the aid of the Mix.Config module.
41 #
42 # This configuration file is loaded before any dependency and
43 # is restricted to this project.
44 use Mix.Config
45
46 # General application configuration
47 config :pleroma, ecto_repos: [Pleroma.Repo]
48
49 config :pleroma, Pleroma.Repo,
50 types: Pleroma.PostgresTypes,
51 telemetry_event: [Pleroma.Repo.Instrumenter],
52 migration_lock: nil
53
54 scheduled_jobs =
55 with digest_config <- Application.get_env(:pleroma, :email_notifications)[:digest],
56 true <- digest_config[:active] do
57 [{digest_config[:schedule], {Pleroma.Daemons.DigestEmailDaemon, :perform, []}}]
58 else
59 _ -> []
60 end
61
62 config :pleroma, Pleroma.Scheduler,
63 global: true,
64 overlap: true,
65 timezone: :utc,
66 jobs: scheduled_jobs
67
68 config :pleroma, Pleroma.Captcha,
69 enabled: true,
70 seconds_valid: 300,
71 method: Pleroma.Captcha.Native
72
73 config :pleroma, Pleroma.Captcha.Kocaptcha, endpoint: "https://captcha.kotobank.ch"
74
75 config :pleroma, :hackney_pools,
76 federation: [
77 max_connections: 50,
78 timeout: 150_000
79 ],
80 media: [
81 max_connections: 50,
82 timeout: 150_000
83 ],
84 upload: [
85 max_connections: 25,
86 timeout: 300_000
87 ]
88
89 # Upload configuration
90 config :pleroma, Pleroma.Upload,
91 uploader: Pleroma.Uploaders.Local,
92 filters: [Pleroma.Upload.Filter.Dedupe],
93 link_name: false,
94 proxy_remote: false,
95 proxy_opts: [
96 redirect_on_failure: false,
97 max_body_length: 25 * 1_048_576,
98 http: [
99 follow_redirect: true,
100 pool: :upload
101 ]
102 ]
103
104 config :pleroma, Pleroma.Uploaders.Local, uploads: "uploads"
105
106 config :pleroma, Pleroma.Uploaders.S3,
107 bucket: nil,
108 streaming_enabled: true,
109 public_endpoint: "https://s3.amazonaws.com"
110
111 config :pleroma, :emoji,
112 shortcode_globs: ["/emoji/custom/**/*.png"],
113 pack_extensions: [".png", ".gif"],
114 groups: [
115 Custom: ["/emoji/*.png", "/emoji/**/*.png"]
116 ],
117 default_manifest: "https://git.pleroma.social/pleroma/emoji-index/raw/master/index.json",
118 shared_pack_cache_seconds_per_file: 60
119
120 config :pleroma, :uri_schemes,
121 valid_schemes: [
122 "https",
123 "http",
124 "dat",
125 "dweb",
126 "gopher",
127 "ipfs",
128 "ipns",
129 "irc",
130 "ircs",
131 "magnet",
132 "mailto",
133 "mumble",
134 "ssb",
135 "xmpp"
136 ]
137
138 websocket_config = [
139 path: "/websocket",
140 serializer: [
141 {Phoenix.Socket.V1.JSONSerializer, "~> 1.0.0"},
142 {Phoenix.Socket.V2.JSONSerializer, "~> 2.0.0"}
143 ],
144 timeout: 60_000,
145 transport_log: false,
146 compress: false
147 ]
148
149 # Configures the endpoint
150 config :pleroma, Pleroma.Web.Endpoint,
151 instrumenters: [Pleroma.Web.Endpoint.Instrumenter],
152 url: [host: "localhost"],
153 http: [
154 ip: {127, 0, 0, 1},
155 dispatch: [
156 {:_,
157 [
158 {"/api/v1/streaming", Pleroma.Web.MastodonAPI.WebsocketHandler, []},
159 {"/websocket", Phoenix.Endpoint.CowboyWebSocket,
160 {Phoenix.Transports.WebSocket,
161 {Pleroma.Web.Endpoint, Pleroma.Web.UserSocket, websocket_config}}},
162 {:_, Phoenix.Endpoint.Cowboy2Handler, {Pleroma.Web.Endpoint, []}}
163 ]}
164 ]
165 ],
166 protocol: "https",
167 secret_key_base: "aK4Abxf29xU9TTDKre9coZPUgevcVCFQJe/5xP/7Lt4BEif6idBIbjupVbOrbKxl",
168 signing_salt: "CqaoopA2",
169 render_errors: [view: Pleroma.Web.ErrorView, accepts: ~w(json)],
170 pubsub: [name: Pleroma.PubSub, adapter: Phoenix.PubSub.PG2],
171 secure_cookie_flag: true,
172 extra_cookie_attrs: [
173 "SameSite=Lax"
174 ]
175
176 # Configures Elixir's Logger
177 config :logger, :console,
178 level: :debug,
179 format: "\n$time $metadata[$level] $message\n",
180 metadata: [:request_id]
181
182 config :logger, :ex_syslogger,
183 level: :debug,
184 ident: "pleroma",
185 format: "$metadata[$level] $message",
186 metadata: [:request_id]
187
188 config :quack,
189 level: :warn,
190 meta: [:all],
191 webhook_url: "https://hooks.slack.com/services/YOUR-KEY-HERE"
192
193 config :mime, :types, %{
194 "application/xml" => ["xml"],
195 "application/xrd+xml" => ["xrd+xml"],
196 "application/jrd+json" => ["jrd+json"],
197 "application/activity+json" => ["activity+json"],
198 "application/ld+json" => ["activity+json"]
199 }
200
201 config :tesla, adapter: Tesla.Adapter.Hackney
202
203 # Configures http settings, upstream proxy etc.
204 config :pleroma, :http,
205 proxy_url: nil,
206 send_user_agent: true,
207 user_agent: :default,
208 adapter: [
209 ssl_options: [
210 # Workaround for remote server certificate chain issues
211 partial_chain: &:hackney_connect.partial_chain/1,
212 # We don't support TLS v1.3 yet
213 versions: [:tlsv1, :"tlsv1.1", :"tlsv1.2"]
214 ]
215 ]
216
217 config :pleroma, :instance,
218 name: "Pleroma",
219 email: "example@example.com",
220 notify_email: "noreply@example.com",
221 description: "A Pleroma instance, an alternative fediverse server",
222 limit: 5_000,
223 chat_limit: 5_000,
224 remote_limit: 100_000,
225 upload_limit: 16_000_000,
226 avatar_upload_limit: 2_000_000,
227 background_upload_limit: 4_000_000,
228 banner_upload_limit: 4_000_000,
229 poll_limits: %{
230 max_options: 20,
231 max_option_chars: 200,
232 min_expiration: 0,
233 max_expiration: 365 * 24 * 60 * 60
234 },
235 registrations_open: true,
236 federating: true,
237 federation_incoming_replies_max_depth: 100,
238 federation_reachability_timeout_days: 7,
239 federation_publisher_modules: [
240 Pleroma.Web.ActivityPub.Publisher
241 ],
242 allow_relay: true,
243 rewrite_policy: Pleroma.Web.ActivityPub.MRF.NoOpPolicy,
244 public: true,
245 quarantined_instances: [],
246 managed_config: true,
247 static_dir: "instance/static/",
248 allowed_post_formats: [
249 "text/plain",
250 "text/html",
251 "text/markdown",
252 "text/bbcode"
253 ],
254 mrf_transparency: true,
255 mrf_transparency_exclusions: [],
256 autofollowed_nicknames: [],
257 max_pinned_statuses: 1,
258 no_attachment_links: true,
259 welcome_user_nickname: nil,
260 welcome_message: nil,
261 max_report_comment_size: 1000,
262 safe_dm_mentions: false,
263 healthcheck: false,
264 remote_post_retention_days: 90,
265 skip_thread_containment: true,
266 limit_to_local_content: :unauthenticated,
267 user_bio_length: 5000,
268 user_name_length: 100,
269 max_account_fields: 10,
270 max_remote_account_fields: 20,
271 account_field_name_length: 512,
272 account_field_value_length: 2048,
273 external_user_synchronization: true,
274 extended_nickname_format: true,
275 cleanup_attachments: false
276
277 config :pleroma, :feed,
278 post_title: %{
279 max_length: 100,
280 omission: "..."
281 }
282
283 config :pleroma, :markup,
284 # XXX - unfortunately, inline images must be enabled by default right now, because
285 # of custom emoji. Issue #275 discusses defanging that somehow.
286 allow_inline_images: true,
287 allow_headings: false,
288 allow_tables: false,
289 allow_fonts: false,
290 scrub_policy: [
291 Pleroma.HTML.Scrubber.Default,
292 Pleroma.HTML.Transform.MediaProxy
293 ]
294
295 config :pleroma, :frontend_configurations,
296 pleroma_fe: %{
297 theme: "pleroma-dark",
298 logo: "/static/logo.png",
299 background: "/images/city.jpg",
300 redirectRootNoLogin: "/main/all",
301 redirectRootLogin: "/main/friends",
302 showInstanceSpecificPanel: true,
303 scopeOptionsEnabled: false,
304 formattingOptionsEnabled: false,
305 collapseMessageWithSubject: false,
306 hidePostStats: false,
307 hideUserStats: false,
308 scopeCopy: true,
309 subjectLineBehavior: "email",
310 alwaysShowSubjectInput: true
311 },
312 masto_fe: %{
313 showInstanceSpecificPanel: true
314 }
315
316 config :pleroma, :assets,
317 mascots: [
318 pleroma_fox_tan: %{
319 url: "/images/pleroma-fox-tan-smol.png",
320 mime_type: "image/png"
321 },
322 pleroma_fox_tan_shy: %{
323 url: "/images/pleroma-fox-tan-shy.png",
324 mime_type: "image/png"
325 }
326 ],
327 default_mascot: :pleroma_fox_tan
328
329 config :pleroma, :manifest,
330 icons: [
331 %{
332 src: "/static/logo.png",
333 type: "image/png"
334 }
335 ],
336 theme_color: "#282c37",
337 background_color: "#191b22"
338
339 config :pleroma, :activitypub,
340 unfollow_blocked: true,
341 outgoing_blocks: true,
342 follow_handshake_timeout: 500,
343 note_replies_output_limit: 5,
344 sign_object_fetches: true
345
346 config :pleroma, :streamer,
347 workers: 3,
348 overflow_workers: 2
349
350 config :pleroma, :user, deny_follow_blocked: true
351
352 config :pleroma, :mrf_normalize_markup, scrub_policy: Pleroma.HTML.Scrubber.Default
353
354 config :pleroma, :mrf_rejectnonpublic,
355 allow_followersonly: false,
356 allow_direct: false
357
358 config :pleroma, :mrf_hellthread,
359 delist_threshold: 10,
360 reject_threshold: 20
361
362 config :pleroma, :mrf_simple,
363 media_removal: [],
364 media_nsfw: [],
365 federated_timeline_removal: [],
366 report_removal: [],
367 reject: [],
368 accept: [],
369 avatar_removal: [],
370 banner_removal: []
371
372 config :pleroma, :mrf_keyword,
373 reject: [],
374 federated_timeline_removal: [],
375 replace: []
376
377 config :pleroma, :mrf_subchain, match_actor: %{}
378
379 config :pleroma, :mrf_vocabulary,
380 accept: [],
381 reject: []
382
383 config :pleroma, :mrf_object_age,
384 threshold: 172_800,
385 actions: [:delist, :strip_followers]
386
387 config :pleroma, :rich_media,
388 enabled: true,
389 ignore_hosts: [],
390 ignore_tld: ["local", "localdomain", "lan"],
391 parsers: [
392 Pleroma.Web.RichMedia.Parsers.TwitterCard,
393 Pleroma.Web.RichMedia.Parsers.OGP,
394 Pleroma.Web.RichMedia.Parsers.OEmbed
395 ],
396 ttl_setters: [Pleroma.Web.RichMedia.Parser.TTL.AwsSignedUrl]
397
398 config :pleroma, :media_proxy,
399 enabled: false,
400 proxy_opts: [
401 redirect_on_failure: false,
402 max_body_length: 25 * 1_048_576,
403 http: [
404 follow_redirect: true,
405 pool: :media
406 ]
407 ],
408 whitelist: []
409
410 config :pleroma, :chat, enabled: true
411
412 config :phoenix, :format_encoders, json: Jason
413
414 config :phoenix, :json_library, Jason
415
416 config :pleroma, :gopher,
417 enabled: false,
418 ip: {0, 0, 0, 0},
419 port: 9999
420
421 config :pleroma, Pleroma.Web.Metadata,
422 providers: [
423 Pleroma.Web.Metadata.Providers.OpenGraph,
424 Pleroma.Web.Metadata.Providers.TwitterCard,
425 Pleroma.Web.Metadata.Providers.RelMe,
426 Pleroma.Web.Metadata.Providers.Feed
427 ],
428 unfurl_nsfw: false
429
430 config :pleroma, :http_security,
431 enabled: true,
432 sts: false,
433 sts_max_age: 31_536_000,
434 ct_max_age: 2_592_000,
435 referrer_policy: "same-origin"
436
437 config :cors_plug,
438 max_age: 86_400,
439 methods: ["POST", "PUT", "DELETE", "GET", "PATCH", "OPTIONS"],
440 expose: [
441 "Link",
442 "X-RateLimit-Reset",
443 "X-RateLimit-Limit",
444 "X-RateLimit-Remaining",
445 "X-Request-Id",
446 "Idempotency-Key"
447 ],
448 credentials: true,
449 headers: ["Authorization", "Content-Type", "Idempotency-Key"]
450
451 config :pleroma, Pleroma.User,
452 restricted_nicknames: [
453 ".well-known",
454 "~",
455 "about",
456 "activities",
457 "api",
458 "auth",
459 "check_password",
460 "dev",
461 "friend-requests",
462 "inbox",
463 "internal",
464 "main",
465 "media",
466 "nodeinfo",
467 "notice",
468 "oauth",
469 "objects",
470 "ostatus_subscribe",
471 "pleroma",
472 "proxy",
473 "push",
474 "registration",
475 "relay",
476 "settings",
477 "status",
478 "tag",
479 "user-search",
480 "user_exists",
481 "users",
482 "web"
483 ]
484
485 config :pleroma, Oban,
486 repo: Pleroma.Repo,
487 verbose: false,
488 prune: {:maxlen, 1500},
489 queues: [
490 activity_expiration: 10,
491 federator_incoming: 50,
492 federator_outgoing: 50,
493 web_push: 50,
494 mailer: 10,
495 transmogrifier: 20,
496 scheduled_activities: 10,
497 background: 5,
498 remote_fetcher: 2,
499 attachments_cleanup: 5
500 ]
501
502 config :pleroma, :workers,
503 retries: [
504 federator_incoming: 5,
505 federator_outgoing: 5
506 ]
507
508 config :pleroma, :fetch_initial_posts,
509 enabled: false,
510 pages: 5
511
512 config :auto_linker,
513 opts: [
514 scheme: true,
515 extra: true,
516 # TODO: Set to :no_scheme when it works properly
517 validate_tld: true,
518 class: false,
519 strip_prefix: false,
520 new_window: false,
521 rel: "ugc"
522 ]
523
524 config :pleroma, :ldap,
525 enabled: System.get_env("LDAP_ENABLED") == "true",
526 host: System.get_env("LDAP_HOST") || "localhost",
527 port: String.to_integer(System.get_env("LDAP_PORT") || "389"),
528 ssl: System.get_env("LDAP_SSL") == "true",
529 sslopts: [],
530 tls: System.get_env("LDAP_TLS") == "true",
531 tlsopts: [],
532 base: System.get_env("LDAP_BASE") || "dc=example,dc=com",
533 uid: System.get_env("LDAP_UID") || "cn"
534
535 config :esshd,
536 enabled: false
537
538 oauth_consumer_strategies =
539 System.get_env("OAUTH_CONSUMER_STRATEGIES")
540 |> to_string()
541 |> String.split()
542 |> Enum.map(&hd(String.split(&1, ":")))
543
544 ueberauth_providers =
545 for strategy <- oauth_consumer_strategies do
546 strategy_module_name = "Elixir.Ueberauth.Strategy.#{String.capitalize(strategy)}"
547 strategy_module = String.to_atom(strategy_module_name)
548 {String.to_atom(strategy), {strategy_module, [callback_params: ["state"]]}}
549 end
550
551 config :ueberauth,
552 Ueberauth,
553 base_path: "/oauth",
554 providers: ueberauth_providers
555
556 config :pleroma,
557 :auth,
558 enforce_oauth_admin_scope_usage: true,
559 oauth_consumer_strategies: oauth_consumer_strategies
560
561 config :pleroma, Pleroma.Emails.Mailer, adapter: Swoosh.Adapters.Sendmail, enabled: false
562
563 config :pleroma, Pleroma.Emails.UserEmail,
564 logo: nil,
565 styling: %{
566 link_color: "#d8a070",
567 background_color: "#2C3645",
568 content_background_color: "#1B2635",
569 header_color: "#d8a070",
570 text_color: "#b9b9ba",
571 text_muted_color: "#b9b9ba"
572 }
573
574 config :prometheus, Pleroma.Web.Endpoint.MetricsExporter, path: "/api/pleroma/app_metrics"
575
576 config :pleroma, Pleroma.ScheduledActivity,
577 daily_user_limit: 25,
578 total_user_limit: 300,
579 enabled: true
580
581 config :pleroma, :email_notifications,
582 digest: %{
583 active: false,
584 schedule: "0 0 * * 0",
585 interval: 7,
586 inactivity_threshold: 7
587 }
588
589 config :pleroma, :oauth2,
590 token_expires_in: 600,
591 issue_new_refresh_token: true,
592 clean_expired_tokens: false,
593 clean_expired_tokens_interval: 86_400_000
594
595 config :pleroma, :database, rum_enabled: false
596
597 config :pleroma, :env, Mix.env()
598
599 config :http_signatures,
600 adapter: Pleroma.Signature
601
602 config :pleroma, :rate_limit,
603 authentication: {60_000, 15},
604 search: [{1000, 10}, {1000, 30}],
605 app_account_creation: {1_800_000, 25},
606 relations_actions: {10_000, 10},
607 relation_id_action: {60_000, 2},
608 statuses_actions: {10_000, 15},
609 status_id_action: {60_000, 3},
610 password_reset: {1_800_000, 5},
611 account_confirmation_resend: {8_640_000, 5},
612 ap_routes: {60_000, 15}
613
614 config :pleroma, Pleroma.ActivityExpiration, enabled: true
615
616 config :pleroma, Pleroma.Plugs.RemoteIp, enabled: true
617
618 config :pleroma, :static_fe, enabled: false
619
620 config :pleroma, :web_cache_ttl,
621 activity_pub: nil,
622 activity_pub_question: 30_000
623
624 config :pleroma, :modules, runtime_dir: "instance/modules"
625
626 config :pleroma, configurable_from_database: false
627
628 config :swarm, node_blacklist: [~r/myhtml_.*$/]
629 # Import environment specific config. This must remain at the bottom
630 # of this file so it overrides the configuration defined above.
631 import_config "#{Mix.env()}.exs"