# HG changeset patch # User Mark Doliner # Date 1134363055 0 # Node ID 310fea768a53c164dd91701154a270ec86e825a2 # Parent bfa21679fef5b62f73669e91b08220d476a37aba [gaim-migrate @ 14762] Peter and Ethan: Pretty please with sugar on top test this as soon as possible. I'm hoping it'll fix the ICQ auth request/SPIM problem. The problem is much more prominent with you two than with I. committer: Tailor Script diff -r bfa21679fef5 -r 310fea768a53 src/protocols/oscar/service.c --- a/src/protocols/oscar/service.c Mon Dec 12 04:31:03 2005 +0000 +++ b/src/protocols/oscar/service.c Mon Dec 12 04:50:55 2005 +0000 @@ -807,7 +807,11 @@ if (!sess || !(conn = aim_conn_findbygroup(sess, AIM_CB_FAM_MSG))) return -EINVAL; - data = AIM_ICQ_STATE_DIRECTREQUIREAUTH | AIM_ICQ_STATE_HIDEIP | AIM_ICQ_STATE_WEBAWARE | status; + /* + * 'AIM_ICQ_STATE_DIRECTREQUIREAUTH' was removed because setting it might + * be the cause of people reciving many unsolicited authorization requests. + */ + data = AIM_ICQ_STATE_HIDEIP | AIM_ICQ_STATE_WEBAWARE | status; if (!(fr = aim_tx_new(sess, conn, AIM_FRAMETYPE_FLAP, 0x02, 10 + 8))) return -ENOMEM;