aboutsummaryrefslogtreecommitdiffstats
path: root/protocols/msn
Commit message (Collapse)AuthorAgeLines
* Passport 3.0 authentication turns out to be slightly different from whatWilmer van der Gaast2010-05-15-1/+3
| | | | | | the msnpiki MSNP13 doc says and stuff is breaking now. This should fix the main problem now.
* Stop those "Many switchboard failures" messages. No point in showing themWilmer van der Gaast2010-05-11-27/+22
| | | | | unless the lost switchboard actually had something queued.
* Merge msn-keepalive, a nice hack (not yet documented) which sends keepalivesWilmer van der Gaast2010-04-16-9/+66
|\ | | | | | | | | | | to switchboards with offline contacts. This is meant as a work-around for the current lack of support for offline messaging.
| * Be more clever with keepalives; detect when a switchboard is opened withWilmer van der Gaast2010-04-10-17/+36
| | | | | | | | | | | | someone who's offline already. Still a hack but it eases the pain a little bit.
| * First stab at MSN keepalives.Wilmer van der Gaast2010-04-10-9/+48
| | | | | | | | | | Only kicks in if the user goes offline during a conversation.
* | Check MSN display names given by the server for UTF-8-correctness beforeWilmer van der Gaast2010-04-07-2/+10
| | | | | | | | | | using them since invalid XML ending up in user configs can get very ugly.
* | Added local_display_name setting for MSN accounts and some hopefully cleverWilmer van der Gaast2010-03-29-40/+67
|/ | | | | | enough handling for it. Should solve problems with MSN servers forgetting/ overriding display names set by the user.
* Fix for bug #536: No longer fail on corrupted USR responses with certainWilmer van der Gaast2010-03-14-9/+16
| | | | | Unicode characters in the friendly name.
* Adding a few consts and other misc fixes from bug #431. Doing this via aWilmer van der Gaast2010-03-14-3/+7
|\ | | | | | | | | merge because bzr can probably deal with the conflicts better than patch.
| * Some const/etc cleanups submitted by domen@coderock.org back in bug #431.Wilmer van der Gaast2010-03-14-3/+7
| |
* | Fixed an "off-by -1" bug in msn_findheader() that could probably be triggeredWilmer van der Gaast2010-03-10-3/+3
| | | | | | | | | | by incoming messages without headers.
* | Put AWY at the beginning of the list since it's used as a fallback.Wilmer van der Gaast2010-03-06-1/+1
| |
* | MSN module updated to deal with the new API. Not many changes since itWilmer van der Gaast2010-03-06-41/+29
| | | | | | | | | | | | doesn't currently support away messages anyway. This is more a bit of a cleanup.
* | A few fixes for bugs that caused coredumps on testing.bitlbee.org (orWilmer van der Gaast2009-12-17-1/+1
| | | | | | | | | | caught my attention in new compiler warnings).
* | Committing some >1y old change. This seems to fix a small leak in the MSNWilmer van der Gaast2009-12-07-15/+20
| | | | | | | | | | mail notification handler.
* | Added msn_sb_write_msg() (patch from ulim).Wilmer van der Gaast2008-08-10-58/+51
| |
* | Microsoft, I hate you.Wilmer van der Gaast2008-08-02-197/+207
| |
* | Reverting to the old MSN/Passport authentication mechanism, the new oneWilmer van der Gaast2008-07-31-207/+197
|/ | | | | is "broken". (Bug #439)
* Fixed two memory leaks in the MSN module.Wilmer van der Gaast2008-06-29-3/+20
|
* Now checking if msn_sb_create() returns NULL. This is very unlikely, butWilmer van der Gaast2008-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 Gaast2008-04-08-1/+1
|
* query.h now defines a callback function type, not using void* for it anymore.Wilmer van der Gaast2008-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 theWilmer van der Gaast2008-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 onWilmer van der Gaast2008-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 Gaast2008-02-16-1/+1
|\
| * Fix lcov dependencies.Jelmer Vernooij2008-02-16-1/+1
| |
* | Disabling "Unknown command" warnings since they're very noisy and prettyWilmer van der Gaast2008-02-03-2/+2
| | | | | | | | | | pointless.
* | When a switchboard connection dies (at the TCP level) and there are stillWilmer van der Gaast2008-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 usuallyWilmer van der Gaast2008-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 actualWilmer van der Gaast2008-01-06-50/+42
| | | | | message(s) now.
* Added "mail_notifications" setting. Who needs those notifications anyway?Wilmer van der Gaast2008-01-05-2/+4
| | | | | Closes: #338.
* Added handling of MSN switchboard NAK messages. Untested, but hey, itWilmer van der Gaast2008-01-05-0/+11
| | | | | compiles! (And it's pretty trivial...)
* Added /invite support for Jabber chatrooms (and fixed the argument orderWilmer van der Gaast2007-12-09-1/+1
| | | | | to chat_invite).
* Merging from devel. Added documentation for the join_chat command, addingWilmer van der Gaast2007-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 Gaast2007-07-01-0/+1
| |\
| | * Add lcov targetJelmer Vernooij2007-01-22-0/+1
| | |
* | | Read-only support for Jabber conferences (non-anonymous rooms only).Wilmer van der Gaast2007-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 crapWilmer van der Gaast2007-04-20-1/+1
| | | | | | | | | | too.
* | Renamed some more prpl functions.Wilmer van der Gaast2007-04-20-5/+5
| |
* | Renamed/slightly changed syntax of groupchat callback functions.Wilmer van der Gaast2007-04-19-12/+12
| |
* | More API changes: buddy list management. imcb_add_buddy() is now a *real*Wilmer van der Gaast2007-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 theWilmer van der Gaast2007-04-16-3/+3
| | | | | | | | | | buddy/groupchat related functions.
* | Split serv_got_update() into imcb_buddy_(status|times). (Well, the secondWilmer van der Gaast2007-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 aWilmer van der Gaast2007-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 sinceWilmer van der Gaast2007-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 IWilmer van der Gaast2007-04-05-8/+2
| | | | | | | | | | use that and don't introduce vulnerabilities. :-)
* | More cleanups, mainly in the callbacks. Replaced things likeWilmer van der Gaast2007-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 restWilmer van der Gaast2007-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 Gaast2007-03-27-26/+25
| |
* | Merging new Jabber module. See the massive changelog for all the coolWilmer van der Gaast2007-02-18-4/+5
|\ \ | |/ |/| | | | | improvements. :-)