24
1
Fork 0

Added docs/takedowns.md for DMCA removal instructions

This commit is contained in:
Danny Coates 2018-01-05 13:42:19 -08:00
parent c246d8d517
commit 46f641aaec
No known key found for this signature in database
GPG Key ID: 4C442633C62E00CB
1 changed files with 17 additions and 0 deletions

17
docs/takedowns.md Normal file
View File

@ -0,0 +1,17 @@
## Take-down process
In cases of a DMCA notice, or other abuse yet to be determined, a file has to be removed from the service.
Files can be delisted and made inaccessible by removing their record from Redis.
Send share links contain the id of the file, for example `https://send.firefox.com/download/3d9d2bb9a1`
From a host with access to the Redis server run a `DEL` command with the file id.
For example:
```sh
redis-cli DEL 3d9d2bb9a1
```
Other redis-cli parameters like `-h` may also be required. See [redis-cli docs](https://redis.io/topics/rediscli) for more info.