summaryrefslogtreecommitdiffstats
path: root/jabberwall.pl
diff options
context:
space:
mode:
authorFlorian Pritz <bluewind@xinu.at>2014-06-12 09:40:29 +0200
committerFlorian Pritz <bluewind@xinu.at>2014-06-12 09:40:29 +0200
commitfc32ea69f12b853ae4c4aecfd4b59aa62f9d73b7 (patch)
tree6e2b398be2b9b5493e0f3c91be2902b21b53f449 /jabberwall.pl
parent3774c0948ac1216765c15ede8839f52f5fb9e7b9 (diff)
downloadbin-fc32ea69f12b853ae4c4aecfd4b59aa62f9d73b7.tar.gz
bin-fc32ea69f12b853ae4c4aecfd4b59aa62f9d73b7.tar.xz
jabberwall.pl: enable TLS
Signed-off-by: Florian Pritz <bluewind@xinu.at>
Diffstat (limited to 'jabberwall.pl')
-rwxr-xr-xjabberwall.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/jabberwall.pl b/jabberwall.pl
index e590d6d..23267ef 100755
--- a/jabberwall.pl
+++ b/jabberwall.pl
@@ -24,7 +24,7 @@ Config::Simple->import_from("$ENV{HOME}/.jabberwallrc", \%config);
my $clnt = new Net::Jabber::Client;
-my $status = $clnt->Connect(hostname=>$config{server}, port=>$config{port});
+my $status = $clnt->Connect(hostname=>$config{server}, port=>$config{port}, tls=>1);
if (!defined($status)) {
die "Jabber connect error ($!)\n";