aboutsummaryrefslogtreecommitdiff
path: root/README.md
AgeCommit message (Collapse)Author
2026-02-10Release lilin v0.2.0 (2026-02-10)HEADv0.2.0maindevShulhan
**🪵 all: rename notif field "webhook_url" to "remote_url" These changes is to minimize duplicate field on "notif" section, so different kind of notif can use the same "remote_url" value. **🌱 all: support sending notification to SMTP server (email)** In the main configuration, lilin.cfg, user now can add "notif" section with kind "smtp" to send notification using user's email.
2026-01-21all: implement default down and up templates under section "[default"]Shulhan
To minimize defining the same templates in notification, user can set default down and up templates under the default section.
2026-01-20all: support sending notification to SMTP server (email)Shulhan
In the main configuration, lilin.cfg, user now can add "notif" section with kind "smtp" to send notification using user's email. This require renaming "webhook_url" to "remote_url" to minimize duplicate field, so different kind of notif can use the same "remote_url" value.
2025-12-27all: update the README and annotate some files using REUSE.tomlShulhan
In the README, we add section on how building the program, the main configuration, and how to monitor the services using configuration. Inside the _www directory, we create doc/ directory that contains symlink to README.md as index.md. This allow us to serve the lilin as page under https://kilabit.info/project/lilin .
2025-09-26all: implement notification using Mattermost incoming webhookShulhan
In the server configuration, one can defined the following section to send the notification using Mattermost, [notif] kind = mattermost webhook_url = # The incoming webhook URL. channel = # The channel where the notification will be placed. down_template = # Message template when service is down. up_template = # Message template when service is up.