To make the connection with Mitomaster working again on our server (redhat) I did two things:
  1. Add to the Perl script : use LWP::Protocol::https;
  2. Change the request to: $request = POST 'https://mitomap.org/mitomaster/websrvc.cgi',
To make the connection with Mitomaster working again in a virtual machine with CentOS6 I did three things:
  1. Add to the Perl script: use LWP::Protocol::https;
  2. Change the request to: $request = POST 'https://mitomap.org/mitomaster/websrvc.cgi',
  3. Install Perl packages perl-IO-Socket-SSL and perl-Net-SSLeay.