Codebase list empathy / 9452044
Set chat.facebook.com:443 as fallback server Some nasty firewalls block the port 5222, Facebook servers allow connection to the port 443 as a fallback in this case. https://bugzilla.gnome.org/show_bug.cgi?id=672120 Guillaume Desmottes 12 years ago
2 changed file(s) with 8 addition(s) and 0 deletion(s). Raw diff Collapse all Expand all
136136 PARAM ("param-account", "chat.facebook.com");
137137 PARAM ("param-server", "chat.facebook.com");
138138 PARAM ("param-require-encryption", "true");
139 PARAM ("param-fallback-servers",
140 "chat.facebook.com:443");
139141 }
140142 else if (!tp_strdiff (type, "windows_live"))
141143 {
619619 }
620620 else if (!tp_strdiff (service, "facebook"))
621621 {
622 gchar *fallback_servers[] = {
623 "chat.facebook.com:443",
624 NULL };
625
622626 empathy_account_settings_set_icon_name_async (settings, "im-facebook",
623627 NULL, NULL);
624628 empathy_account_settings_set_boolean (settings, "require-encryption",
625629 TRUE);
626630 empathy_account_settings_set_string (settings, "server",
627631 "chat.facebook.com");
632 empathy_account_settings_set_strv (settings, "fallback-servers",
633 fallback_servers);
628634 }
629635
630636 out: