Crates.io | matrix-notify |
lib.rs | matrix-notify |
version | 0.4.2 |
source | src |
created_at | 2023-08-01 12:22:00.979437 |
updated_at | 2024-01-18 06:23:52.25817 |
description | A command line tool for sending messages to matrix chatrooms. |
homepage | |
repository | https://github.com/dennis-lawter/matrix-notify |
max_upload_size | |
id | 931833 |
size | 87,222 |
A command line tool for sending messages to matrix chatrooms.
To get started, install Matrix Notify using the following command:
cargo install matrix-notify
Before using Matrix Notify, you'll need to set up a configuration file named matrix-notify.toml
. To generate a sample config file in the current directory, run the command:
matrix-notify generate
The generated config file should be modified to match your connection settings.
When running matrix-notify
, the provided token in the config file will be used for authentication. If an authentication error occurs or no token is provided, the password will be used instead. If password authentication succeeds, the config file will be automatically updated with the new token.
You can safely remove the password
field from the config file once a token is generated. However, if the token becomes invalid, you'll need to provide the password again to obtain a new token.
Example matrix-notify.toml
base_url = "https://example.org"
local_username = "matrix-bot"
full_username = "@matrix-bot:example.org"
password = "Plaintext password"
For optimal security, it's recommended to create a dedicated Matrix user for use with this tool, as user credentials and/or access tokens will be stored in the plaintext config file.
To send a message to a chatroom, make sure to invite the bot user to the chatroom first. The bot user will automatically join the chatroom before sending the message if it's not already a member.
Example usage to send a message:
matrix-notify --room "\!roomid:matrix.org" --message "Lorem ipsum dolor sit amet"