We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I would like that incoming calls showed both name and phone number.
For example, if From header is: "John Doe" <sip:666@192.168.1.2> I would like that call popup showed something like this: "John Doe - 666"
"John Doe" <sip:666@192.168.1.2>
I created a script that does it (hopefully). Just set as your incoming call script.
echo action=continue echo caller_name=$( if [[ "$SIP_FROM" =~ ^\"[^\"]*\" ]]; then echo "$SIP_FROM" | sed -r 's/^"([^"]*)".*/\1/' | sed 's/[^-_0-9a-zA-ZñÑ ]/./g' echo " - " fi echo "$SIP_FROM_USER" | sed 's/[^0-9a-zA-Z ]/./g' )
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I would like that incoming calls showed both name and phone number.
For example, if From header is:
"John Doe" <sip:666@192.168.1.2>
I would like that call popup showed something like this:
"John Doe - 666"
I created a script that does it (hopefully).
Just set as your incoming call script.
The text was updated successfully, but these errors were encountered: