README: Add info on new SASL stuff

This commit is contained in:
Daniel Oaks 2016-09-07 21:35:43 +10:00
parent b5e7d8968f
commit ca2255804b
2 changed files with 3 additions and 3 deletions

View File

@ -20,8 +20,8 @@ Initial release of Oragono!
* Added [`RPL_ISUPPORT`](http://modern.ircdocs.horse/#rplisupport-005) numeric as advertised by most other IRCds today.
* Added ability to parse complex mode change syntax commonly used these days (i.e. `+h-ov dan dan dan`).
* Added user mode for clients connected via TLS (`+Z`).
* Added ability to register accounts.
* Added support for IRCv3 capabilities [`extended-join`](http://ircv3.net/specs/extensions/extended-join-3.1.html), [`server-time`](http://ircv3.net/specs/extensions/server-time-3.2.html), and [`userhost-in-names`](http://ircv3.net/specs/extensions/userhost-in-names-3.2.html).
* Added ability to register and login to accounts (with passphrase or certfp).
* Added support for IRCv3 capabilities [`extended-join`](http://ircv3.net/specs/extensions/extended-join-3.1.html), [`sasl`](http://ircv3.net/specs/extensions/sasl-3.1.html), [`server-time`](http://ircv3.net/specs/extensions/server-time-3.2.html), and [`userhost-in-names`](http://ircv3.net/specs/extensions/userhost-in-names-3.2.html).
### Changed
* Changed channel creator (`O`) privilege to founder/admin/halfops (`qah`) privileges.

View File

@ -25,7 +25,7 @@ This project adheres to [Semantic Versioning](http://semver.org/). For the purpo
* ident lookups for usernames
* passwords stored in [bcrypt][go-crypto] format
* channels that [persist][go-sqlite] between restarts (+P)
* client accounts
* client accounts and SASL
* IRCv3 support
### What about TLS/SSL?