ActivityPub relay in Rust
Go to file
2020-03-22 18:06:49 -05:00
migrations Use postgres for job storage 2020-03-22 16:18:36 -05:00
scss Add ructe 2020-03-20 13:40:18 -05:00
src Don't use actor for notify, fix migration dockerfile 2020-03-22 18:06:49 -05:00
templates Add ructe 2020-03-20 13:40:18 -05:00
.env Add ructe 2020-03-20 13:40:18 -05:00
.gitignore Add container build script 2020-03-21 20:29:59 -05:00
build.sh Don't use actor for notify, fix migration dockerfile 2020-03-22 18:06:49 -05:00
Cargo.lock Use postgres for job storage 2020-03-22 16:18:36 -05:00
Cargo.toml Use postgres for job storage 2020-03-22 16:18:36 -05:00
diesel.toml whatamidoing 2020-03-14 21:05:40 -05:00
Dockerfile.arm64v8 Add container build script 2020-03-21 20:29:59 -05:00
Dockerfile.migrations.arm64v8 Don't use actor for notify, fix migration dockerfile 2020-03-22 18:06:49 -05:00
LICENSE Fix VERIFY_SIGNATURES config, add README 2020-03-19 22:23:10 -05:00
README.md Add optional publish-blocks option 2020-03-21 23:50:14 -05:00

AodeRelay

A simple and efficient activitypub relay

Usage

To simply run the server, the command is as follows

$ ./relay

To add domains to the blocklist, use the -b flag and pass a list of domains

$ ./relay -b asonix.dog blimps.xyz

To remove domains from the blocklist, simply pass the -u flag along with -b

$ ./relay -ub asonix.dog blimps.xyz

The same rules apply for whitelisting domains, although domains are whitelisted with the -w flag

$ ./relay -w asonix.dog blimps.xyz
$ ./relay -uw asonix.dog blimps.xyz

Whitelisted domains are only checked against incoming activities if WHITELIST_MODE is enabled. Blocks can be published in the nodeinfo metadata by settings PUBLISH_BLOCKS to true

Subscribing

Mastodon admins can subscribe to this relay by adding the /inbox route to their relay settings. For example, if the server is https://relay.my.tld, the correct URL would be https://relay.my.tld/inbox.

Pleroma admins can subscribe to this relay by adding the /actor route to their relay settings. For ecample, if the server is https://relay.my.tld, the correct URL would be https://relay.my.tld/actor.

Supported Activities

  • Accept Follow {self}, this is a no-op
  • Reject Follow {self}, an Undo Follow is sent back
  • Announce {anything}, {anything} is Announced to listening servers
  • Create {anything}, {anything} is Announced to listening servers
  • Follow {self}, become a listener of the relay, a Follow will be sent back
  • Follow Public, become a listener of the relay
  • Undo Follow {self}, stop listening on the relay, an Undo Follow will be sent back
  • Undo Follow Public, stop listening on the relay
  • Delete {anything}, the Delete {anything} is relayed verbatim to listening servers
  • Update {anything}, the Update {anything} is relayed verbatim to listening servers

Supported Discovery Protocols

  • Webfinger
  • NodeInfo

Configuration

By default, all these values are set to development values. These are read from the environment, or from the .env file in the working directory.

HOSTNAME=localhost:8080
ADDR=127.0.0.1
PORT=8080
DEBUG=true
WHITELIST_MODE=false
VALIDATE_SIGNATURES=false
HTTPS=false
DATABASE_URL=
PRETTY_LOG=true
PUBLISH_BLOCKS=false

To run this server in production, you'll likely want to set most of them

HOSTNAME=relay.my.tld
ADDR=0.0.0.0
PORT=8080
DEBUG=false
WHITELIST_MODE=false
VALIDATE_SIGNATURES=true
HTTPS=true
DATABASE_URL=postgres://pg_user:pg_pass@pg_host:pg_port/pg_database
PRETTY_LOG=false
PUBLISH_BLOCKS=true

Contributing

Unless otherwise stated, all contributions to this project will be licensed under the CSL with the exceptions listed in the License section of this file.

License

This work is licensed under the Cooperative Software License. This is not a Free Software License, but may be considered a "source-available License." For most hobbyists, self-employed developers, worker-owned companies, and cooperatives, this software can be used in most projects so long as this software is distributed under the terms of the CSL. For more information, see the provided LICENSE file. If none exists, the license can be found online here. If you are a free software project and wish to use this software under the terms of the GNU Affero General Public License, please contact me at asonix@asonix.dog and we can sort that out. If you wish to use this project under any other license, especially in proprietary software, the answer is likely no.