Written By: |
Mark Persson |
---|---|
Manufacturer: |
Avaya |
Product: |
ASBCE |
Version: |
Any |
Patch Information: |
|
Ticket Number(s): |
Description: This article will show you how to modify / change the header to change URI and Display Name from Anonymous to something else within the Avaya SBCE (Sigma Script).
Steps:
- Build a Sigma Script and apply it to remove or modify the header. With some SIP carriers including VI, calls from 'Anonymous' will be rejected.
- See example below. Highlighted fields would need to be modified. This script will change the URI and Display Name presented on the SIP INVITE leaving the ASBCE towards the SIP provider.
act on request where %DIRECTION="OUTBOUND" and %ENTRY_POINT="POST_ROUTING"
{
if (%HEADERS["From"][1].URI.USER = "Anonymous") then
{
%HEADERS["From"][1].URI.USER="9786359700";
%HEADERS["P-Asserted-Identity"][1].URI.USER="9786359700";
%HEADERS["Diversion"][1].URI.USER="9786359700";
%HEADERS["Contact"][1].URI.USER="9786359700";
}
if (%HEADERS["From"][1].DISPLAY_NAME = "Anonymous") then
{
%HEADERS["From"[1].DISPLAY_NAME = "Company Name";
}
}
}
Disclaimer: intlx Solutions Knowledge Base
The information contained in this knowledge base ("Content") is provided for informational purposes only and is intended to be a general resource. intlx Solutions does not guarantee the accuracy, completeness, or timeliness of the Content.
Use at Your Own Risk: By accessing and using the Content, you agree that you do so at your own risk. intlx Solutions assumes no responsibility for any errors or omissions in the Content, nor for any damages or losses you may suffer arising out of or related to the use of the Content.
Current Customers: If you are a current intlx Solutions customer and have questions or require further clarification on any information presented here, please do not hesitate to contact our support team directly. They are available to assist you and ensure you have the most up-to-date information specific to your needs.
Not a Customer? If you are not currently an intlx Solutions customer but are interested in learning more about our solutions and how we can help your business, please click here. We look forward to the opportunity to discuss your needs and explore how a partnership with intlx Solutions can benefit you.
Thank you for your understanding.