summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--calico.18
-rw-r--r--extra/notify/pounce-notify.12
-rw-r--r--extra/palaver/pounce-palaver.12
-rw-r--r--pounce.18
4 files changed, 10 insertions, 10 deletions
diff --git a/calico.1 b/calico.1
index bc6b5cb..f4b5013 100644
--- a/calico.1
+++ b/calico.1
@@ -72,16 +72,16 @@ and dispatch to two instances of
 .Xr pounce 1 :
 .Bd -literal -offset indent
 certbot certonly -d oftc.example.org
-certbot certonly -d freenode.example.org
+certbot certonly -d libera.example.org
 pounce -U /var/run/calico -H oftc.example.org oftc.conf
-pounce -U /var/run/calico -H freenode.example.org freenode.conf
+pounce -U /var/run/calico -H libera.example.org libera.conf
 calico -H example.org /var/run/calico
 .Ed
 .Pp
 The two instances can be connected to via
 .Li oftc.example.org:6697
 and
-.Li freenode.example.org:6697 ,
+.Li libera.example.org:6697 ,
 respectively.
 .
 .Sh SEE ALSO
@@ -118,4 +118,4 @@ Send mail to
 or join
 .Li #ascii.town
 on
-.Li chat.freenode.net .
+.Li irc.tilde.chat .
diff --git a/extra/notify/pounce-notify.1 b/extra/notify/pounce-notify.1
index 74ee554..422a0c8 100644
--- a/extra/notify/pounce-notify.1
+++ b/extra/notify/pounce-notify.1
@@ -105,4 +105,4 @@ Send mail to
 or join
 .Li #ascii.town
 on
-.Li chat.freenode.net .
+.Li irc.tilde.chat .
diff --git a/extra/palaver/pounce-palaver.1 b/extra/palaver/pounce-palaver.1
index 37140c5..59daefa 100644
--- a/extra/palaver/pounce-palaver.1
+++ b/extra/palaver/pounce-palaver.1
@@ -104,4 +104,4 @@ Send mail to
 or join
 .Li #ascii.town
 on
-.Li chat.freenode.net .
+.Li irc.tilde.chat .
diff --git a/pounce.1 b/pounce.1
index 95d4d79..7788b9a 100644
--- a/pounce.1
+++ b/pounce.1
@@ -193,7 +193,7 @@ Blindly request the IRCv3 capabilities
 This can be used to enable hidden capabilities,
 such as
 .Sy userhost-in-names
-on freenode.
+on some networks.
 .
 .It Fl S Ar host , Cm bind = Ar host
 Bind to source address
@@ -628,14 +628,14 @@ sudo chmod g+r /etc/letsencrypt/live/irc.example.org/privkey.pem
 Start
 .Nm :
 .Bd -literal -offset indent
-pounce -H irc.example.org -h chat.freenode.net -j '#ascii.town'
+pounce -H irc.example.org -h irc.tilde.chat -j '#ascii.town'
 .Ed
 .
 .Pp
 Equivalent configuration file:
 .Bd -literal -offset indent
 local-host = irc.example.org
-host = chat.freenode.net
+host = irc.tilde.chat
 join = #ascii.town
 .Ed
 .
@@ -797,7 +797,7 @@ Send mail to
 or join
 .Li #ascii.town
 on
-.Li chat.freenode.net .
+.Li irc.tilde.chat .
 .
 .Pp
 A client will sometimes receive its own message,
other strangeness encountered. Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com> 2014-01-16auth: lua string comparisons are time invariantJason A. Donenfeld By default, strings are compared by hash, so we can remove this comment. Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com> 2014-01-16authentication: use hidden form instead of refererJason A. Donenfeld This also gives us some CSRF protection. Note that we make use of the hmac to protect the redirect value. Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com> 2014-01-16auth: add basic authentication filter frameworkJason A. Donenfeld This leverages the new lua support. See filters/simple-authentication.lua for explaination of how this works. There is also additional documentation in cgitrc.5.txt. Though this is a cookie-based approach, cgit's caching mechanism is preserved for authenticated pages. Very plugable and extendable depending on user needs. The sample script uses an HMAC-SHA1 based cookie to store the currently logged in user, with an expiration date. Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com> 2014-01-16t0111: Additions and fixesLukas Fleischer * Rename the capitalize-* filters to dump.* since they also dump the arguments. * Add full argument validation to the email filters. Signed-off-by: Lukas Fleischer <cgit@cryptocrack.de> 2014-01-16parsing.c: Remove leading space from committerLukas Fleischer