# HG changeset patch # User Mark Doliner # Date 1247080531 0 # Node ID 88ef8c38a639db9b9bdd4a7af8fff0dfa2222779 # Parent 4813810ea7d44def16ade5d5a5c40966e61dd40c Use a custom clientkey for AIM and ICQ for Pidgin and Finch diff -r 4813810ea7d4 -r 88ef8c38a639 finch/finch.c --- a/finch/finch.c Wed Jul 08 19:02:40 2009 +0000 +++ b/finch/finch.c Wed Jul 08 19:15:31 2009 +0000 @@ -66,6 +66,17 @@ g_hash_table_insert(ui_info, "website", "http://pidgin.im"); g_hash_table_insert(ui_info, "dev_website", "http://developer.pidgin.im"); g_hash_table_insert(ui_info, "client_type", "console"); + + /* + * This is the client key for "Finch." It is owned by the AIM + * account "markdoliner." Please don't use this key for other + * applications. You can either not specify a client key, in + * which case the default "libpurple" key will be used, or you + * can register for your own client key at + * http://developer.aim.com/manageKeys.jsp + */ + g_hash_table_insert(ui_info, "prpl-aim-clientkey", "ma19sqWV9ymU6UYc"); + g_hash_table_insert(ui_info, "prpl-icq-clientkey", "ma19sqWV9ymU6UYc"); } return ui_info; diff -r 4813810ea7d4 -r 88ef8c38a639 pidgin/gtkmain.c --- a/pidgin/gtkmain.c Wed Jul 08 19:02:40 2009 +0000 +++ b/pidgin/gtkmain.c Wed Jul 08 19:15:31 2009 +0000 @@ -356,6 +356,17 @@ g_hash_table_insert(ui_info, "website", "http://pidgin.im"); g_hash_table_insert(ui_info, "dev_website", "http://developer.pidgin.im"); g_hash_table_insert(ui_info, "client_type", "pc"); + + /* + * This is the client key for "Pidgin." It is owned by the AIM + * account "markdoliner." Please don't use this key for other + * applications. You can either not specify a client key, in + * which case the default "libpurple" key will be used, or you + * can register for your own client key at + * http://developer.aim.com/manageKeys.jsp + */ + g_hash_table_insert(ui_info, "prpl-aim-clientkey", "ma1cSASNCKFtrdv9"); + g_hash_table_insert(ui_info, "prpl-icq-clientkey", "ma1cSASNCKFtrdv9"); } return ui_info;