<div dir="ltr">Hi all,<br><br>Need some collective wisdom. I am using Opensips 3.0 and have the following snippet for failure_route:<br><br>failure_route[missed_call] {<br>        if (t_was_cancelled()) {<br>        rtpengine_delete();<br>        exit;<br>        }<br><br><br>        # redirect the failed to a different VM system<br>        if (t_check_status("487|408|486|480|603")){<br>                 rewritehostport("VM.IP:5090");<br>                t_relay();<br>                exit;<br><br>                # do not set the missed call flag again<br>        }<br>}<br><br>The call is redirected successfully to the VM if the user is not online. However, if the user is busy/declines/times out - the call is not redirected. I get the following error. I have searched quite a few answers, but don't seem to cover what I seek. Thanks for the help in advance.<br><br>Jul 11 12:56:42 ip /usr/sbin/opensips[12592]: ERROR:proto_tls:tls_conn_init: no TLS client domain found<br>Jul 11 12:56:42 ip /usr/sbin/opensips[12592]: ERROR:core:tcp_conn_new: failed to do proto 3 specific init for conn 0x7f6f38860760<br>Jul 11 12:56:42 ip /usr/sbin/opensips[12592]: ERROR:proto_tls:tls_sync_connect: tcp_conn_create failed, closing the socket<br>Jul 11 12:56:42 ip /usr/sbin/opensips[12592]: ERROR:proto_tls:proto_tls_send: connect failed<br>Jul 11 12:56:42 ip /usr/sbin/opensips[12592]: ERROR:tm:msg_send: send() to VM.IP:5090 for proto tls/3 failed<br>Jul 11 12:56:42 ip /usr/sbin/opensips[12592]: ERROR:tm:t_forward_nonack: sending request failed<br>Jul 11 12:56:42 ip /usr/sbin/opensips[12592]: ERROR:tm:w_t_relay: t_forward_nonack failed</div>