documentation/Running-Mastodon/Administration-guide.md

6.3 KiB

Administration guide

So, you have a working Mastodon instance... now what? Here are the steps you will likely want to perform:

  1. Give your account admin privileges
  2. Customize settings like title, contact username/e-mail, description, and rules
  3. Submit your instance to a directory

All of these are optional and depend on your use case.

Turning into an admin

The following rake task:

RAILS_ENV=production bundle exec rails mastodon:make_admin USERNAME=alice

or, if using docker:

docker-compose run --rm web rails mastodon:make_admin USERNAME=alice

Would turn the local user "alice" into an admin.

Administration web interface

A user that is designated as admin = TRUE in the database is able to access a suite of administration tools, accessible from the sidebar under "Administration" from the preferences/edit profile page.

Site settings

Your site settings are stored in the settings database table, and editable through the admin interface under "Administration" -> "Site settings".

You are able to set settings such as, among others:

  • Site title
  • Contact username
  • Contact email
  • Site description
  • Site extended description

You may wish to use the extended description (shown at https://yourmastodon.instance/about/more ) to display content guidelines or a user agreement (see https://mastodon.social/about/more for an example).

Formatting for HTML settings

To achieve the best looking results, you must use well-structured HTML for the site description, site extended description, closed registrations message and others.

First, site description is one paragraph, so it's already pre-wrapped in a <p> tag, you shouldn't add others. This text is really expected to be rather short, because it will appear on all OpenGraph previews.

All other HTML fields don't have that requirement, so you are supposed to wrap your paragraphs in <p>s yourself, do not use text not wrapped in a <p> or <li> as it will be unstyled. You can use <em> tags to bolden/highlight parts of the text, and <a> tags for links.

You can use <ol> tags for numbered lists, and <ul> tags for unordered lists, with <li> for each item in the list. Do not use <li> outside of <ol> or <ul>.

You can use <hr /> as a horizontal separator.

You can use <h1>-<h6> tags for headlines. Inside the <h1> tag, you may use <small> for a subheader. The <h3> looks most natural in the current layout.

Helping users in trouble

Under "Moderation" -> "Accounts" you can find your users' accounts. You can:

  • Manually confirm their account, in case they don't have access to their confirmation email for whatever reason
  • Disable their two factor authentication, in case they lost access and backup codes
  • Reset their password, which will send them an e-mail with a link to a form to set a new one

Creating users while registration is closed

The following rake task:

RAILS_ENV=production bundle exec rails mastodon:add_user

This will guide you through creating a new user interactively. The user will get a confirmation e-mail.

Moderating content

You will e-mail notifications for new reports. Your users can report toots and accounts. You will find those reports under "Moderation" -> "Reports". Your options for dealing with reports are as follows:

  • Mark as resolved: Just dismiss the report without taking any action.
  • Suspend the offender: This is the harshest option which will permanently remove all content from the user from your server and prevent them from posting again.
  • Silence the offender: Comparable to shadowban or sandbox. This hides the user from anyone who isn't following them. The offender sees only other silenced accounts in the public timelines.
  • Delete the offending toot(s).
  • Switch the media sensitivity toggle on the offending toot(s).

When a whole instance is engaging in mass-scale hostile activity (spam, vandalism or harrassment), you can save yourself the effort of dealing with individual users by domain-blocking instead. You can create the following domain blocks:

  • Severity: None. Doesn't actually do anything by itself. Useful for choosing the "reject media" option without any other effects.
  • Severity: Silence. Applies silence (described in previous list) to all past and future accounts from the domain.
  • Severity: Suspend: Applies suspend (described in previous list) to all past and future accounts from the domain.

Additionally you can toggle the "reject media" option. When enabled, media files from the domain will not be downloaded to your servers. That includes users' avatars and headers as well as media attachments for toots.

Reactivating a previously deleted user

RAILS_ENV=production bundle exec rails c
# in rails console.
account = Account.find_by(username: 'username', domain: nil)
account.suspended = false
user = User.create!(email: 'email', password: 'password', account: account)
user.confirm
account.save!
user.save!

This will create a new user associated with the old account_id. They'll not have any followings, followers nor toots but depending on how much time has passed since the deletion, they might still appear in their old federated followers timeline. Previous federated toots might not have been deleted too.

Activity monitoring

Mastodon tracks some basic aggregated statistics about activity on your instance. This information is, by default, publicly available in the /api/v1/instance/activity API. It includes weekly unique logins, registrations and posted statuses. A "login" in this case means "using the website or API" rather than specifically using the login form.

Munin graphs can be generated to track your instance activity.

Other admins

Feel free to join for all your questions and to get some feedback from other admins!

Instance directory

If you want your instance to appear on the instance picker on joinmastodon.org or the instance directory/wizard on instances.social, you can submit it to instances.social here