Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-10-11 | Add alternate_nick as a network-specific property. | Paul Townsend | |
2017-10-06 | minor word correction | Robert Bisewski | |
2017-10-06 | adjusting text content as per the pull-request discussion | Robert Bisewski | |
2017-10-05 | correcting and expanding content of statusbar help text | Robert Bisewski | |
2017-07-26 | Merge pull request #719 from LemonBoy/sasl-disable-none | ailin-nemui | |
Setting sasl_mechanism to '' disables the auth | |||
2017-07-25 | Allow the user to clear the sasl-related fields | LemonBoy | |
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-05 | Update clear.in | ailin-nemui | |
2017-07-05 | More accurately describe clear | ailin-nemui | |
2017-05-29 | Update list.in | ailin-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-17 | dcc.in: fixed typo 'resolved' -> 'resolves' | mh | |
n/t | |||
2017-02-14 | Do not alias /server <hostname> to /server connect <hostname> | LemonBoy | |
Closes #559. | |||
2017-01-06 | Fix syntax on /help SERVER example | Lasse Toimela | |
2016-10-22 | Add 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-22 | Rename 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-11 | Document the addition of the -autorun switch for /script reset. | LemonBoy | |
2016-07-17 | Wrong order in the arguments in /hilight example, -mask doesn't take a parameter | Jari Matilainen | |
2016-06-21 | Merge pull request #498 from vague666/add_modify_functions | LemonBoy | |
Add modify to /channel, /server and /network | |||
2016-06-18 | Add info about MODIFY to help files | Jari Matilainen | |
2016-04-30 | Merge pull request #476 from isundil/master | ailin-nemui | |
Add an option to make /hilight case sensitive | |||
2016-04-30 | Correct error/typo "You"->"Your" in help message | dennisschagt | |
2016-04-29 | changed command-line -case to -matchcase | B Thibault | |
2016-04-29 | Ref #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-05 | Merge pull request #453 from LemonBoy/dcc-quote | ailin-nemui | |
Support quoted filenames in some /DCC commands | |||
2016-03-29 | Revert "Removed the obsolete SQUERY and SERVLIST commands" | ailin-nemui | |
This reverts commit 4beebe3238dda96efd4c3a0a6f6002ad5afc96e7. | |||
2016-03-22 | Update the documentation about DCC | LemonBoy | |
2016-03-20 | correct quoting in /help dcc | ailin-nemui | |
2015-12-09 | DCC close always requires a type | Wieland Hoffmann | |
2015-09-26 | Merge pull request #304 from LemonBoy/sasl_user_options | ailin-nemui | |
Allow the user to set and modify the SASL parameters | |||
2015-09-26 | Allow the user to set and modify the SASL parameters | LemonBoy | |
The /NETWORK ADD command now is able to modify the SASL mechanism, the username and the password on a chatnet basis. | |||
2015-09-23 | Improve the WINDOW help | Ailin Nemui | |
Properly describe the window command. Make help sort order deterministic. | |||
2015-09-22 | Revert "Network and IPv{4,6} related changes" | ailin-nemui | |
2015-09-21 | Ding dong the switch is dead | LemonBoy | |
2015-06-14 | Rename /proxy command to /irssiproxy for clarity | dequis | |
2015-06-14 | Merge branch 'master' into irssiproxy | dequis | |
Conflicts: src/irc/proxy/listen.c | |||
2015-06-12 | Clarify the help for /LIST (#228) | Geert Hauwaerts | |
Clarify the help for /LIST (#228) | |||
2015-05-14 | lastlog doc fix | Filip 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-04-18 | trivial: Minor cosmetic changes fixing docs as per review from ahf. | Haw Loeung | |
2015-04-14 | ssl: Add option to specify SSL cipher suite preference. | Haw Loeung | |
2015-02-24 | Add help files for proxy module | Hans Nielsen | |
2015-02-08 | Added customization possibility for the lastlog date format, lastlog_date | Vesa Pirila | |
2015-02-08 | Added a -date parameter to /lastlog to prepend each row with the row's date | Vesa Pirila | |
2015-02-01 | Fix the lastlog help | ailin-nemui | |
Correct some confusing inaccuracies and document a parameters that got lost on the rewrite. | |||
2015-01-31 | /help lastlog: Clarify usage of -<level> parameter | dequis | |
2014-12-08 | Documentation fix for #185 | Geert Hauwaerts | |
Documentation fix for #185 | |||
2014-12-06 | Merge pull request #171 from vlajos/typofixes-vlajos-20141108 | Alexander Færøy | |
typo fixes - https://github.com/vlajos/misspell_fixer | |||
2014-11-14 | Fix -ssl_pass documentation in /server and /connect | dequis | |
Copied text from 68f8229 (SVN r5231) | |||
2014-11-08 | typo fixes - https://github.com/vlajos/misspell_fixer | Veres Lajos | |
2014-10-27 | Remove duplicate example from ignore.in | Matt Lewandowsky | |
Duplicated line inserted in commit 66f5fb6. Reported by @sharethebug on IRC. | |||
2014-10-20 | Actually fix the params for /SERVER REMOVE | David Leadbeater | |
2014-10-15 | Tiny fix to the param order in the /SERVER REMOVE help | dequis | |