Milan Crha <mcrha@redhat.com> ** Fix for bug #448435 (Keep UI consistent, disable SSL method for 636 port).

svn path=/trunk/; revision=36238
This commit is contained in:
Suman Manjunath
2008-09-01 04:16:05 +00:00
parent 07f20eb8fb
commit 42eec28fb0
2 changed files with 8 additions and 0 deletions

View File

@ -1,3 +1,10 @@
2008-09-01 Milan Crha <mcrha@redhat.com>
** Fix for bug #448435
* gui/component/addressbook-config.c: (eabc_general_host):
Keep UI consistent, disable SSL method for 636 port.
2008-09-01 Milan Crha <mcrha@redhat.com>
** Part of fix for bug #548827

View File

@ -736,6 +736,7 @@ eabc_general_host(EConfig *ec, EConfigItem *item, struct _GtkWidget *parent, str
tmp = e_source_get_property (sdialog->source, "ssl");
sdialog->ssl = tmp ? ldap_parse_ssl (tmp) : ADDRESSBOOK_LDAP_SSL_WHENEVER_POSSIBLE;
gtk_option_menu_set_history (GTK_OPTION_MENU(sdialog->ssl_optionmenu), sdialog->ssl);
gtk_widget_set_sensitive (sdialog->ssl_optionmenu, strcmp (port, LDAPS_PORT_STRING) != 0);
g_signal_connect(sdialog->ssl_optionmenu, "changed", G_CALLBACK(ssl_optionmenu_changed_cb), sdialog);
g_object_unref(gui);