[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Erbot-cvs] Changes to erbot/erbot.el
From: |
D . Goel |
Subject: |
[Erbot-cvs] Changes to erbot/erbot.el |
Date: |
Wed, 31 Aug 2005 11:14:44 -0400 |
Index: erbot/erbot.el
diff -u erbot/erbot.el:1.36 erbot/erbot.el:1.37
--- erbot/erbot.el:1.36 Mon Aug 15 22:01:31 2005
+++ erbot/erbot.el Wed Aug 31 15:14:43 2005
@@ -1,5 +1,5 @@
;;; erbot.el --- Another robot for ERC.
-;; Time-stamp: <2005-08-16 00:00:02 forcer>
+;; Time-stamp: <2005-08-31 11:02:00 deego>
;; Emacs Lisp Archive entry
;; Filename: erbot.el
;; Package: erbot
@@ -305,6 +305,26 @@
Each of these is called with the arguments arguments: nick channel
term entry-num old-entry new-entry")
+;;; 2005-08-31 T10:56:27-0400 (Wednesday) D. Goel
+(defvar erbot-nickserv-p t
+ "When t, erbot will load the appropriate erc modules and will try to
+auto-identify to nickserv. Note that the default value boing t is a
+new behavior for erbot.
+
+We also recommend these settings in .emacs:
+ (setq erc-prompt-for-nickserv-password nil)
+
+ (setq erc-nickserv-passwords
+ '((freenode ((\"mybot\" . \"mypassword\")))))
+
+See this page for more details:
+http://www.emacswiki.org/cgi-bin/wiki?ErcNickserv
+")
+
+(when erbot-nickserv-p
+ (require 'erc-nickserv)
+ (erc-nickserv-mode 1)
+ )