Compare commits

...

2 commits

Author SHA1 Message Date
Wolfgang Kroener e212498e31 add infos and installation instructions 2024-01-04 14:49:52 +01:00
Wolfgang Kroener 1ffd51aa1c add systemd user .service file 2024-01-04 14:42:31 +01:00
2 changed files with 56 additions and 0 deletions

View file

@ -1,2 +1,47 @@
# dapnet2ntfy
**dapnet2ntfy** forwards messages from the [DAPNET](https://hampager.de/) to [ntfy](https://ntfy.sh/).
Similar to other [gateways](https://hampager.de/dokuwiki/doku.php#gateways_apps), especially the [Telegram Bot DB0USD](https://hampager.de/dokuwiki/doku.php?id=usecasetelegrambot), it allows receiving messages, when there is no pager with reception at hand.
## Prerequisites
### DAPNET account
A normal account at [hampager.de](https://support.hampager.de/open.php) (select 'Help Topic -> New DAPNET Account with or without RIC').
A transmitter registered at [hampager.de](https://support.hampager.de/open.php) (select 'Help Topic -> New DAPNET Transmitter').
### ntfy account
Use ntfy.sh or set up your own server: [DOCS](https://docs.ntfy.sh/).
### perl modules
- IO::Socket::INET
- IO::Socket::Timeout
- Errno
- HTTP::Request
- LWP::UserAgent
- MIME::Base64
- POSIX
- utf8
#### For Debian:
```console
apt install perl-base libio-socket-timeout-perl libhttp-message-perl libwww-perl
```
## Installation
Instructions for installing the script to $HOME/bin/
```console
systemctl --user daemon-reload
mkdir -p $HOME/.config/systemd/user/
cp dapnet2ntfy.service $HOME/.config/systemd/user/
mkdir -p $HOME/bin
install -m 700 dapnet2ntfy.pl $HOME/bin/
# edit the configuration section to your needs
systemctl --user daemon-reload
systemctl --user enable dapnet2ntfy.service --now
```

11
dapnet2ntfy.service Normal file
View file

@ -0,0 +1,11 @@
[Unit]
Description=Gateway for messages from DAPNET to ntfy
After=network-online.target
[Service]
ExecStart=%h/bin/dapnet2ntfy.pl
Restart=always
[Install]
WantedBy=default.target