commit 67dbd1266aba0942fb70787b0d49d865a87f2caf
parent e292a4a85cbd5e16d5de77c7135d97b04049d31d
Author: mys <>
Date: Wed, 22 Jul 2020 22:32:25 +0200
Fix port
Diffstat:
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/botenv b/botenv
@@ -5,10 +5,10 @@ pass="password"
# TODO multiple servers and channels
server="irc.example.com"
channel="#channel"
-port="6697"
+port="6667"
input="input"
log="bot.log"
# basic plaintext connection
-connect_command="telnet $server 6667"
-# example for tor with ssl
+connect_command="telnet $server $port"
+# example for tor with ssl, change port to 6697
#connect_command="torsocks openssl s_client -connect $server:$port"