aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeLines
* add TODO note about erasing forgotten keysSven Moritz Hallberg2008-02-17-0/+3
|
* put 'otr forget key' back in, which now worksSven Moritz Hallberg2008-02-17-1/+39
|
* free query strings after query_addSven Moritz Hallberg2008-02-17-0/+3
|
* explicitly initialize ssl in order to avoid gnutls and libotr fighting over ↵Sven Moritz Hallberg2008-02-17-19/+58
| | | | the global state of libgcrypt
* indent fingerprints in 'otr info <buddy>'Sven Moritz Hallberg2008-02-16-3/+3
|
* merge in upstream changesSven Moritz Hallberg2008-02-16-125/+332
|\
| * Merge from Jelmer.Wilmer van der Gaast2008-02-16-7/+8
| |\
| | * Fix lcov dependencies.Jelmer Vernooij2008-02-16-7/+6
| | |
| | * Add Debian watch file.Jelmer Vernooij2008-01-06-0/+2
| | |
| * | Improved sasl_get_part() to deal with whitespace in challenge strings, asWilmer van der Gaast2008-02-16-9/+143
| | | | | | | | | | | | | | | described in RFC 2831 secion 7.1 (the #rule description). Closes bug #362.
| * | Fixed broken check in check_arc.cWilmer van der Gaast2008-02-16-2/+3
| | |
| * | Got rid of some noise at startup: complaining when the default configurationWilmer van der Gaast2008-02-11-31/+33
| | | | | | | | | | | | | | | | | | file couldn't be found while the user specified an alternative location with the -c option, and double complaints about /var/lib/bitlbee/ permissions.
| * | Added support for password-protected Jabber chatrooms.Wilmer van der Gaast2008-02-10-0/+2
| | |
| * | Making AI_ADDRCONFIG optional, it doesn't exist on at least NetBSD andWilmer van der Gaast2008-02-10-1/+5
| | | | | | | | | | | | | | | (IIRC) OpenBSD systems.
| * | Restored "add -tmp". A bit hackish, but it will do for now.Wilmer van der Gaast2008-02-09-5/+6
| | |
| * | Fixed getnameinfo() calls, this fixes Solaris stability issues. Thanks toWilmer van der Gaast2008-02-07-2/+2
| | | | | | | | | | | | | | | Logan O'Sullivan Bruns for the report.
| * | Added bogus G_GNUC_MALLOC to restore GLib 2.4 compatibility (hopefully).Wilmer van der Gaast2008-02-04-4/+7
| | |
| * | Messages from the user are also included in backlogs when joining a JabberWilmer van der Gaast2008-02-03-7/+16
| | | | | | | | | | | | | | | | | | chatroom. Until now they were ignored, which might make backlogs a little bit confusing.
| * | Disabling "Unknown command" warnings since they're very noisy and prettyWilmer van der Gaast2008-02-03-2/+2
| | | | | | | | | | | | | | | pointless.
| * | Implemented XEP-0115. This adds some info to the <presence/> tags soWilmer van der Gaast2008-02-03-3/+35
| | | | | | | | | | | | | | | | | | clients interested in capabilities can cache discovery info, so they don't have to ask about it every time you/they log in.
| * | Saner garbage collection of cached packets in the Jabber module. NowWilmer van der Gaast2008-02-03-10/+11
| | | | | | | | | | | | | | | | | | cached packets are removed after about ten minues instead of something between one and two minutes. Closes one issue in #354.
| * | Added help_free() and cleaned up some very stale help-related stuff IWilmer van der Gaast2008-02-02-37/+53
| | | | | | | | | | | | | | | wasn't even aware of. This closes bug #352.
| * | Fixed handling of OSCAR multi-part messages... They're not arrays, they'reWilmer van der Gaast2008-01-30-4/+6
| | | | | | | | | | | | | | | linked lists!
* | | read root's welcome message from a file (like tho MOTD)Sven Moritz Hallberg2008-02-16-4/+45
| | |
* | | remove (broken) 'otr forget key' command againSven Moritz Hallberg2008-02-16-45/+1
| | |
* | | show keys being generated in 'otr info'Sven Moritz Hallberg2008-02-16-2/+9
| | |
* | | rework keygen messages and add some noticesSven Moritz Hallberg2008-02-16-9/+38
| | |
* | | keep track of which keys are queued for generationSven Moritz Hallberg2008-02-16-78/+198
| | |
* | | implement background keygen via child processSven Moritz Hallberg2008-02-15-28/+153
| | |
* | | remove thread-based keygenSven Moritz Hallberg2008-02-15-168/+44
| | | | | | | | | | | | | | | replace it with a process-based stub
* | | otr_load error handling + stonedcoder copyright noticeSven Moritz Hallberg2008-02-15-3/+10
| | |
* | | revert keygen behaviour to old (lax) behaviorSven Moritz Hallberg2008-02-14-15/+21
| | |
* | | chmod 0600 otr save filesSven Moritz Hallberg2008-02-14-0/+2
| | |
* | | interpret &apos;Sven Moritz Hallberg2008-02-14-0/+1
| | |
* | | fix a bug in set_eval_mode_buddiesSven Moritz Hallberg2008-02-13-0/+2
| | |
* | | update settings documentationSven Moritz Hallberg2008-02-12-5/+83
| | |
* | | document otr commandsSven Moritz Hallberg2008-02-12-0/+149
| | |
* | | add a blurb about OTR to the READMESven Moritz Hallberg2008-02-12-2/+6
| | |
* | | bugfix for compiling with otr disabledSven Moritz Hallberg2008-02-12-1/+1
| | |
* | | - add global policy settingSven Moritz Hallberg2008-02-12-8/+98
| | | | | | | | | | | | | | | - add copyright and author notices to otr.h and otr.c
* | | - add nonfunctional 'otr forget key' implementationSven Moritz Hallberg2008-02-12-16/+113
| | | | | | | | | | | | | | | - add 'color_encrypted' setting
* | | query_add: allow NULL for ic and pass irc to handler in that caseSven Moritz Hallberg2008-02-11-2/+5
| | |
* | | - use a recursive otr_mutexSven Moritz Hallberg2008-02-11-45/+230
| | | | | | | | | | | | | | | - implement 'otr forget fingerprint' and 'otr forget context' commands
* | | pass the im_connection as first argument to yes/no handlersSven Moritz Hallberg2008-02-11-2/+2
| | |
* | | allow NULL for yes/no handlersSven Moritz Hallberg2008-02-11-2/+4
| | |
* | | honor voice/op/halfop buddies in chatsSven Moritz Hallberg2008-02-11-1/+1
| | |
* | | display ops/halfops/voices correctly in /namesSven Moritz Hallberg2008-02-11-11/+35
| | |
* | | honor simulate_netsplit for encrypted/trusted mode changesSven Moritz Hallberg2008-02-11-2/+7
| | |
* | | announce that we support halfopsSven Moritz Hallberg2008-02-11-1/+1
| | |
* | | log out all accounts when going into keygenSven Moritz Hallberg2008-02-10-5/+13
| | |