From 97e19a52158ae25352fa84b4b5f29379904aa088 Mon Sep 17 00:00:00 2001 From: Pierre-Louis Bonicoli Date: Tue, 28 Feb 2017 16:21:52 +0100 Subject: [PATCH] sample conf: comment the whole file --- samples/bip.conf | 68 +++++++++++++++++++++++++----------------------- 1 file changed, 35 insertions(+), 33 deletions(-) diff --git a/samples/bip.conf b/samples/bip.conf index f350691..aea66c9 100644 --- a/samples/bip.conf +++ b/samples/bip.conf @@ -86,23 +86,23 @@ #reconn_timer = 120; # Network definition, a name and server info -network { - name = "iiens"; - server { host = "irc.iiens.net"; port = 6667; }; -}; +#network { +# name = "iiens"; +# server { host = "irc.iiens.net"; port = 6667; }; +#}; -network { - name = "oftc"; - server { host = "irc.oftc.net"; port = 6667; }; - #server { host = "other.oftc.server"; port = 6667; }; -}; +#network { +# name = "oftc"; +# server { host = "irc.oftc.net"; port = 6667; }; +# server { host = "other.oftc.server"; port = 6667; }; +#}; # SSL network sample. SSL is per-network option, not per-server ! -network { - name = "oftcs"; - ssl = true; - server { host = "ircs.oftc.net"; port = 9999; }; -}; +#network { +# name = "oftcs"; +# ssl = true; +# server { host = "ircs.oftc.net"; port = 9999; }; +#}; # Configuration example with one user who connects to two irc networks # To use the multi-server feature: @@ -201,10 +201,11 @@ network { # 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 - + #connection { + # used by bip only, required (for example: "oftc"). + #name = ; + # which ircnet to connect to, required (for example: "oftc"). + #network = ; #log = false; # disable or enable logging and backlogging for # the current connection. Overrides global # (top-level) log parameter. @@ -247,21 +248,22 @@ network { #channel { name = "#bip"; }; # name is required. # Password protected channel - channel { - name = "#elite_UnDeRgR0uNd"; - key = "sikiour"; - }; - channel { - name = "#huge(28)_activity"; + #channel { + # name = "#elite_UnDeRgR0uNd"; + # key = "sikiour"; + #}; + + #another channel { + # name = "#huge(28)_activity"; # disable backlogging of this channel. - backlog = false; - }; - }; + # backlog = false; + #}; + #}; # another connection (optional) - connection { - name = "oftc"; # used by bip only - network = "oftc"; # which ircnet to connect to + #connection { + #name = "iiens"; # used by bip only + #network = "iiens"; # which ircnet to connect to # Some options: #away_nick = "bip`away"; @@ -269,6 +271,6 @@ network { #ignore_first_nick = true; # Autojoined channels: - channel { name = "#bip"; }; - }; -}; + #channel { name = "#bip"; }; + #}; +#};