Commit message (Collapse) | Author | Age | Lines | ||
---|---|---|---|---|---|
* | Now checking if msn_sb_create() returns NULL. This is very unlikely, but | Wilmer van der Gaast | 2008-04-21 | -3/+21 | |
| | | | | | can happen if we run out of file descriptors, for example. | ||||
* | Don't automatically enable MSN debugging messages for debugging builds. | Wilmer van der Gaast | 2008-04-08 | -1/+1 | |
| | |||||
* | query.h now defines a callback function type, not using void* for it anymore. | Wilmer van der Gaast | 2008-04-05 | -2/+6 | |
| | | | | | | Got rid of the bogus window handler pointer as the first argument to the callback. | ||||
* | Automatically truncate MSN passports to 16 characters because that's the | Wilmer van der Gaast | 2008-02-17 | -0/+7 | |
| | | | | | | maximum supported by MSN and giving a longer password will make the authentication fail. | ||||
* | Replaced old MSN Passport (v1.4) authentication code with what's described on | Wilmer van der Gaast | 2008-02-17 | -196/+200 | |
| | | | | | | | | http://msnpiki.msnfanatic.com/index.php/MSNP13:SOAPTweener . This was an attempt to fix bug #360, but it didn't. However, this change may make BitlBee a little bit more future-proof. Plus, the code is tidier and sometimes faster than the old mechanism. | ||||
* | Merge from Jelmer. | Wilmer van der Gaast | 2008-02-16 | -1/+1 | |
|\ | |||||
| * | Fix lcov dependencies. | Jelmer Vernooij | 2008-02-16 | -1/+1 | |
| | | |||||
* | | Disabling "Unknown command" warnings since they're very noisy and pretty | Wilmer van der Gaast | 2008-02-03 | -2/+2 | |
| | | | | | | | | | | pointless. | ||||
* | | When a switchboard connection dies (at the TCP level) and there are still | Wilmer van der Gaast | 2008-01-12 | -5/+48 | |
|/ | | | | | | | | | | | queued messages, they will now be moved back to the main queue and a new sb will be created to try to send the messages again. I hope this will solve some/most/all of the "Closing switchboard with unsent messages" problems, but can't be sure since this problem isn't very easy to reproduce. At least it should solve the ones caused by keeping spare switchboards around. Also enabling switchboard debugging output if configured with --debug=1, at least for now this will be useful. | ||||
* | More consistency in error/warning errors. Until now "WARNING:" was usually | Wilmer van der Gaast | 2008-01-06 | -1/+1 | |
| | | | | | in upper case while "Error:" wasn't .... that doesn't really make sense. | ||||
* | Changed warning message about unsent MSN messages. It should show the actual | Wilmer van der Gaast | 2008-01-06 | -50/+42 | |
| | | | | | message(s) now. | ||||
* | Added "mail_notifications" setting. Who needs those notifications anyway? | Wilmer van der Gaast | 2008-01-05 | -2/+4 | |
| | | | | | Closes: #338. | ||||
* | Added handling of MSN switchboard NAK messages. Untested, but hey, it | Wilmer van der Gaast | 2008-01-05 | -0/+11 | |
| | | | | | compiles! (And it's pretty trivial...) | ||||
* | Added /invite support for Jabber chatrooms (and fixed the argument order | Wilmer van der Gaast | 2007-12-09 | -1/+1 | |
| | | | | | to chat_invite). | ||||
* | Merging from devel. Added documentation for the join_chat command, adding | Wilmer van der Gaast | 2007-07-06 | -0/+1 | |
|\ | | | | | | | | | a debian/ tree and a merge from Jelmer (mainly unittest stuff). | ||||
| * | Merge from Jelmer (mainly unit testing things). | Wilmer van der Gaast | 2007-07-01 | -0/+1 | |
| |\ | |||||
| | * | Add lcov target | Jelmer Vernooij | 2007-01-22 | -0/+1 | |
| | | | |||||
* | | | Read-only support for Jabber conferences (non-anonymous rooms only). | Wilmer van der Gaast | 2007-04-22 | -1/+1 | |
|/ / | | | | | | | | | Just don't use this, you're really not going to like it. :-) | ||||
* | | Consistency; Using OPT_T(YP|HINK)ING for outgoing typing notfication crap | Wilmer van der Gaast | 2007-04-20 | -1/+1 | |
| | | | | | | | | | | too. | ||||
* | | Renamed some more prpl functions. | Wilmer van der Gaast | 2007-04-20 | -5/+5 | |
| | | |||||
* | | Renamed/slightly changed syntax of groupchat callback functions. | Wilmer van der Gaast | 2007-04-19 | -12/+12 | |
| | | |||||
* | | More API changes: buddy list management. imcb_add_buddy() is now a *real* | Wilmer van der Gaast | 2007-04-18 | -10/+18 | |
| | | | | | | | | | | | | | | | | | | callback, it's only called from inside IM-modules. This makes sure a buddy only gets added to the BitlBee structures if the add was successful. This gets rid of the weirdness described in #55. Unfortunately for now this change breaks A) automatic renaming of ICQ contacts (if there are names stored in the contact list) B) add -tmp. | ||||
* | | API cleanup pretty much complete. Fixed pretty much everything except the | Wilmer van der Gaast | 2007-04-16 | -3/+3 | |
| | | | | | | | | | | buddy/groupchat related functions. | ||||
* | | Split serv_got_update() into imcb_buddy_(status|times). (Well, the second | Wilmer van der Gaast | 2007-04-15 | -14/+5 | |
| | | | | | | | | | | | | | | one isn't implemented yet, but I'll do that later.) At last I got rid of the hack called get_status_string(). And now Yahoo seems to mess up away messages... | ||||
* | | s/imc/imcb/ for callback functions. Moved things aroundin nogaim.h a | Wilmer van der Gaast | 2007-04-15 | -49/+49 | |
| | | | | | | | | | | | | little bit, grouping things by category instead of original Gaim 0.58 filename. | ||||
* | | Cleaned up struct im_connection. No more username/password stuff since | Wilmer van der Gaast | 2007-04-15 | -42/+44 | |
| | | | | | | | | | | it's in acc too. wants_to_die is now an argument to imc_logout(). | ||||
* | | Now that all these functions take format strings, I have to make sure I | Wilmer van der Gaast | 2007-04-05 | -8/+2 | |
| | | | | | | | | | | use that and don't introduce vulnerabilities. :-) | ||||
* | | More cleanups, mainly in the callbacks. Replaced things like | Wilmer van der Gaast | 2007-04-05 | -79/+77 | |
| | | | | | | | | | | | | | | | | do_error_dialog() and (set|hide)_login_progress(_error)?() with things that hopefully make more sense. Although it's still not really great... | ||||
* | | s/gaim_connection/im_connection/ and some other minor API changes. The rest | Wilmer van der Gaast | 2007-03-30 | -251/+251 | |
| | | | | | | | | | | | | will come tomorrow. It compiles, I'll leave the real testing up to someone else. ;-) | ||||
* | | Preparing for Jabber conference room support. | Wilmer van der Gaast | 2007-03-27 | -26/+25 | |
| | | |||||
* | | Merging new Jabber module. See the massive changelog for all the cool | Wilmer van der Gaast | 2007-02-18 | -4/+5 | |
|\ \ | |/ |/| | | | | | improvements. :-) | ||||
| * | Merge from main tree. | Wilmer van der Gaast | 2006-10-22 | -9/+8 | |
| |\ | |||||
| * \ | Merge from devel. | Wilmer van der Gaast | 2006-10-15 | -0/+1 | |
| |\ \ | |||||
| * \ \ | Merging from main development tree. | Wilmer van der Gaast | 2006-10-15 | -1/+0 | |
| |\ \ \ | |||||
| * \ \ \ | Merging from devel and storage-xml. | Wilmer van der Gaast | 2006-10-15 | -66/+41 | |
| |\ \ \ \ | |||||
| * | | | | | Implemented a list of away states, using this for a better set_away(), and | Wilmer van der Gaast | 2006-09-23 | -4/+5 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | got rid of the double <presence> tag sent because of presence_announce(). | ||||
| | | | | | | |||||
| \ \ \ \ \ | |||||
*-. \ \ \ \ \ | Merging trees. | Wilmer van der Gaast | 2006-12-22 | -6/+12 | |
|\ \ \ \ \ \ \ | |_|_|_|_|_|/ |/| | | | | | | |||||
| | * | | | | | [merge] wilmer | Jelmer Vernooij | 2006-12-05 | -92/+112 | |
| | |\ \ \ \ \ | |_|/ / / / / |/| | | | | | | |||||
| | * | | | | | Add support for checking test suite coverage using gcov. | Jelmer Vernooij | 2006-07-07 | -0/+3 | |
| | | | | | | | |||||
| * | | | | | | MSN message packets are now sent at once instead of separately. Probably | Wilmer van der Gaast | 2006-10-24 | -6/+9 | |
|/ / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | the MSN servers don't care, but it looks a bit prettier in wireshark. ;-) | ||||
* | | | | / | "Restructured" msn_login() a little bit. | Wilmer van der Gaast | 2006-10-21 | -9/+8 | |
| |_|_|_|/ |/| | | | | |||||
* | | | | | Fixing early free(). Memory management in the passport code is getting too | Wilmer van der Gaast | 2006-10-15 | -0/+1 | |
| |_|_|/ |/| | | | | | | | | | | | | | | | messy, really... :-( | ||||
* | | | | Fixed a very interesting memory leak in the OSCAR module. | Wilmer van der Gaast | 2006-10-15 | -1/+0 | |
| |_|/ |/| | | |||||
* | | | Merging from devel. | Wilmer van der Gaast | 2006-10-15 | -66/+41 | |
|\ \ \ | |_|/ |/| | | |||||
| * | | Fixed some memory leaking in the MSN Passport code. | Wilmer van der Gaast | 2006-10-13 | -11/+11 | |
| | | | |||||
| * | | Added msn_http_encode() so it can be used in msn_buddy_list_add() too. | Wilmer van der Gaast | 2006-08-25 | -21/+30 | |
| | | | | | | | | | | | | | | | Most likely fixes #198. | ||||
| * | | Copy-paste considered harmful + Fixed double handling of gc->permit/deny | Wilmer van der Gaast | 2006-07-27 | -35/+0 | |
| |/ | | | | | | | | | which actually broke the block/allow commands. | ||||
* | | Merging from main. | Wilmer van der Gaast | 2006-07-14 | -0/+2 | |
|\| | |||||
| * | Completed [167]. (Memory leak wasn't completely fixed yet.) | Wilmer van der Gaast | 2006-07-03 | -0/+2 | |
| | | |||||
* | | Implemented per-account nick lists instead of per-protocol nick lists. | Wilmer van der Gaast | 2006-07-03 | -1/+1 | |
| | | | | | | | | | | | | | | | | | | | | nick_t is dead, instead nicks are just saves in a per-account_t GLib hash table. While doing this, the import_buddies command finally died and text_save() disappeared, because the old file format can't handle most of the new features in this branch anyway. Still have to implement support for the new nick lists in text_load()! |