p5-Net-XMPP outdated
Dmitry Kubov
dk at garant.ru
Tue Apr 12 10:29:34 UTC 2011
Finally, there is workaround:
1) port p5-Net-XMPP should require p5-Net-DNS to resolve SRV records
2) port sendxmpp (mainteiner in CC) patch
if (!$port) {
- @res = $cnx->Connect(hostname=>$host,tls=>$tls);
+ @res =
$cnx->Connect(hostname=>$host,tls=>$tls,srv=>1,componentname=>$host);
} else {
- @res = $cnx->Connect(hostname=>$host,port=>$port,tls=>$tls);
+ @res =
$cnx->Connect(hostname=>$host,port=>$port,tls=>$tls,srv=>1,componentname=>$host);
}
and it works properly
More information about the freebsd-perl
mailing list