=======
sms4you
forwards messages from and to SMS and connects either with
sms4you-xmpp
or sms4you-email
to choose the other mean of communication.
Nice for receiving or sending SMS, independently from carrying a SIM card.
.. figure:: ./sms4you-raspberry-pi.jpg :alt: sms4you on a Raspberry Pi
Connect a suitable GSM modem or phone <https://www.freedesktop.org/wiki/Software/ModemManager/SupportedDevices/>
__
containing a SIM card into a computer (e.g. a Raspberry Pi) at a fixed
place. Give sms4you
access to either a simple email address or a
small xmpp server. It will use this connection to receive emails or
xmpp messages to be sent out as SMS and to send out emails or xmpp
messages with received SMS messages.
There can be many reasons, why you want to use sms4you
. Here are
some examples:
good
reasons <https://www.theguardian.com/technology/2016/apr/19/ss7-hack-us-congressman-calls-texts-location-snooping>
__,
but still you want to be able to send and receive SMS.sms4you
is implemented as a Python <https://www.python.org/>
__
daemon, using Asynchronous I/O <https://docs.python.org/3/library/asyncio.html>
.
For the connection with the modem it uses
ModemManager <https://www.freedesktop.org/wiki/Software/ModemManager/>
.
The different gateways for email and xmpp have different depenedencies and
are wrapped therefore into different sub-projects:
email gateway <./docs/README.email.rst>
__xmpp gateway <./docs/README.xmpp.rst>
__Run sms4you as unprivileged user ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ::
$ sudo adduser --force-badname --group sms4you \ --home /nonexistent --no-create-home --quiet --system _sms4you $ sudo cp sms4you.conf /etc/dbus-1/system.d/ $ sudo cp sms4you.pkla /var/lib/polkit-1/localauthority/30-site.d/ $ sudo chown root:sms4you /etc/sms4you/{simpin,xmppcomponentpassword} $ sudo chmod 640 /etc/sms4you/{simpin,xmppcomponentpassword}
Copyright (C) 2019-2020
This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License along with this program. If not, see http://www.gnu.org/licenses/.
Also add information on how to contact you by electronic and paper mail.
If your software can interact with users remotely through a computer network, you should also make sure that it provides a way for users to get its source. For example, if your program is a web application, its interface could display a "Source" link that leads users to an archive of the code. There are many ways you could offer source, and different solutions will be better for different programs; see section 13 for the specific requirements.
See the LICENSE <./LICENSE>
__ for the full license text.