aboutsummaryrefslogtreecommitdiffstats
path: root/protocols/yahoo
Commit message (Collapse)AuthorAgeLines
* Remove yahoo (the old protocol). Use funyahoo++ instead.dequis2016-11-19-8995/+0
| | | | | | RIP The previous commit already handled the part of telling users.
* yahoo: call callback on connect error to fix memleakdequis2015-10-21-0/+1
| | | | | | Passing NULL as the "fd" and 0 as the error. The callback is yahoo_connected() in libyahoo2.c, and with those parameters all it does is freeing the data parameter.
* yahoo: Fix handling of proxy connection failuresdequis2015-10-21-1/+9
| | | | | | | | | | | | | | | Fixes trac ticket 135, https://bugs.bitlbee.org/bitlbee/ticket/135 The ticket mentions 100% cpu usage when failing to connect to a socks proxy. It also provides a patch that just checks source == -1 and disconnects cleanly instead of trying to continue logging in. This commit is pretty much the same thing, adapted to the API we're currently using, since the original patch was for bitlbee 1.0.1 and it looks like the old api was terrible back then. That ticket was almost 10 years old. The yahoo code didn't change a lot in that time.
* typofix - https://github.com/vlajos/misspell_fixerVeres Lajos2015-08-07-3/+3
|
* Rename mail notification related settings for consistencydequis2015-05-28-3/+3
| | | | | - GMail notifications stuff is now just 'mail_notifications' - sed -i s/notify_handle/mail_notifications_handle/
* imcb_notify_email: change parameters to take a format stringdequis2015-05-28-10/+4
| | | | | | | Saves some messing with g_strdup_printf for the callers, and flags/sent_at weren't used anyway. Also check if the mail_notifications setting is enabled
* Gmail notifications support through new imcb_notify_email() APIArtem Savkov2015-05-28-7/+21
|
* Remove some compatibility macros that referenced nonexistent functionsdequis2015-05-05-2/+0
|
* coverity: Fix some (harmless?) use-after-free with g_slist_remove()dequis2015-02-22-1/+1
| | | | | | | These were passing a pointer to a variable right after it was g_free()'d They are most likely harmless as g_slist_remove() probably just needs the pointer location, but fixing it anyway.
* Reindent everything to K&R style with tabsIndent2015-02-20-2303/+2600
| | | | | | | Used uncrustify, with the configuration file in ./doc/uncrustify.cfg Commit author set to "Indent <please@skip.me>" so that it's easier to skip while doing git blame.
* Fix compiler warnings on Cygwin and Mac OS X.Jason Copenhaver2015-01-16-7/+11
| | | | | | | | * Don't use PIE/PIC on Cygwin/Darwin unless specified as these platforms don't support it. * Cleanup warnings for 'make check' build. * Fix the type issue for getsockopt calls. * Fix enum warnings in Yahoo libs on Mac OS X.
* Replace isdigit/isalpha/.../tolower/toupper with glib variantsdequis2015-01-16-1/+1
| | | | | | | | | | | This fixes warnings about passing signed chars to them (apparently they are implemented as macros that do array lookups without checks in some platforms, yay) Specifically: functions=isalnum|isalpha|isdigit|isspace|isxdigit|tolower|toupper sed -ir "s/$functions/g_ascii_&/g" **/*.c
* Fix incorrect Free Software Foundation addressMatej Cepl2015-01-16-11/+11
|
* Use glib functions for base64 decoding/encodingdequis2014-11-24-2/+17
| | | | | | | | | | | | This fixes several coverity warnings about 'tainted data index sink' and a fixme about thread safety in the old base64_decode implementation. Had to adapt the code that used base64_encode_real: - oauth.c: different character set order, but it's for the nonce so it doesn't matter - libyahoo2.c: used as part of the auth, changes "+/=" into "._-". Fixed by encoding first the usual way through glib, then replacing.
* RIP native win32 support (use cygwin instead)dequis2014-09-27-6/+0
| | | | It has been broken for a very long time and nobody cared about it.
* I'm still bored on a long flight. Wrote a script to automatically updateWilmer van der Gaast2013-02-21-1/+1
| | | | | | | my copyright mentions since some were getting pretty stale. Left files not touched since before 2012 alone so that this change doesn't touch almost EVERY source file.
* Cleaning up some more Yahoo! symbols.Wilmer van der Gaast2012-10-20-20/+18
|
* Some more removals. Using ifdefs instead of read deletions in Yahoo! dir toWilmer van der Gaast2012-10-20-1/+17
| | | | | | not make merges too complicated (although upstream really seems dead at this point :-/).
* Removing some more cruft now that I've (re)discovered ld garbage collection.Wilmer van der Gaast2012-10-20-4861/+1
| | | | | Mostly stuff related to obsolete Y!MSG login obfuscation schemes.
* Allow building position-independent executables. #981, patch from brainsmoke.Wilmer van der Gaast2012-09-15-1/+1
|
* Rename SRCDIR directory to _SRCDIR_. I guess #907 was caused by SRCDIRWilmer van der Gaast2012-02-11-3/+3
| | | | | unexpectedly being set to something already.
* yahoo: unused-but-set-variablesMiklos Vajna2011-12-06-42/+19
|
* Merge mainline stuff.Wilmer van der Gaast2010-08-31-0/+22
|\
| * Use nifty gcc -MD feature to automatically track .h dependencies of all CWilmer van der Gaast2010-08-27-0/+3
| | | | | | | | | | | | | | | | | | | | files, this finally gives proper dependencies, which means the end of getting broken binaries around headerfile changes, etc. Sure, this may not work on obscurux with superawesomeincompatiblecc while autoconf does, but at least BitlBee's configure script still runs in <1s. :-)
| * Better handling of yahoo add responses: libyahoo2 seems to (IMHO) wronglyWilmer van der Gaast2010-08-22-0/+19
| | | | | | | | | | | | assume that a non-0 status means the contact is on the list already and on-line. This causes ugly "imcb_buddy_status() for unknown handle" msgs.
* | First step in this merge. Mostly a bzr merge and then a cleanup of conflictsWilmer van der Gaast2010-08-24-0/+1
|\ \ | |/ |/| | | | | and parts I want to/have to redo (because of ui-fix).
| * merge in bitlbee 1.2.7Sven Moritz Hallberg2010-06-03-0/+9
| |\
| * \ merge in bitlbee 1.2.5Sven Moritz Hallberg2010-06-03-239/+191
| |\ \
| * \ \ merge in bitlbee 1.2.4Sven Moritz Hallberg2010-06-03-63/+479
| |\ \ \
| * \ \ \ pretty blind try at merging in the latest trunkSven Moritz Hallberg2009-03-12-8/+22
| |\ \ \ \
| * | | | | commit updates by ashish shukla <wahjava@gmail.com>Sven Moritz Hallberg2009-03-12-3/+4
| | | | | |
| * | | | | merge in latest trunkSven Moritz Hallberg2008-07-17-24/+14
| |\ \ \ \ \
| * \ \ \ \ \ merge in upstream changesSven Moritz Hallberg2008-02-16-1/+1
| |\ \ \ \ \ \
| * | | | | | | - add support for setting ops/voice according to OTR msgstateSven Moritz Hallberg2008-02-09-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - add 'otr trust' user command - support non-otr messages during keygen - run otr messages through strip_html - interpret <b> and <i> tags in html messages - record max message size in prpl - add 'encrypted' flag to user_t - cosmetics
* | | | | | | | Pick up away info from Yahoo! too.Wilmer van der Gaast2010-08-21-0/+2
| | | | | | | |
* | | | | | | | OpenSolaris (non-gcc) fixes, patches from Dagobert Michelsen <dam@opencsw.org>Wilmer van der Gaast2010-08-07-2/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | with some changes.
* | | | | | | | Some fixes for compiler warnings that only show up when compiling with -O2,Wilmer van der Gaast2010-08-05-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | and some additions to the Debian package description.
* | | | | | | | Try another way to silence int-pointer cast warnings in the Yahoo! module.Wilmer van der Gaast2010-08-04-5/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | -Wno-pointer-to-int-cast is not supported by gcc3.
* | | | | | | | Some NULL pointer checks for libyahoo2 - this code's currently crashingWilmer van der Gaast2010-07-25-3/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | because BitlBee ignores file transfers.
* | | | | | | | Inverting allow_reconnect logic on login failures. Automatic reconnects wereWilmer van der Gaast2010-07-24-4/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | getting im.bitlbee.org IP-banned sometimes. This fix keeps it happy for some time already.
* | | | | | | | Support buddy groups on Yahoo!Wilmer van der Gaast2010-07-24-3/+30
| | | | | | | |
* | | | | | | | New handling of authorization requests. The old one wasn't fully brokenWilmer van der Gaast2010-07-24-13/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | actually, but it needed a reconnect to see new contacts.
* | | | | | | | Merge complete. It still logs in...Wilmer van der Gaast2010-07-24-1985/+2170
| | | | | | | |
* | | | | | | | This should mostly be a no-op, merging *loads* of whitespace changes fromWilmer van der Gaast2010-07-23-866/+973
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | libyahoo2 so that I can see better what really changed.
* | | | | | | | Show idle + login time info in /WHOIS (if available).Wilmer van der Gaast2010-06-07-3/+1
| | | | | | | |
* | | | | | | | Merging killerbee stuff, bringing all the bleeding-edge stuff together.Wilmer van der Gaast2010-06-07-3/+6
|\ \ \ \ \ \ \ \
| * | | | | | | | Allow one to run the configure script from a different directory and put allWilmer van der Gaast2010-05-25-1/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | build files in there. I need this to properly make Debian package variants (i.e. libpurple and native).
| * | | | | | | | Mainline merge. (Probably mostly irrelevant for this branch, oh well.)Wilmer van der Gaast2010-05-16-0/+9
| |\ \ \ \ \ \ \ \ | | | |_|_|_|_|_|/ | | |/| | | | | |
| * | | | | | | | Merging head. Most changes are not so relevant because they're to IMWilmer van der Gaast2010-03-20-2/+6
| |\ \ \ \ \ \ \ \ | | | |_|_|_|_|_|/ | | |/| | | | | | | | | | | | | | | | | | | | | | | | modules.
| * | | | | | | | Merging in head.Wilmer van der Gaast2010-03-14-197/+158
| |\ \ \ \ \ \ \ \