@@ -, +, @@ checkin success --- C4/SIP/Sip/MsgType.pm | 6 +++++- etc/SIPconfig.xml | 1 + 2 files changed, 6 insertions(+), 1 deletion(-) --- a/C4/SIP/Sip/MsgType.pm +++ a/C4/SIP/Sip/MsgType.pm @@ -684,7 +684,11 @@ sub handle_checkin { } } - $resp .= maybe_add( FID_ALERT_TYPE, $status->alert_type ) if $status->alert; + if ( $status->alert && $status->alert_type ) { + $resp .= maybe_add( FID_ALERT_TYPE, $status->alert_type ); + } elsif ( $server->{account}->{cv_send_00_on_success} ) { + $resp .= add_field( FID_ALERT_TYPE, '00' ); + } $resp .= maybe_add( FID_SCREEN_MSG, $status->screen_msg, $server ); $resp .= maybe_add( FID_PRINT_LINE, $status->print_line ); --- a/etc/SIPconfig.xml +++ a/etc/SIPconfig.xml @@ -51,6 +51,7 @@ --