trans

Unnamed repository; edit this file 'description' to name the repository.
git clone git://fqcor.com/trans.git
Log | Files | Refs | README | LICENSE

botenv (367B)


      1 #!/bin/bash
      2 nick="trans"
      3 # password for vhost
      4 pass="password"
      5 # TODO multiple servers and channels
      6 server="irc.example.com"
      7 channel="#channel"
      8 port="6667"
      9 input="input"
     10 log="bot.log"
     11 # basic plaintext connection
     12 connect_command="telnet $server $port"
     13 # example for tor with ssl, change port to 6697
     14 #connect_command="torsocks openssl s_client -connect $server:$port"