| 222 _("Allow plaintext auth over unencrypted streams"), |
222 _("Allow plaintext auth over unencrypted streams"), |
| 223 "auth_plain_in_clear", FALSE); |
223 "auth_plain_in_clear", FALSE); |
| 224 prpl_info.protocol_options = g_list_append(prpl_info.protocol_options, |
224 prpl_info.protocol_options = g_list_append(prpl_info.protocol_options, |
| 225 option); |
225 option); |
| 226 |
226 |
| |
227 #ifdef HAVE_CYRUS_SASL |
| |
228 option = purple_account_option_bool_new( |
| |
229 _("Use GSSAPI (Kerberos v5) for authentication"), |
| |
230 "auth_gssapi", TRUE); |
| |
231 prpl_info.protocol_options = g_list_append(prpl_info.protocol_options, |
| |
232 option); |
| |
233 #endif |
| |
234 |
| 227 option = purple_account_option_int_new(_("Connect port"), "port", 5222); |
235 option = purple_account_option_int_new(_("Connect port"), "port", 5222); |
| 228 prpl_info.protocol_options = g_list_append(prpl_info.protocol_options, |
236 prpl_info.protocol_options = g_list_append(prpl_info.protocol_options, |
| 229 option); |
237 option); |
| 230 |
238 |
| 231 option = purple_account_option_string_new(_("Connect server"), |
239 option = purple_account_option_string_new(_("Connect server"), |