changeset 27503:88ef8c38a639

Use a custom clientkey for AIM and ICQ for Pidgin and Finch
author Mark Doliner <mark@kingant.net>
date Wed, 08 Jul 2009 19:15:31 +0000
parents 4813810ea7d4
children 4f24d5da4cb3
files finch/finch.c pidgin/gtkmain.c
diffstat 2 files changed, 22 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- 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;
--- 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;