2015-05-18 11:22:52 +02:00
|
|
|
---
|
|
|
|
layout: post
|
|
|
|
comments: true
|
|
|
|
title: "irc & ircs links"
|
|
|
|
category: [english]
|
|
|
|
tags: [english, IRC]
|
2018-11-25 23:51:24 +01:00
|
|
|
redirect_from: /english/2015/05/18/ircs_links.html
|
2015-05-18 11:22:52 +02:00
|
|
|
---
|
|
|
|
|
|
|
|
*Yet another note-to-self post, but these links are confusing, how do you
|
2015-05-18 11:26:18 +02:00
|
|
|
make proper irc:// or ircs:// link?*
|
2015-05-18 11:22:52 +02:00
|
|
|
|
|
|
|
I started wondering about the proper way to make irc/ircs links today and
|
|
|
|
based on the following addresses
|
|
|
|
|
2015-08-30 14:54:33 +02:00
|
|
|
* https://www.iana.org/assignments/uri-schemes/prov/ircs
|
|
|
|
* https://tools.ietf.org/html/draft-butcher-irc-url-04
|
2015-05-18 11:22:52 +02:00
|
|
|
|
2015-10-10 07:30:50 +02:00
|
|
|
EDIT 2015-08-30 & 2015-10-10: I got eaten by HTML5 validator, because of
|
|
|
|
what was said above :frown: and the proper way how you make links without
|
|
|
|
getting eaten by HTML5 validator is
|
|
|
|
(https://tools.ietf.org/html/draft-butcher-irc-url-04) and the address
|
|
|
|
would become
|
2015-08-30 15:23:58 +02:00
|
|
|
`ircs://irc.example.org:6697/%23channel%2C%23%23channel%2C%21channel`.
|
|
|
|
See [Percent-encoding at Wikipedia]. Thanks Mardeg at irc.mozilla.org.
|
|
|
|
|
|
|
|
[Percent-encoding at Wikipedia]:https://en.wikipedia.org/wiki/Percent-encoding#Percent-encoding_reserved_characters
|
|
|
|
|
2015-05-18 11:22:52 +02:00
|
|
|
* specifies that the link uses SSL with the *s* (for plain text just remove
|
|
|
|
it)
|
|
|
|
* specifies the port so client doesn't have to guess it
|
|
|
|
* clearly specifies the channels without leaving prefixes for the client
|
|
|
|
to guess
|
|
|
|
|
|
|
|
The previously linked pages also contain other forms, but this seems the
|
|
|
|
best to me and I am against using channel keys as there are better ways
|
|
|
|
to keep channel private (such as restricted or +i and +I to authorized
|
|
|
|
people) and server passwords aren't used anywhere where I would encounter
|
|
|
|
them, other than forwarding the password to NickServ, but that is depracted
|
2019-01-20 16:42:51 +01:00
|
|
|
by [SASL](https://ircv3.net/specs/extensions/sasl-3.1.html).
|