summaryrefslogtreecommitdiffstats
path: root/src/Reaktor/Plugins/Register.hs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Reaktor/Plugins/Register.hs')
-rw-r--r--src/Reaktor/Plugins/Register.hs11
1 files changed, 4 insertions, 7 deletions
diff --git a/src/Reaktor/Plugins/Register.hs b/src/Reaktor/Plugins/Register.hs
index ec3a11e..0809006 100644
--- a/src/Reaktor/Plugins/Register.hs
+++ b/src/Reaktor/Plugins/Register.hs
@@ -51,8 +51,8 @@ new Config{..} Actions{..} = do
isNickServEnabled = aIsSecure && isJust cNickServ
Just ConfigNickServ{..} = cNickServ
- release nick pass = do
- aSend (privmsg "NickServ" ["RELEASE", nick, pass])
+ regain nick pass = do
+ aSend (privmsg "NickServ" ["REGAIN", nick, pass])
channelsArg = BS.intercalate "," cChannels
-- TODO make this similar to privmsg (i.e. don't aSend)
@@ -112,7 +112,7 @@ new Config{..} Actions{..} = do
Message _ "001" [msgtarget,_text] -> do
nick <- aGetNick
aSend (privmsg "NickServ" ["IDENTIFY", nick, pass])
- when (msgtarget /= nick) (release nick pass)
+ when (msgtarget /= nick) (regain nick pass)
-- TODO structured prefix, and check just for "NickServ"?
Message (Just prefix) "NOTICE" (msgtarget:text:[]) ->
@@ -124,9 +124,6 @@ new Config{..} Actions{..} = do
-- otherwise join at NICK
when (msgtarget == nick) join
- | text == stx nick <> " has been released." -> do
- aSend (Message Nothing "NICK" [nick])
-
| text == "Invalid password for " <> stx nick <> "." -> do
-- TODO warning
when (msgtarget == nick) join
@@ -153,6 +150,6 @@ new Config{..} Actions{..} = do
when (res == nick) $
case msgtarget of
"*" -> useNextNickTemporarily
- _ -> release nick pass
+ _ -> regain nick pass
_ -> pure ()