kucert
Results
2
issues of
kucert
My solution: sub urlencode { my $str = "@_"; $str =~ s/%([A-Fa-f\d]{2})/chr hex $1/eg; # decode first, there are new lines encoded by checkmk $str =~ s/([^^A-Za-z0-9\-_.~])/ sprintf "%%%02X", ord...
My solution: # replace + by 00 and delete whitespaces my $phone = $p{CONTACTPAGER}; $phone =~ s/\s+//g; $phone =~ s/\+/00/g; And use $phone instead of $p{CONTACTPAGER} for sending