diff --git a/debian/bip/DEBIAN/control b/debian/bip/DEBIAN/control deleted file mode 100644 index fee7f1d..0000000 --- a/debian/bip/DEBIAN/control +++ /dev/null @@ -1,14 +0,0 @@ -Package: bip -Version: 0.0-1 -Section: net -Priority: optional -Architecture: i386 -Depends: libc6 (>= 2.3.4-1) -Installed-Size: 172 -Maintainer: Arnaud Cornet -Description: multiuser irc proxy with ssl, conversation replay and more - Bip is a IRC proxy that supports as replaying logged conversation when a client - connects, multiple clients on one irc server connection, SSL support (on both - ends) and has a handy logging directory structure. It is multiuser, and has a - flexible configuration. Some of it's configuration can be changed at runtime - with special irc commands. diff --git a/debian/bip/DEBIAN/md5sums b/debian/bip/DEBIAN/md5sums deleted file mode 100644 index f3e937e..0000000 --- a/debian/bip/DEBIAN/md5sums +++ /dev/null @@ -1,9 +0,0 @@ -2fcb2e23f48dd8e205b6e434bb0a1e49 usr/bin/bip -df1d3b30f4ccb839963d39b67fcc83e3 usr/bin/genpwent -816e04d8e35370693904cc3a06107e56 usr/share/bip/bip.conf -48f6c5372dbef10c96f251f313a4c83b usr/share/bip/bip.vim -b35795a23db4c45c95fc897375954a49 usr/share/doc/bip/README -08e6785d9f0333a1f0009c71655a8e6a usr/share/doc/bip/TODO -c9367cfeedf1700a01107616effd5c8e usr/share/doc/bip/AUTHORS -75e57f35e3a9155f3cd215d43dd31380 usr/share/doc/bip/changelog.gz -9416df600764b0209c175026fd2f7702 usr/share/doc/bip/changelog.Debian.gz diff --git a/debian/bip/usr/bin/bip b/debian/bip/usr/bin/bip deleted file mode 100755 index f4c2578..0000000 Binary files a/debian/bip/usr/bin/bip and /dev/null differ diff --git a/debian/bip/usr/bin/genpwent b/debian/bip/usr/bin/genpwent deleted file mode 100755 index 86dd442..0000000 Binary files a/debian/bip/usr/bin/genpwent and /dev/null differ diff --git a/debian/bip/usr/share/bip/bip.conf b/debian/bip/usr/share/bip/bip.conf deleted file mode 100644 index e41b8bf..0000000 --- a/debian/bip/usr/share/bip/bip.conf +++ /dev/null @@ -1,122 +0,0 @@ -# bip default config file. -# Thou shoult change thy password - -ip = "0.0.0.0"; - -# To connect a client to bip, try the port below, and -# be sure to set the username and password to the values -# specified in the network you want to connect to. -port = 7778; - -# If you set this to true, you'll only be able to connect to bip -# with a SSL capable IRC client. Be sure to generate a certificate -# for bip with 'make cert' -client_side_ssl = false; - -log_level = 3; - -# This is where logs go. Channel and private messages will use that -# configuration value as a prefix, and then log_format to determine -# full log filename. -#log_root = "/var/proxy/logs"; - -# Log format allows you to make log filenames depend on the log line's -# attributes. Here's a list : -# %u -> user name -# %n -> network name -# %Y -> 4 digit year -# %m -> 2 digit month -# %d -> 2 digit day -# %c -> destination (#chan, privates, ...) -#log_format = "%n/%Y-%m/%c.%d.log"; - -# Sets the frequency (in seconds) of log syncing (real write to kernel) -#log_sync_interval = 5; - -# Makes bip send the log of each channel and privates while -# you were not connected to the proxy upon connection. -#no_backlog = false; # disable backlog -backlog_lines = 10; # number of lines in backlog, 0 means no limit -always_backlog = true; # backlog even lines already backlogged - -# Network definition, a name and server info -network { - name = "iiens"; - server { host = "irc.iiens.net"; port = 6667; }; -}; - -network { - name = "freenode"; - server { host = "irc.freenode.org"; port = 6667; }; - server { host = "brown.freenode.net"; port = 6667; }; - server { host = "thunder.stealer.net"; port = 6667; }; -}; - -# Configuration example with one user who connects to two irc networks -# To use the multi-server feature: -# - define the connections -# - chose and setup a different login for each connection -# on your irc client: -# - Use the multi server feature of your client, the server beeing each time -# the server where bip is running. In your client setup realname or username -# to the value of login in the corresponding connection. - -# User structure is grouping information for a given user -user { - # The name in bip of the user - # This is used by bip only - name = "nohar"; - # this user's password - password = "233a8d53b55a268d4a84a3acdd5ed57d"; # (md5(md5("tata"))) - - # A user can have mutiple connections to irc networks. - # define a connection: - connection { - name = "iiens"; # used by bip only - network = "iiens"; # which ircnet to connect to - - login = "bipbip"; # used to auth user and to diffenciate - # among multiple connections of a user. - # in your irc client setup username or - # realname to this login value. - - # Information sent to the irc server: - nick = "bip`luser"; - user = "bipbip"; - realname = "coyote"; - #password = "serverpassword"; - - # Some options: - #away_nick = "bip`away"; - #follow_nick = true; - #ignore_first_nick = true; - #on_connect_send = "PRIVMSG NickServ :IDENTIFY nspassword"; - - # Autojoined channels: - channel { name = "#bip"; }; - }; - connection { - name = "freenode"; # used by bip only - network = "freenode"; # which ircnet to connect to - - login = "bipfnode"; # used to auth user and to diffenciate - # among multiple connections of a user. - # in your irc client setup username or - # realname to this login value. - - # Information sent to the irc server: - nick = "bip`luser"; - user = "bipbip"; - realname = "coyote"; - #password = "serverpassword"; - - # Some options: - #away_nick = "bip`away"; - #follow_nick = true; - #ignore_first_nick = true; - #on_connect_send = "PRIVMSG NickServ :IDENTIFY nspassword"; - - # Autojoined channels: - channel { name = "#bip"; }; - }; -}; diff --git a/debian/bip/usr/share/bip/bip.vim b/debian/bip/usr/share/bip/bip.vim deleted file mode 100644 index 9ee21ad..0000000 --- a/debian/bip/usr/share/bip/bip.vim +++ /dev/null @@ -1,135 +0,0 @@ -" Vim syntax file -" Language: Bip configuration file -" Copyright: Copyright (C) 2004 Arnaud Cornet and Loïc Gomez -" License: This file is part of the bip project. See the file 'COPYING' for -" the exact licensing terms. -" -" -" For version 5.x: Clear all syntax items -" For version 6.x: Quit when a syntax file was already loaded -if version < 600 - syntax clear -elseif exists("b:current_syntax") - finish -endif - -syn case ignore - -" Global elements -syn match bipComment contained %\s*#.*$% -syn match bipEndError contained /\(#.*\)\@ -else - command -nargs=+ HiLink hi def link -endif - -HiLink bipMain Error -HiLink bipNetwork Error -HiLink bipChannel Error -HiLink bipServer Error -HiLink bipUser Error - -" We do not HiLink bipWhite, siec we only want to ignore it. -HiLink bipKeyword Keyword -HiLink bipNKeyword Keyword -HiLink bipUKeyword Keyword -HiLink bipCKeyword Keyword -HiLink bipSKeyword Keyword -HiLink bipCoKeyword Keyword - -HiLink bipComment Comment - -HiLink bipMatch Include - -HiLink bipStringV Error -HiLink bipBoolV Error -HiLink bipNumericV Error -HiLink bipIPV Error - -HiLink bipEndError Error - -HiLink bipString String -HiLink bipBool Boolean -HiLink bipNumeric Number -HiLink bipIP String -HiLink bipAddrTk String -HiLink bipDot Delimiter -HiLink bipSlash Delimiter -HiLink bipMask Number - -delcommand HiLink - -let b:current_syntax = "bip" -" vim: ts=8 diff --git a/debian/bip/usr/share/doc/bip/AUTHORS b/debian/bip/usr/share/doc/bip/AUTHORS deleted file mode 100644 index d579fa2..0000000 --- a/debian/bip/usr/share/doc/bip/AUTHORS +++ /dev/null @@ -1,6 +0,0 @@ -Arnaud 'nohar' Cornet -Loïc 'Kyoshiro' Gomez - -Thanks to jj, YS and lafounie, for hanging around while we were coding. - -Crypto shamelessly taken from Christophe 'sexy' Devine. diff --git a/debian/bip/usr/share/doc/bip/README b/debian/bip/usr/share/doc/bip/README deleted file mode 100644 index 3be0aa0..0000000 --- a/debian/bip/usr/share/doc/bip/README +++ /dev/null @@ -1,2 +0,0 @@ -log encryption support -salt this md5 diff --git a/debian/bip/usr/share/doc/bip/TODO b/debian/bip/usr/share/doc/bip/TODO deleted file mode 100644 index b0f5b98..0000000 --- a/debian/bip/usr/share/doc/bip/TODO +++ /dev/null @@ -1,9 +0,0 @@ -- SSL certificate verification -- allowed IP filtering -- multi user (user/pass to identify user + realname to id. network) -- keep invites when detached -- DCC proxying ? -- /bip command, for admin (rehash, jump, ...) -- crypt logs - -tidy up irc_server/server structures diff --git a/debian/bip/usr/share/doc/bip/changelog.Debian.gz b/debian/bip/usr/share/doc/bip/changelog.Debian.gz deleted file mode 100644 index 1731946..0000000 Binary files a/debian/bip/usr/share/doc/bip/changelog.Debian.gz and /dev/null differ diff --git a/debian/bip/usr/share/doc/bip/changelog.gz b/debian/bip/usr/share/doc/bip/changelog.gz deleted file mode 100644 index 50116be..0000000 Binary files a/debian/bip/usr/share/doc/bip/changelog.gz and /dev/null differ