emxsys / callattendant

A python-based automated call attendant, call blocker, and voice messaging system running on a Raspberry Pi. Screens callers and block robocalls and scams with a low-cost Raspberry Pi and modem.
https://emxsys.github.io/callattendant/
MIT License
115 stars 37 forks source link

Add an option to pick up and play fax handshake on blocked calls #154

Open lucienve opened 3 years ago

lucienve commented 3 years ago

This may be of some use in reducing repeat calls, if the robocaller removes fax machines. This could either be done by playing back a .wav sample of the tones, or possibly sending the correct commands to the modem to do so itself.

drinckes commented 2 years ago

The configuration file has the option BLOCKED_GREETING_FILE that you can use to select what sound to play to blocked calls:

[Configuration]
  BLOCKED_ACTIONS = ('greeting',)
  BLOCKED_GREETING_FILE = resources/blocked_greeting.wav

Does that do what you want?