SIP 302 Moved Temporarily vs 493 Undecipherable
Embed This Widget
Add the script tag and a data attribute to embed this widget.
Embed via iframe for maximum compatibility.
<iframe src="https://statuscodefyi.com/iframe/entity//" width="420" height="400" frameborder="0" style="border:0;border-radius:10px;max-width:100%" loading="lazy"></iframe>
Paste this URL in WordPress, Medium, or any oEmbed-compatible platform.
https://statuscodefyi.com/entity//
Add a dynamic SVG badge to your README or docs.
[](https://statuscodefyi.com/entity//)
Use the native HTML custom element.
SIP 302 (Moved Temporarily) is a 3xx Redirection response, while 493 (Undecipherable) is a 4xx Client Failure response. 302 indicates that the callee has temporarily moved to a different address. The client should retry the request at the Contact address but continue using the original URI for future requests. In contrast, 493 means that the request body was encrypted with S/MIME but the server cannot decrypt it. The server may lack the necessary key or certificate.
Description
The callee has temporarily moved to a different address. The client should retry the request at the Contact address but continue using the original URI for future requests.
When You See It
When a user is temporarily reachable at a different location, such as when traveling or using a different device.
How to Fix
Redirect the current call to the Contact URI provided, but keep the original URI for future requests.
Description
The request body was encrypted with S/MIME but the server cannot decrypt it. The server may lack the necessary key or certificate.
When You See It
When using S/MIME encryption for SIP message bodies and the recipient does not have the corresponding decryption key.
How to Fix
Ensure the recipient has the correct S/MIME certificate and private key. Consider using TLS for transport-layer encryption instead.
Key Differences
302 is a 3xx Redirection response, while 493 is a 4xx Client Failure response.
SIP 302: The callee has temporarily moved to a different address. The client should retry the request at the Contact address but continue using the original URI for future requests.
SIP 493: The request body was encrypted with S/MIME but the server cannot decrypt it. The server may lack the necessary key or certificate.
You encounter 302 when when a user is temporarily reachable at a different location, such as when traveling or using a different device.
You encounter 493 when when using S/MIME encryption for SIP message bodies and the recipient does not have the corresponding decryption key.
When to Use Which
For 302 (Moved Temporarily): Redirect the current call to the Contact URI provided, but keep the original URI for future requests. For 493 (Undecipherable): Ensure the recipient has the correct S/MIME certificate and private key. Consider using TLS for transport-layer encryption instead.