summaryrefslogtreecommitdiff
path: root/docs
AgeCommit message (Collapse)Author
2016-10-22Kill support for DANE.Alexander Færøy
This patch removes support for DANE validation of TLS certificates. There wasn't enough support in the IRC community to push for this on the majority of bigger IRC networks. If you believe this should be reintroduced into irssi, then please come up with an implementation that does not rely on the libval library. It is causing a lot of troubles for our downstream maintainers.
2016-10-22Add x509 certificate and public key pinning support.Alexander Færøy
This patch adds two new options to /CONNECT and /SERVER to let the user pin either an x509 certificate and/or the public key of a given server. It is possible to fetch the certificate outside of Irssi itself to verify the checksum. To fetch the certificate call: $ openssl s_client -connect chat.freenode.net:6697 < /dev/null 2>/dev/null | \ openssl x509 > freenode.cert This will download chat.freenode.net:6697's TLS certificate and put it into the file freenode.cert. -tls_pinned_cert ---------------- This option allows you to specify the SHA-256 hash of the x509 certificate. When succesfully connected to the server, irssi will verify that the given server certificate matches the pin set by the user. The SHA-256 hash of a given certificate can be verified outside of irssi using the OpenSSL command line tool: $ openssl x509 -in freenode.cert -fingerprint -sha256 -noout -tls_pinned_pubkey ------------------ This option allows you to specify the SHA-256 hash of the subject public key information section of the server certificate. This section contains both the cryptographic parameters for the public key, but also information about the algorithm used together with the public key parameters. When succesfully connected to the server, irssi will verify that the given public key matches the pin set by the user. The SHA-256 hash of a public key can be verified outside of irssi using the OpenSSL command line tool: $ openssl x509 -in freenode.cert -pubkey -noout | \ openssl pkey -pubin -outform der | \ openssl dgst -sha256 -c | \ tr a-z A-Z It is possible to specify both -tls_pinned_cert and -tls_pinned_pubkey together.
2016-10-22Add TLS_REC.Alexander Færøy
This patch adds the TLS_REC structure. This structure is used to emit information about the TLS handshake from the core of irssi to the front-end layers such that we can display connection information to the user.
2016-10-22Rename SSL to TLS.Alexander Færøy
This patch changes the internal name of SSL to TLS. We also add -tls_* options to /CONNECT and /SERVER, but make sure that the -ssl_* versions of the commands continue to work like before.
2016-09-11Document the addition of the -autorun switch for /script reset.LemonBoy
2016-08-12remove broken dummy modeailin-nemui
2016-07-17Merge pull request #518 from vague666/hilight_helpdx
Wrong order in the arguments in /hilight example, -mask doesn't take …
2016-07-17Wrong order in the arguments in /hilight example, -mask doesn't take a parameterJari Matilainen
2016-07-12Correct the prototype for the 'message private' signal.LemonBoy
2016-06-21Merge pull request #498 from vague666/add_modify_functionsLemonBoy
Add modify to /channel, /server and /network
2016-06-18Add info about MODIFY to help filesJari Matilainen
2016-04-30Merge pull request #476 from isundil/masterailin-nemui
Add an option to make /hilight case sensitive
2016-04-30Correct error/typo "You"->"Your" in help messagedennisschagt
2016-04-29changed command-line -case to -matchcaseB Thibault
2016-04-29Ref #421 (Add an option to make /hilight case sensitive)B Thibault
Allow use of /hilight -case exAMPle (compatible with other options) Added matchcase to hilight config file (exemple: { text = exAMPle; matchcase = yes; } )
2016-04-05Merge pull request #453 from LemonBoy/dcc-quoteailin-nemui
Support quoted filenames in some /DCC commands
2016-03-29Revert "Removed the obsolete SQUERY and SERVLIST commands"ailin-nemui
This reverts commit 4beebe3238dda96efd4c3a0a6f6002ad5afc96e7.
2016-03-22Update the documentation about DCCLemonBoy
2016-03-20correct quoting in /help dccailin-nemui
2016-02-29Merge tag '0.8.18'ailin-nemui
master now on 0.8.19-head
2016-02-18add some documentationLukas Mai
2016-02-08sync docsailin-nemui
2016-01-26Update perl.txtailin-nemui
Mention known Perl Bugs (#386)
2015-12-14script should be pluralmh
2015-12-09DCC close always requires a typeWieland Hoffmann
2015-09-28Remove Typo from FAQsChirag Aggarwal
2015-09-26Merge pull request #304 from LemonBoy/sasl_user_optionsailin-nemui
Allow the user to set and modify the SASL parameters
2015-09-26Allow the user to set and modify the SASL parametersLemonBoy
The /NETWORK ADD command now is able to modify the SASL mechanism, the username and the password on a chatnet basis.
2015-09-23Revert "Revert "Bug fix - docdir is ignored during installation.""dequis
This reverts commit d222c11f74a5662df59e00e7ae6c8105179a804e.
2015-09-23Improve the WINDOW helpAilin Nemui
Properly describe the window command. Make help sort order deterministic.
2015-09-22Revert "Network and IPv{4,6} related changes"ailin-nemui
2015-09-21Ding dong the switch is deadLemonBoy
2015-09-21Use formats instead of g_warningLemonBoy
Add some copyright headers here and there too.
2015-09-19Merge pull request #284 from ailin-nemui/document-perl-crashesGeert Hauwaerts
Document some shortcomings in perl.txt
2015-09-19Merge pull request #259 from dequis/irssiproxyailin-nemui
Updates for irssiproxy
2015-09-18Update perl.txtailin-nemui
2015-08-24Merge pull request #222 from LemonBoy/cap-supportAlexander Færøy
[RFC] CAP support
2015-06-14Rename /proxy command to /irssiproxy for claritydequis
2015-06-14Merge branch 'master' into irssiproxydequis
Conflicts: src/irc/proxy/listen.c
2015-06-12Merge pull request #257 from GeertHauwaerts/masterGeert Hauwaerts
Clarify the help for /LIST (#228)
2015-06-12Updated the man page (#251)Geert Hauwaerts
Updated the man page (#251)
2015-06-12Revert "Bug fix - docdir is ignored during installation."Geert Hauwaerts
2015-06-12Clarify the help for /LIST (#228)Geert Hauwaerts
Clarify the help for /LIST (#228)
2015-05-14lastlog doc fixFilip Szczepański
Only the filename can come right after `-file`. Having `-force` in that position causes an `Irssi: Could not open lastlog: No such file or directory` error.
2015-05-05Implement support for IRCv3.1 CAP negotiationLemonBoy
2015-04-21Merge pull request #232 from dimkr/masterAlexander Færøy
Bug fix - docdir is ignored during installation.
2015-04-18trivial: Minor cosmetic changes fixing docs as per review from ahf.Haw Loeung
2015-04-14ssl: Add option to specify SSL cipher suite preference.Haw Loeung
2015-04-07Bug fix - docdir is ignored during installation.Dima Krasner
2015-02-24Add help files for proxy moduleHans Nielsen