summaryrefslogtreecommitdiff
path: root/docs
AgeCommit message (Collapse)Author
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
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.