-
Notifications
You must be signed in to change notification settings - Fork 37
Home
The Call Attendant (callattendant) is a python-based, automated call attendant that runs on a lightweight Raspberry Pi or other Linux-based system. Coupled with a modem, it provides a call blocker and voice messaging system that can screen callers and block robocall and scams from your landline.
This wiki page shows you how to setup and run the callattendant. If you'd like a preview of what you can do with it, check out the User Guide.
- Raspberry Pi 3B+ or better
- US Robotics 5637 Modem
This section describes how to install the hardware and the software.
- The USR5637 Modem is connect to your Raspberry Pi via USB.
- Your home phone land-line system is connected to the USR5637 Modem via the RJ11 connection to a wall jack, or to a splitter connected to a wall jack and shared with a phone, or a splitter connected to your Telco modem and shared with the land-line phone wiring.
- Your Raspberry Pi is connected to your home network via wireless or an RJ45 network connection.
The installation calls for Python3.X.
A virtual environment is useful if your Raspberry Pi is being shared with other functions, like the Pi-hole add blocker. A virtual environment allows you isolate the Python run-time environment from other programs. If your Raspberry Pi is dedicated to the callattendant then this step is not necessary.
The following instructions create and activate a virtual environment named venv within the current folder.
# Intall - if necessary
sudo apt install virtualenv
# Create the virtual environment
virtualenv venv --python=python3
# Activate it
source venv/bin/activate
Now you're operating with a virtual Python. To check, issue the which
command and ensure the output points to your virtual environment; and also check the Python version:
$ which python
/home/pi/venv/bin/python
$ python --version
Python 3.7.3
Later, when you install the callattendant software, it will be placed within the virtual environment
folder (under lib/python3.x/site-packages
to be exact). The virtual environment, when activated, alters
your PATH so that the system looks for python and its packages within this folder hierarchy.
The software is available on PyPI. Install and update using pip
:
# Using the virtual environment you use "pip" to install the software
pip install callattendant
# You must use "pip3" on the Pi if your not using a virtual environment
pip3 install callattendant
If your not using the virtual environment, you may need to reboot or logoff/login to update the
$PATH
for your profile in order to find and use the callattendant
command.
The callattendant software includes a callattendant
command to start the system. Run this command
the first time with the --create-folder
option to create the initial data and files in the default
data folder: ~/.callattendant
. This is a hidden folder off the root of your home directory. You
can override this location with the --data-path
option.
Command line options:
Usage: callattendant --config [FILE] --data-path [FOLDER]
Options:
-c, --config [FILE] load a python configuration file
-d, --data-path [FOLDER] path to data and configuration files
-f, --create-folder create the data-path folder if it does not exist
-h, --help displays this help text
Here are some examples of the callattendant
command to start the system:
# Creating the default data folder with the default configuration
callattendant --create-folder
# Using the default configuration
callattendant
# Using the configuration file named `app.cfg` in the default location
callattendant --config app.cfg
# Using a customized config file in an alternate, existing location
callattendant --config myapp.cfg --data-path /var/lib/callattendant
After starting the system, you should see output of the form:
[Configuration]
BLOCKED_ACTIONS = ('greeting',)
BLOCKED_GREETING_FILE = resources/blocked_greeting.wav
BLOCKED_RINGS_BEFORE_ANSWER = 0
BLOCK_ENABLED = True
BLOCK_NAME_PATTERNS = {'V[0-9]{15}': 'Telemarketer Caller ID'}
BLOCK_NUMBER_PATTERNS = {}
DATABASE = data/callattendant.db
DEBUG = False
ENV = production
PERMITTED_ACTIONS = ()
PERMITTED_GREETING_FILE = resources/general_greeting.wav
PERMITTED_RINGS_BEFORE_ANSWER = 4
ROOT_PATH = /home/pi/src/callattendant/callattendant
SCREENED_ACTIONS = ('greeting', 'record_message')
SCREENED_GREETING_FILE = resources/general_greeting.wav
SCREENED_RINGS_BEFORE_ANSWER = 0
SCREENING_MODE = ('whitelist', 'blacklist')
TESTING = False
VOICE_MAIL_GOODBYE_FILE = resources/goodbye.wav
VOICE_MAIL_GREETING_FILE = resources/general_greeting.wav
VOICE_MAIL_INVALID_RESPONSE_FILE = resources/invalid_response.wav
VOICE_MAIL_LEAVE_MESSAGE_FILE = resources/please_leave_message.wav
VOICE_MAIL_MENU_FILE = resources/voice_mail_menu.wav
VOICE_MAIL_MESSAGE_FOLDER = data/messages
{MSG LED OFF}
Staring the Flask webapp
Running Flask webapp
* Serving Flask app "userinterface.webapp" (lazy loading)
* Environment: production
WARNING: This is a development server. Do not use it in a production deployment.
Use a production WSGI server instead.
* Debug mode: off
Modem COM Port is: /dev/ttyACM0
Make a few calls to yourself to test the service. The standard output will show the
progress of the calls. Then navigate to http://<pi-address>|<pi-hostname>:5000
in a
web browser to checkout the web interface.
Press ctrl-c
a couple of times to exit the system
To view the web interface, simply point your web browser to port 5000
on your Raspberry Pi.
For example, in your Raspberry Pi's browser, you can use:
http://localhost:5000/
See the User Guide for detailed instructions on the web interface.
You can review the current configuration by navigating to the Settings page by clicking on the "gear" icon in the main menu.
To override the default configuration, edit the app.cfg
file found in the default location (~/.callattendant
).
Use an editor that provides Python syntax highlighting, like nano
. Then specify your configuration file when starting the
callattendant. See the preceding Operation for an example.
The following are select configuration elements that may be of interest. The default values are shown.
Set to False to disable call blocking (for whatever reason)
# BLOCK_ENABLED: if set to True, calls that fail screening will be blocked
BLOCK_ENABLED = True
Determines whether the permitted (whitelist) and blocked (blacklist) number lists are processed:
# SCREENING_MODE: A tuple containing: "whitelist" and/or "blacklist", or empty
SCREENING_MODE = ("whitelist", "blacklist")
Blocks callers whose caller ID name match a regular expression:
# BLOCK_NAME_PATTERNS: A regex expression dict applied to the CID names
# Example: {"V[0-9]{15}": "Telemarketer Caller ID", "O": "Unknown caller"}
BLOCK_NAME_PATTERNS = {"V[0-9]{15}": "Telemarketer Caller ID", }
Blocks callers whose number match a regular expression, for example an area code:
# BLOCK_NUMBER_PATTERNS: A regx expression dict applied to the CID numbers
# Example: {"P": "Private number",}
BLOCK_NUMBER_PATTERNS = {}
Determines what action is taken for a blocked caller:
# BLOCKED_ACTIONS: A tuple containing a combination of the following actions:
# "greeting", "record_message", "voice_mail"
# Example: No actions, just hang_up
# BLOCKED_ACTIONS = ()
# Example: Play an announcement before hanging up
# BLOCKED_ACTIONS = ("greeting", )
# Example: Record a message before hanging up, no key-press required
# BLOCKED_ACTIONS = ("record_message", )
# Example: Option to record a message; key-press required to leave message
# BLOCKED_ACTIONS = ("voice_mail", )
# Example: Play announcement and record a message; no key-press required
# BLOCKED_ACTIONS = ("greeting", "record_message" )
# Example: Play announcement and voice mail menu; key-press required to leave message
# BLOCKED_ACTIONS = ("greeting", "voice_mail" )
#
BLOCKED_ACTIONS = ("greeting", "voice_mail")
Various audio wav files may be played to the caller. You can record your own and specify them with these settings:
# BLOCKED_GREETING_FILE: The wav file to be played to blocked callers
# Example: "We're sorry, this call has been blocked by the Raspberry Pi
# call attendant. To be unblocked, leave a message with your
# justification to be unblocked."
BLOCKED_GREETING_FILE = "resources/blocked_greeting.wav"
# VOICE_MAIL_GREETING_FILE: The wav file played after answering: a general greeting
# Example: "I'm sorry we missed your call..."
VOICE_MAIL_GREETING_FILE = "resources/general_greeting.wav"
# VOICE_MAIL_GOODBYE_FILE: The wav file play just before hanging up
# Example:Goodbye"
VOICE_MAIL_GOODBYE_FILE = "resources/goodbye.wav"
# VOICE_MAIL_INVALID_RESPONSE_FILE: The wav file played on an invalid keypress
# Example: "That was an invalid response..."
VOICE_MAIL_INVALID_RESPONSE_FILE = "resources/invalid_response.wav"
# VOICE_MAIL_LEAVE_MESSAGE_FILE: The wav file played before recording a message
# Example: "Please leave a message"
VOICE_MAIL_LEAVE_MESSAGE_FILE = "resources/please_leave_message.wav"
# VOICE_MAIL_MENU_FILE: The wav file with message instructions, played after the greeting
# Example: "Press 1 to leave a message..."
VOICE_MAIL_MENU_FILE = "resources/voice_mail_menu.wav"