aboutsummaryrefslogtreecommitdiffstats
path: root/protocols/oscar/oscar.c
Commit message (Collapse)AuthorAgeLines
* It looks like AIM mem requests (implemented as damn_you() andWilmer van der Gaast2010-05-09-136/+0
| | | | | | | | | | straight_to_hell() back in the days - and still more or less the same in libpurple it seems) are no longer necessary; the script no longer exists at the location used in the source and nobody complained. Nice try, AOL. And hats of to the Gaim developer who thought of this clever way around it.
* Room names on OSCAR can't start with digits, this broke the "chat with"Wilmer van der Gaast2010-05-09-1/+2
| | | | | command on ICQ so far. Just prepend "icq_" and it'll work.
* Added ignore_auth_requests setting (patch from vmiklos, bug #578).Wilmer van der Gaast2010-03-21-4/+13
|
* Two more fixes in OSCAR to avoid NULL pointers being passed toWilmer van der Gaast2010-03-07-1/+3
| | | | | g_strcasecmp().
* OSCAR cleanup.Wilmer van der Gaast2010-03-06-15/+20
|
* Detect disconnects caused by concurrent logins or rate limiting, and disableWilmer van der Gaast2008-12-14-2/+29
| | | | | auto-reconnect in those cases to prevent loops.
* Fixed ic->away leaking memory. This var is only used by OSCAR and shouldWilmer van der Gaast2008-12-14-20/+17
| | | | | | maybe be killed. Also fixed some completely broken indentation in those functions.
* Restored support for password-protected chatrooms (for now only by acceptingWilmer van der Gaast2008-09-28-1/+1
| | | | | a password in the IRC JOIN command).
* Shut up a "mostly harmless" warning (this NULL would never actually beWilmer van der Gaast2008-06-22-1/+1
| | | | | dereferenced as far as I can see).
* Another fixup after [devel,394]. Clearly I'm not a morning person.Wilmer van der Gaast2008-06-22-2/+2
|
* Fixed bug in [devel,394].Wilmer van der Gaast2008-06-22-1/+1
|
* Partial fix for #419: Moved normalize() and some other stuff to OSCARWilmer van der Gaast2008-06-22-24/+56
| | | | | | becuase it's the only place where it's used, and using this to strip spaces from all screennames before sending them to BitlBee.
* query.h now defines a callback function type, not using void* for it anymore.Wilmer van der Gaast2008-04-05-6/+12
| | | | | | Got rid of the bogus window handler pointer as the first argument to the callback.
* Fixed handling of OSCAR multi-part messages... They're not arrays, they'reWilmer van der Gaast2008-01-30-4/+6
| | | | | linked lists!
* Fixed two valgrind warnings (partially uninitialized "struct tm" vars.)Wilmer van der Gaast2008-01-24-0/+1
|
* Killed info_string_append() and now showing the IP address of ICQ usersWilmer van der Gaast2008-01-12-82/+102
| | | | | in the "info" command response.
* Now setting odata->icq properly again, this got lost some time ago, whichWilmer van der Gaast2008-01-10-2/+3
| | | | | broke the info command and probably more things.
* Killed the <server> parameter to "account add" and changed the defaultWilmer van der Gaast2007-12-12-22/+4
| | | | | | | server for OSCAR to what both login.icq.com and login.oscar.aol.com resolve to these days. There's no need to specify a server anymore so why bother. And cleaned up the docs (removed all references to those OSCAR servers).
* Added /invite support for Jabber chatrooms (and fixed the argument orderWilmer van der Gaast2007-12-09-1/+1
| | | | | to chat_invite).
* Merging from devel/Jelmer.Wilmer van der Gaast2007-11-14-1/+10
|\
| * Handing of multipart messages in OSCAR (usually from mobiles), this fixesWilmer van der Gaast2007-11-10-1/+10
| | | | | | | | | | bug #88, at last.
* | Merging from devel. Added documentation for the join_chat command, addingWilmer van der Gaast2007-07-06-1/+2
|\| | | | | | | | | a debian/ tree and a merge from Jelmer (mainly unittest stuff).
| * s/Gender: Unknown// in OSCAR profile info. If we don't know, just don'tWilmer van der Gaast2007-04-27-1/+2
| | | | | | | | | | mention it, like the other vars.
* | Added imcb_buddy_nick_hint so the Jabber conference module can suggest saneWilmer van der Gaast2007-06-04-0/+1
| | | | | | | | | | | | | | | | nicknames for chatroom participants. There'll probably be a lot of underscores now, but this is by far the cleanest way to implement this, I think. At least now whispers will work properly. Also using this function call to set names for ICQ contacts in a slightly saner way.
* | 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. :-)
* join_chat root command works for AIM chats now. (Was trivial to add andWilmer van der Gaast2007-04-21-10/+14
| | | | | useful for testing.)
* 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-4/+4
|
* Renamed/slightly changed syntax of groupchat callback functions.Wilmer van der Gaast2007-04-19-5/+5
|
* More API changes: buddy list management. imcb_add_buddy() is now a *real*Wilmer van der Gaast2007-04-18-7/+17
| | | | | | | | | 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-8/+8
| | | | | buddy/groupchat related functions.
* Split serv_got_update() into imcb_buddy_(status|times). (Well, the secondWilmer van der Gaast2007-04-15-59/+20
| | | | | | | 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-50/+50
| | | | | | 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-16/+17
| | | | | it's in acc too. wants_to_die is now an argument to imc_logout().
* More format string problems.Wilmer van der Gaast2007-04-15-21/+7
|
* More cleanups, mainly in the callbacks. Replaced things likeWilmer van der Gaast2007-04-05-68/+54
| | | | | | | | 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-232/+232
| | | | | | 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-37/+15
|
* Fixed #139. (Wrong Gender description)Wilmer van der Gaast2006-10-21-1/+1
|
* Extra comments in set.h and now properly using set_getbool() instead ofWilmer van der Gaast2006-08-13-4/+0
| | | | | set_getint().
* Added a per-account web_aware setting for ICQ connections.Wilmer van der Gaast2006-08-04-0/+5
|
* Implemented per-account nick lists instead of per-protocol nick lists.Wilmer van der Gaast2006-07-03-1/+2
| | | | | | | | | | 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()!
* Added protocol-specific settings, made the server setting specific to onlyWilmer van der Gaast2006-07-02-0/+15
| | | | | OSCAR and Jabber.
* Got rid of struct aim_user (now using account_t everywhere). Needs some moreWilmer van der Gaast2006-07-01-21/+14
| | | | | testing though.
*-. Merging from main development tree.Wilmer van der Gaast2006-05-26-7/+14
|\ \
| | * Disabling chat charset stuff again for now and fixed the crash-bug.Wilmer van der Gaast2006-05-25-4/+4
| | | | | | | | | | | | | | | | | | Unfortunately I can't figure out how to generate chat names that don't break old BitlBees.
| | * Silenced all compiler warnings that appeared after previous commit.Wilmer van der Gaast2006-05-23-1/+1
| | |
| | * Trying to fix charset issues with outgoing AIM chat messages.Wilmer van der Gaast2006-05-22-2/+7
| | |
| | * Modified oscar.c headers.Wilmer van der Gaast2006-05-21-0/+2
| |/
* / Moved everything to the BitlBee event handling API.Wilmer van der Gaast2006-05-10-41/+58
|/