2023-01-12 01:17:23 +01:00
## Login fails if password contains special characters
See [#4 ](https://github.com/YunoHost-Apps/akkoma_ynh/issues/4 ) for more explaination.
2022-12-20 17:59:20 +01:00
## Limitations
- **Akkoma** require a dedicated **root domain** , eg. akkoma.domain.tld
- **Akkoma** require a valid **certificate** installed on the domain. Yunohost can **install Letsencrypt certificate** on the domain from **admin web-interface** or through **command-line** .
- This package is currently set to **single-instance** that means you can run a **single Akkoma instance** on a **single server** .
- LDAP supported but HTTP auth not.
## Admin Tasks
2023-01-12 01:24:02 +01:00
Go to **cd /var/www/akkoma/live** .
2022-12-20 17:59:20 +01:00
### Adding users
**Run:**
2023-01-12 01:24:02 +01:00
$ ( cd /var/www/akkoma/live & & sudo -u akkoma MIX_ENV=prod ./bin/pleroma_ctl user new < NICKNAME > < EMAIL > )
2022-12-20 17:59:20 +01:00
### Password reset
**Run:**
2023-01-12 01:24:02 +01:00
$ ( cd /var/www/akkoma/live & & sudo -u akkoma MIX_ENV=prod ./bin/pleroma_ctl user reset_password < NICKNAME > )
2022-12-20 17:59:20 +01:00
This will generate a **password reset link** that you can then send to the user.
### Moderators
You can make users **moderators** . They will then be able to **delete any post** .
**Run:**
2023-01-12 01:24:02 +01:00
$ ( cd /var/www/akkoma/live & & sudo -u akkoma MIX_ENV=prod ./bin/pleroma_ctl user set < NICKNAME > --[no-]admin )
2022-12-20 17:59:20 +01:00
**--admin** option will **make the user moderator** and ** --no-admin** will **take away the moderator privileges** from the user.