summaryrefslogtreecommitdiff
path: root/docs
AgeCommit message (Collapse)Author
2018-04-24Merge pull request #870 from dequis/fe-capailin-nemui
Add fe-cap to show messages for CAP-related events in the UI
2018-04-08Add "server cap req" signal, emitted before requesting capsdequis
2018-04-07signals.txt: add missing 'server cap new|delete' signalsdequis
Emitted by cap_emit_signal in irc/core/irc-cap.c, added as part of the CAP 3.2 PR merged recentlyish.
2018-04-02Merge pull request #858 from ailin-nemui/sbarailin-nemui
change the statusbar commands so that no accidential status bars are created
2018-03-31Merge pull request #854 from irssi/ahf/otrailin-nemui
OTR support, take 2
2018-03-31otr: fix blatant lies in help textdequis
2018-03-19change the statusbar commands so that no accidenal status bars are createdailin-nemui
2018-03-19update bind helpailin-nemui
2018-03-10Merge pull request #852 from dequis/document-cat-seekailin-nemui
Document second parameter (seek position) of /cat command
2018-03-07run syncdocs.sh and syncscripts.shailin-nemui
Sync startup howto to fd1ed2227d529a7ee00d6206caa871ee40c08b69 Sync scriptassist to (2003020806) 211cd515ec87cf9a5d893e97894c2e4b58952f19
2018-02-26Add OTR support.Alexander Færøy
This patch adds support for the OTR protocol to irssi. This is an import of the external irssi-otr project that we are now taking over maintership for. Major thanks to the original authors of Irssi-OTR: Uli Meis and David Goulet. Thanks to the OTR community in #OTR on OFTC, thanks to everyone who have helped testing the patches and submitted UI suggestions.
2018-02-16Document second parameter (seek position) of /cat commanddequis
2018-01-30Fix typo in help text for /ISON commandWilliam Jackson
2018-01-16Update Irssi website URLsZero King
2018-01-06sideways split support for Irssiailin-nemui
warning: * may be buggy This commit adds support for sideways splits into Irssi. To that regard, there are a number of new commands available the "R" commands: /window new rsplit - make a new sideways split /window rshow - show an existing window to the right /window rgrow/rshrink/rsize/rbalance - manipulate the size of your sideways split windows the "D" commands: /window dup/ddown/dleft/dright - navigate the windows directionally, as an alternative to /window up/down that you can bind to some key /window move dleft/dright - the same for moving Enjoy!
2017-10-24remove lynx from autogen and make a separate syncdocs scriptailin-nemui
2017-10-18Merge pull request #771 from paultownsend/issue-120LemonBoy
Add alternate_nick as a network-specific property
2017-10-13Merge pull request #772 from trasz/capsicumEdward Tomasz Napierała
Merge a bunch of Capsicum-related tweaks.
2017-10-11Document that one needs to change the awaylog_file path for "/away"Edward Tomasz Napierala
to work with Capsicum.
2017-10-11Add alternate_nick as a network-specific property.Paul Townsend
2017-10-06minor word correctionRobert Bisewski
2017-10-06adjusting text content as per the pull-request discussionRobert Bisewski
2017-10-06reverting changes to startup HOWTORobert Bisewski
2017-10-05correcting and expanding content of statusbar help textRobert Bisewski
2017-10-03improving HOWTO documentRobert Bisewski
2017-08-28Add docs/capsicum.txt.Edward Tomasz Napierala
Signed-off-by: Edward Tomasz Napierala <trasz@FreeBSD.org>
2017-07-26Merge pull request #719 from LemonBoy/sasl-disable-noneailin-nemui
Setting sasl_mechanism to '' disables the auth
2017-07-25Allow the user to clear the sasl-related fieldsLemonBoy
There was no easy way for the user to disable the SASL authentication or to clear the username/password once the network was created. Closes #718
2017-07-05Update clear.inailin-nemui
2017-07-05More accurately describe clearailin-nemui
2017-05-29Update list.inailin-nemui
Add a more detailed paragraph about service bots Fixes #699 I would like to add another paragraph about how freenode is broken and spits at you the whole list instead of empty list if you attempt to use network side filtering......
2017-05-17dcc.in: fixed typo 'resolved' -&gt; 'resolves'mh
n/t
2017-02-14Do not alias /server <hostname> to /server connect <hostname>LemonBoy
Closes #559.
2017-01-06Fix syntax on /help SERVER exampleLasse Toimela
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