If you don’t have an eUICC yet, you can purchase one from eSTK.me and use the coupon code eSIMCyou
to get 10% off. We recommend eSTK.me if you need to perform profile downloads on iOS devices.
If you require more than 1MB of storage to install multiple eSIM profiles, we recommend 9eSIM. Use the coupon code DAMON
to also receive 10% off.
This program enables you to manage your SMS via a Telegram bot, including tasks such as receiving and sending SMS. To use this program, you will need a Telegram account and a Telegram bot. You can create a Telegram bot by interacting with BotFather and following the provided instructions.
I have thoroughly tested this program and found it to work well. However, its compatibility with your system may vary. Should you encounter any issues, please do not hesitate to inform me.
- Qualcomm 410 WiFi Dongle
- Quectel EC20
- Quectel EM12-G
- ModemManager: Essential for managing modems.
- libqmi: Version 1.35.5 or higher is required. (for QMI modems)
- libmbim: Version 1.26.0 or higher is required. (for MBIM modems)
You can obtain the latest release from the releases page.
If you want to build it yourself, you can run the following commands:
git clone git@github.com:damonto/telmo.git
cd telmo
go build -trimpath -ldflags="-w -s" -o telmo main.go
Sometimes, you might need to set executable permissions for the binary file using the following command:
chmod +x telmo
Once done, you can run the program with root privileges:
sudo ./telmo --bot-token=YourTelegramToken --admin-id=YourTelegramChatID
libqmi
requires you to have libqmi
version 1.35.5 or later installed. If your package manager doesn't provide the latest version, you can build it from source. The following instructions are for building libqmi
using meson
and ninja
. Make sure you have the necessary dependencies installed on your system.
For detailed build instructions, refer to libqmi's official documentation.
# sudo pacman -S --needed meson ninja pkg-config bash-completion libgirepository help2man glib2 libgudev libmbim libqrtr-glib (Arch Linux)
# sudo apt-get install -y meson ninja-build pkg-config bash-completion libgirepository1.0-dev help2man libglib2.0-dev libgudev-1.0-dev libmbim-glib-dev libqrtr-glib-dev (Ubuntu/Debian)
git clone https://gitlab.freedesktop.org/mobile-broadband/libqmi.git
cd libqmi
meson setup build --prefix=/usr --buildtype=release
sudo ninja -j$(nproc) -C build
sudo ninja -C build install
Once you have compiled and installed libqmi
, you can run the program with the following command:
sudo ./telmo --bot-token=YourTelegramToken --admin-id=YourTelegramChatID
If you wish to run the program in the background, you can utilize the systemctl
command. Here is an example of how to achieve this:
- Start by creating a service file in the
/etc/systemd/system
directory. For instance, you can name the filetelmo.service
and include the following content:
[Unit]
Description=Telegram Mobile
After=network.target
[Service]
Type=simple
User=root
Restart=on-failure
ExecStart=/your/binary/path/here/telmo --bot-token=YourTelegramToken --admin-id=YourTelegramChatID
RestartSec=10s
TimeoutStopSec=30s
[Install]
WantedBy=multi-user.target
- Then, use the following command to start the service:
sudo systemctl start telmo
- If you want the service to start automatically upon system boot, use the following command:
sudo systemctl enable telmo