In the wild, Bibliotheca, Envisionware, Relais, and 3M clients have all been
observed requesting status before login. Default to enabling the behaviour
by default.
Signed-off-by: Dan Scott <dan@coffeecode.net>
port="127.0.0.1:6001/tcp"
transport="RAW"
protocol="SIP/2.00"
- allow_sc_status_then_login="disabled"
+ allow_sc_status_then_login="enabled"
timeout="60" />
</listeners>
sub allow_sc_status_then_login {
my $self = shift;
- return $self->{'allow_sc_status_then_login'} =~ /true|yes|enabled/i ? 1 : 0;
+ return $self->{'allow_sc_status_then_login'} =~ /false|no|disabled/i ? 0 : 1;
}
1;