diff options
author | Wilmer van der Gaast <wilmer@google.com> | 2010-11-22 13:17:45 +0000 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@google.com> | 2010-11-22 13:17:45 +0000 |
commit | 9564e55a35ebffaad644c13827ec2b795fb21154 (patch) | |
tree | 5ede79f1cdfd51d28ada354a7c17fed7b7306880 /bitlbee.h | |
parent | 09d4922d3740eb0ad2e42e02ca5d57f03b263eab (diff) |
Allow omitting the password argument to "account add", to then separately
enter the password using the /OPER command (which will not echo to the
screen and/or logs).
It's a fairly ugly hack but the improved password security is worth it
IMHO.
Diffstat (limited to 'bitlbee.h')
-rw-r--r-- | bitlbee.h | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -125,6 +125,10 @@ #define HELP_FILE VARDIR "help.txt" #define CONF_FILE_DEF ETCDIR "bitlbee.conf" +/* Hack to give a little bit more password security on IRC: If an account has + this password set, use /OPER to change it. */ +#define PASSWORD_PENDING "\r\rchangeme\r\r" + #include "bee.h" #include "irc.h" #include "storage.h" |