#!/bin/bash # Prune remote accounts that never interacted with a local user RAILS_ENV=production /home/mastodon/live/bin/tootctl accounts prune; # Remove remote statuses that local users never interacted with RAILS_ENV=production /home/mastodon/live/bin/tootctl statuses remove --days 365; # Remove media attachments (default: 7 days) RAILS_ENV=production /home/mastodon/live/bin/tootctl media remove; # Remove link previews (default: 180 days) RAILS_ENV=production /home/mastodon/live/bin/tootctl preview_cards remove; # Remove files not linked to any post RAILS_ENV=production /home/mastodon/live/bin/tootctl media remove-orphans;