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