2022-11-25 18:23:41 +00:00
|
|
|
# mitractl: a tool for instance administrators
|
|
|
|
|
|
|
|
Commands must be run as the same user as the web service:
|
|
|
|
|
|
|
|
```shell
|
|
|
|
su mitra -c "mitractl generate-invite-code"
|
|
|
|
```
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
Print help:
|
|
|
|
|
|
|
|
```shell
|
|
|
|
mitractl --help
|
|
|
|
```
|
|
|
|
|
|
|
|
Generate RSA private key:
|
|
|
|
|
|
|
|
```shell
|
|
|
|
mitractl generate-rsa-key
|
|
|
|
```
|
|
|
|
|
|
|
|
Generate invite code:
|
|
|
|
|
|
|
|
```shell
|
|
|
|
mitractl generate-invite-code
|
|
|
|
```
|
|
|
|
|
|
|
|
List generated invites:
|
|
|
|
|
|
|
|
```shell
|
|
|
|
mitractl list-invite-codes
|
|
|
|
```
|
|
|
|
|
|
|
|
Set or change password:
|
|
|
|
|
|
|
|
```shell
|
|
|
|
mitractl set-password <user-id> <password>
|
|
|
|
```
|
|
|
|
|
|
|
|
Delete profile:
|
|
|
|
|
|
|
|
```shell
|
|
|
|
mitractl delete-profile 55a3005f-f293-4168-ab70-6ab09a879679
|
|
|
|
```
|
|
|
|
|
|
|
|
Delete post:
|
|
|
|
|
|
|
|
```shell
|
|
|
|
mitractl delete-post 55a3005f-f293-4168-ab70-6ab09a879679
|
|
|
|
```
|
|
|
|
|
2023-01-16 22:52:22 +00:00
|
|
|
Delete custom emoji:
|
|
|
|
|
|
|
|
```shell
|
|
|
|
mitractl delete-emoji 55a3005f-f293-4168-ab70-6ab09a879679
|
|
|
|
```
|
|
|
|
|
2022-11-25 18:23:41 +00:00
|
|
|
Remove remote posts and media older than 30 days:
|
|
|
|
|
|
|
|
```shell
|
|
|
|
mitractl delete-extraneous-posts 30
|
|
|
|
```
|
|
|
|
|
|
|
|
Delete attachments that don't belong to any post:
|
|
|
|
|
|
|
|
```shell
|
|
|
|
mitractl delete-unused-attachments 5
|
|
|
|
```
|
|
|
|
|
|
|
|
Delete empty remote profiles:
|
|
|
|
|
|
|
|
```shell
|
|
|
|
mitractl delete-empty-profiles 100
|
|
|
|
```
|
|
|
|
|
|
|
|
Generate ethereum address:
|
|
|
|
|
|
|
|
```shell
|
|
|
|
mitractl generate-ethereum-address
|
|
|
|
```
|
|
|
|
|
|
|
|
Update synchronization starting block of Ethereum blockchain:
|
|
|
|
|
|
|
|
```shell
|
|
|
|
mitractl update-current-block 2000000
|
|
|
|
```
|
|
|
|
|
|
|
|
Create Monero wallet:
|
|
|
|
|
|
|
|
```shell
|
|
|
|
mitractl create-monero-wallet "mitra-wallet" "passw0rd"
|
|
|
|
```
|
2022-11-25 19:11:50 +00:00
|
|
|
|
|
|
|
Check expired invoice:
|
|
|
|
|
|
|
|
```shell
|
|
|
|
mitractl check-expired-invoice 0184b062-d8d5-cbf1-a71b-6d1aafbae2ab
|
|
|
|
```
|