From c002a2ab81f9a2ef782309f455e1232bbe5543a9 Mon Sep 17 00:00:00 2001 From: Chris Toshok Date: Thu, 9 Jan 2003 23:50:34 +0000 Subject: addressbook-config.etspec is gone. 2003-01-09 Chris Toshok * gui/component/Makefile.am: addressbook-config.etspec is gone. * gui/component/addressbook-config.c: make the sources table be a gtktreeview instead of an etable. * gui/component/ldap-config.glade: remove all references to gnome-hint.png svn path=/trunk/; revision=19380 --- addressbook/ChangeLog | 10 + addressbook/gui/component/Makefile.am | 6 +- addressbook/gui/component/addressbook-config.c | 219 +- .../gui/component/addressbook-config.etspec | 9 - addressbook/gui/component/ldap-config.glade | 12110 +++++++++---------- 5 files changed, 6001 insertions(+), 6353 deletions(-) delete mode 100644 addressbook/gui/component/addressbook-config.etspec (limited to 'addressbook') diff --git a/addressbook/ChangeLog b/addressbook/ChangeLog index deffa41835..e103b256e3 100644 --- a/addressbook/ChangeLog +++ b/addressbook/ChangeLog @@ -1,3 +1,13 @@ +2003-01-09 Chris Toshok + + * gui/component/Makefile.am: addressbook-config.etspec is gone. + + * gui/component/addressbook-config.c: make the sources table be a + gtktreeview instead of an etable. + + * gui/component/ldap-config.glade: remove all references to + gnome-hint.png + 2003-01-09 Chris Toshok * gui/widgets/gal-view-minicard.c (column_width_changed): fix diff --git a/addressbook/gui/component/Makefile.am b/addressbook/gui/component/Makefile.am index 7aa28859b4..6bf1c57f3e 100644 --- a/addressbook/gui/component/Makefile.am +++ b/addressbook/gui/component/Makefile.am @@ -100,14 +100,10 @@ glade_DATA = ldap-config.glade iconsdir = $(datadir)/evolution/images -etspecdir = $(datadir)/evolution/etspec -etspec_DATA = addressbook-config.etspec - EXTRA_DIST = \ $(glade_DATA) \ $(server_DATA) \ - $(server_in_files) \ - $(etspec_DATA) + $(server_in_files) if ENABLE_PURIFY PLINK = $(LIBTOOL) --mode=link $(PURIFY) $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(LDFLAGS) -o $@ diff --git a/addressbook/gui/component/addressbook-config.c b/addressbook/gui/component/addressbook-config.c index 584565fcc4..bee8261fb0 100644 --- a/addressbook/gui/component/addressbook-config.c +++ b/addressbook/gui/component/addressbook-config.c @@ -109,7 +109,8 @@ struct _AddressbookDialog { GNOME_Evolution_Shell shell; GtkWidget *sourcesTable; - ETableModel *sourcesModel; + GtkTreeModel *sourcesModel; + GtkTreeSelection *sourcesSelection; GtkWidget *addSource; GtkWidget *editSource; GtkWidget *deleteSource; @@ -178,7 +179,7 @@ struct _AddressbookSourceDialog { #endif /* stuff for the account editor window */ - int source_model_row; + GtkTreeIter *source_model_row; GtkWidget *ok_button; GtkWidget *apply_button; GtkWidget *close_button; @@ -356,6 +357,11 @@ addressbook_source_dialog_destroy (gpointer data, GObject *where_object_was) #undef IF_UNREF #endif + if (dialog->source_model_row) { + gtk_tree_iter_free (dialog->source_model_row); + dialog->source_model_row = NULL; + } + gtk_widget_destroy (GTK_WIDGET (dialog->gui)); g_free (dialog); @@ -372,12 +378,18 @@ addressbook_add_server_druid_finish (GnomeDruidPage *druid_page, GtkWidget *gnom { AddressbookSource *source = addressbook_dialog_get_source (sdialog); AddressbookDialog *dialog = sdialog->addressbook_dialog; + GtkTreeIter iter; printf ("in finish (%s,%s)\n", source->name, source->host); - e_table_memory_store_insert (E_TABLE_MEMORY_STORE (dialog->sourcesModel), - -1, source, source->name, source->host); + gtk_list_store_append (GTK_LIST_STORE (dialog->sourcesModel), &iter); + gtk_list_store_set (GTK_LIST_STORE (dialog->sourcesModel), &iter, + 0, source->name, + 1, source->host, + 2, source, + -1); + evolution_config_control_changed (dialog->config_control); /* tear down the widgets */ @@ -1287,11 +1299,18 @@ edit_dialog_store_change (AddressbookSourceDialog *sdialog) } /* store the new source in the addressbook dialog */ - old_source = e_table_memory_get_data (E_TABLE_MEMORY (dialog->sourcesModel), sdialog->source_model_row); + gtk_tree_model_get (dialog->sourcesModel, + sdialog->source_model_row, + 2, &old_source, + -1); addressbook_source_free (old_source); - e_table_memory_store_change (E_TABLE_MEMORY_STORE (dialog->sourcesModel), - sdialog->source_model_row, source, source->name, source->host); + gtk_list_store_set (GTK_LIST_STORE (dialog->sourcesModel), + sdialog->source_model_row, + 0, source->name, + 1, source->host, + 2, source, + -1); /* and let the config control know about the change */ evolution_config_control_changed (dialog->config_control); @@ -1324,15 +1343,23 @@ edit_dialog_ok_clicked (GtkWidget *item, AddressbookSourceDialog *sdialog) } static AddressbookSourceDialog* -addressbook_edit_server_dialog (AddressbookDialog *dialog, int model_row) +addressbook_edit_server_dialog (GtkTreeModel *model, + GtkTreePath *path, + GtkTreeIter *model_row, + gpointer data) { - AddressbookSource *source = e_table_memory_get_data (E_TABLE_MEMORY(dialog->sourcesModel), model_row); + AddressbookDialog *dialog = data; + AddressbookSource *source; AddressbookSourceDialog *sdialog = g_new0 (AddressbookSourceDialog, 1); GtkWidget *general_tab_help; GtkWidget *fewer_options_button, *more_options_button; + gtk_tree_model_get (model, model_row, + 2, &source, + -1); + sdialog->addressbook_dialog = dialog; - sdialog->source_model_row = model_row; + sdialog->source_model_row = gtk_tree_iter_copy (model_row); sdialog->gui = glade_xml_new (EVOLUTION_GLADEDIR "/" GLADE_FILE_NAME, NULL, NULL); @@ -1441,61 +1468,29 @@ add_source_clicked (GtkWidget *widget, AddressbookDialog *dialog) static void edit_source_clicked (GtkWidget *widget, AddressbookDialog *dialog) { - int i; - ESelectionModel *selection_model; - int row_count; - - selection_model = e_table_get_selection_model (e_table_scrolled_get_table (E_TABLE_SCROLLED(dialog->sourcesTable))); - row_count = e_selection_model_row_count (selection_model); - - for (i = 0; i < row_count; i ++) { - if (e_selection_model_is_row_selected (selection_model, i)) { - addressbook_edit_server_dialog (dialog, i); - break; /* single select so we're done now */ - } - } - -#if 0 - AddressbookSource *source; - AddressbookSourceDialog *sdialog; - - source = gtk_clist_get_row_data (GTK_CLIST (dialog->clistSources), dialog->source_row); - - sdialog = addressbook_config_source_with_gui (dialog->gui, source, dialog->page); - if (sdialog->id == 0) { - /* Ok was clicked */ - source = addressbook_source_copy(sdialog->source); - - gtk_clist_set_text (GTK_CLIST (dialog->clistSources), dialog->source_row, 0, source->name); - gtk_clist_set_text (GTK_CLIST (dialog->clistSources), dialog->source_row, 1, source->host); - gtk_clist_set_row_data (GTK_CLIST (dialog->clistSources), dialog->source_row, source); + gtk_tree_selection_selected_foreach (dialog->sourcesSelection, + (GtkTreeSelectionForeachFunc)addressbook_edit_server_dialog, + dialog); +} - evolution_config_control_changed (dialog->config_control); +static void +delete_server (GtkTreeModel *model, + GtkTreePath *path, + GtkTreeIter *model_row, + gpointer data) +{ + AddressbookDialog *dialog = data; - update_sensitivity (dialog); - } -#endif + gtk_list_store_remove (GTK_LIST_STORE (dialog->sourcesModel), + model_row); } static void delete_source_clicked (GtkWidget *widget, AddressbookDialog *dialog) { - int i; - ESelectionModel *selection_model; - int row_count; - - selection_model = e_table_get_selection_model (e_table_scrolled_get_table (E_TABLE_SCROLLED(dialog->sourcesTable))); - row_count = e_selection_model_row_count (selection_model); - - for (i = 0; i < row_count; i ++) { - if (e_selection_model_is_row_selected (selection_model, i)) { - AddressbookSource *source = e_table_memory_get_data (E_TABLE_MEMORY(dialog->sourcesModel), i); - e_table_memory_store_remove (E_TABLE_MEMORY_STORE (dialog->sourcesModel), i); - addressbook_source_free (source); - - break; /* single select so we're done now */ - } - } + gtk_tree_selection_selected_foreach (dialog->sourcesSelection, + delete_server, + dialog); evolution_config_control_changed (dialog->config_control); } @@ -1520,36 +1515,49 @@ ldap_config_control_apply_callback (EvolutionConfigControl *config_control, void *data) { AddressbookDialog *dialog; - int i; - int count; + GtkTreeIter iter; dialog = (AddressbookDialog *) data; addressbook_storage_clear_sources(); - count = e_table_model_row_count (E_TABLE_MODEL (dialog->sourcesModel)); + if (! gtk_tree_model_get_iter_first (dialog->sourcesModel, + &iter)) + return; + + do { + AddressbookSource *source; + + gtk_tree_model_get (dialog->sourcesModel, + &iter, + 2, &source, + -1); - for (i = 0; i < count; i ++) { - AddressbookSource *source = e_table_memory_get_data (E_TABLE_MEMORY (dialog->sourcesModel), i); addressbook_storage_add_source (addressbook_source_copy (source)); - } + } while (gtk_tree_model_iter_next (dialog->sourcesModel, &iter)); addressbook_storage_write_sources(); } static void -sources_selection_changed (ESelectionModel *esm, AddressbookDialog *dialog) +sources_selection_changed (GtkTreeSelection *selection, AddressbookDialog *dialog) { - gboolean sensitive = e_selection_model_selected_count (esm) == 1; + gboolean sensitive; + GtkTreeIter iter; + + sensitive = gtk_tree_selection_get_selected (selection, NULL, &iter); gtk_widget_set_sensitive (dialog->editSource, sensitive); gtk_widget_set_sensitive (dialog->deleteSource, sensitive); } static void -sources_table_double_click (ETable *et, int row, int col, GdkEvent *event, AddressbookDialog *dialog) +sources_table_row_activated (GtkTreeView *tree_view, GtkTreePath *path, + GtkTreeViewColumn *column, AddressbookDialog *dialog) { - addressbook_edit_server_dialog (dialog, row); + GtkTreeIter iter; + gtk_tree_model_get_iter (dialog->sourcesModel, &iter, path); + addressbook_edit_server_dialog (dialog->sourcesModel, NULL, &iter, dialog); } @@ -1558,20 +1566,22 @@ ldap_dialog_new (GNOME_Evolution_Shell shell) { AddressbookDialog *dialog; GList *l; - ESelectionModel *esm; ETable *et; + GtkWidget *scrolled; dialog = g_new0 (AddressbookDialog, 1); dialog->gui = glade_xml_new (EVOLUTION_GLADEDIR "/" GLADE_FILE_NAME, NULL, NULL); dialog->shell = shell; - dialog->sourcesTable = glade_xml_get_widget (dialog->gui, "sourcesTable"); - et = e_table_scrolled_get_table (E_TABLE_SCROLLED(dialog->sourcesTable)); - g_signal_connect (et, "double_click", - G_CALLBACK (sources_table_double_click), dialog); + scrolled = glade_xml_get_widget (dialog->gui, "sourcesTable"); + dialog->sourcesTable = g_object_get_data (G_OBJECT (scrolled), "table"); + dialog->sourcesModel = g_object_get_data (G_OBJECT (scrolled), "model"); + dialog->sourcesSelection = g_object_get_data (G_OBJECT (scrolled), "selection"); + + g_signal_connect (dialog->sourcesTable, "row_activated", + G_CALLBACK (sources_table_row_activated), dialog); - dialog->sourcesModel = g_object_get_data (G_OBJECT (dialog->sourcesTable), "model"); dialog->addSource = glade_xml_get_widget (dialog->gui, "addSource"); g_signal_connect (dialog->addSource, "clicked", @@ -1591,18 +1601,23 @@ ldap_dialog_new (GNOME_Evolution_Shell shell) l = addressbook_storage_get_sources (); for (; l != NULL; l = l->next) { AddressbookSource *source; + GtkTreeIter iter; source = addressbook_source_copy ((AddressbookSource*)l->data); - e_table_memory_store_insert (E_TABLE_MEMORY_STORE (dialog->sourcesModel), - -1, source, source->name, source->host); + gtk_list_store_append (GTK_LIST_STORE (dialog->sourcesModel), &iter); + + gtk_list_store_set (GTK_LIST_STORE (dialog->sourcesModel), &iter, + 0, source->name, + 1, source->host, + 2, source, + -1); } - esm = e_table_get_selection_model (et); - g_signal_connect (esm, "selection_changed", + g_signal_connect (dialog->sourcesSelection, "changed", G_CALLBACK (sources_selection_changed), dialog); - sources_selection_changed (esm, dialog); + sources_selection_changed (dialog->sourcesSelection, dialog); dialog->page = glade_xml_get_widget (dialog->gui, "addressbook-sources"); @@ -1611,28 +1626,42 @@ ldap_dialog_new (GNOME_Evolution_Shell shell) return dialog; } -static ETableMemoryStoreColumnInfo sources_table_columns[] = { - E_TABLE_MEMORY_STORE_STRING, - E_TABLE_MEMORY_STORE_STRING, - E_TABLE_MEMORY_STORE_TERMINATOR -}; - GtkWidget* addressbook_dialog_create_sources_table (char *name, char *string1, char *string2, int num1, int num2) { - GtkWidget *table; - ETableModel *model; + GtkWidget *table, *scrolled; + GtkTreeSelection *selection; + GtkCellRenderer *renderer; + GtkListStore *model; + char *titles[2]; - model = e_table_memory_store_new (sources_table_columns); + scrolled = gtk_scrolled_window_new (NULL, NULL); + gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (scrolled), + GTK_POLICY_AUTOMATIC, GTK_POLICY_AUTOMATIC); - table = e_table_scrolled_new_from_spec_file (model, - NULL, - EVOLUTION_ETSPECDIR "/addressbook-config.etspec", - NULL); + model = gtk_list_store_new (3, G_TYPE_STRING, G_TYPE_STRING, G_TYPE_POINTER); + table = gtk_tree_view_new_with_model ((GtkTreeModel *) model); - g_object_set_data (G_OBJECT (table), "model", model); + renderer = gtk_cell_renderer_text_new (); + gtk_tree_view_insert_column_with_attributes ((GtkTreeView *) table, -1, _("Account Name"), + renderer, "text", 0, NULL); + gtk_tree_view_insert_column_with_attributes ((GtkTreeView *) table, -1, _("Server Name"), + renderer, "text", 1, NULL); - return table; + selection = gtk_tree_view_get_selection ((GtkTreeView *) table); + gtk_tree_selection_set_mode (selection, GTK_SELECTION_SINGLE); + gtk_tree_view_set_headers_visible ((GtkTreeView *) table, TRUE); + + gtk_container_add (GTK_CONTAINER (scrolled), table); + + g_object_set_data (G_OBJECT (scrolled), "model", model); + g_object_set_data (G_OBJECT (scrolled), "selection", selection); + g_object_set_data (G_OBJECT (scrolled), "table", table); + + gtk_widget_show (scrolled); + gtk_widget_show (table); + + return scrolled; } #endif /* HAVE_LDAP */ @@ -1683,7 +1712,7 @@ addressbook_config_control_new (void) if (! shell) return NULL; - return BONOBO_OBJECT (ldap_config_control_new (shell)); + return ldap_config_control_new (shell); } void diff --git a/addressbook/gui/component/addressbook-config.etspec b/addressbook/gui/component/addressbook-config.etspec deleted file mode 100644 index e30d11f1f8..0000000000 --- a/addressbook/gui/component/addressbook-config.etspec +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/addressbook/gui/component/ldap-config.glade b/addressbook/gui/component/ldap-config.glade index 4a5d00ba07..137a39b794 100644 --- a/addressbook/gui/component/ldap-config.glade +++ b/addressbook/gui/component/ldap-config.glade @@ -1,6299 +1,5921 @@ - + - - - - no - Add (or Edit) Attribute Mappings - GTK_WINDOW_TOPLEVEL - no - yes - yes - GTK_WIN_POS_NONE - - - - no - 8 - yes - - - - GTK_BUTTONBOX_END - 8 - yes - - - - yes - yes - yes - gtk-ok - yes - yes - - - - - - yes - yes - yes - gtk-cancel - yes - yes - - - - - 0 - no - yes - GTK_PACK_END - - - - - - no - 0 - yes - - - - 3 - no - 3 - yes - - - - ldap.png - yes - - - 0 - no - no - - - - - - Please select an Evolution attribute and an + + + + Add (or Edit) Attribute Mappings + GTK_WINDOW_TOPLEVEL + GTK_WIN_POS_NONE + False + True + False + True + + + + True + False + 8 + + + + True + GTK_BUTTONBOX_END + + + + True + True + True + gtk-ok + True + GTK_RELIEF_NORMAL + 0 + + + + + + True + True + True + gtk-cancel + True + GTK_RELIEF_NORMAL + 0 + + + + + 0 + False + True + GTK_PACK_END + + + + + + True + False + 0 + + + + True + Please select an Evolution attribute and an LDAP attribute to associate with it. - GTK_JUSTIFY_LEFT - no - 0.5 - 0.5 - 0 - 0 - yes - - - 0 - no - no - - - - - 0 - yes - yes - - - - - - yes - - - 0 - yes - yes - - - - - - 3 - no - 3 - 3 - 2 - 2 - yes - - - - _Evolution attribute: - GTK_JUSTIFY_CENTER - no - 0 - 0.5 - 0 - 0 - combo-entry2 - yes - yes - - - 0 - 1 - 0 - 1 - 0 - 0 - fill - - - - - - - _LDAP attribute: - GTK_JUSTIFY_CENTER - no - 0 - 0.5 - 0 - 0 - combo-entry3 - yes - yes - - - 0 - 1 - 1 - 2 - 0 - 0 - fill - - - - - - - no - no - yes - no - yes - yes - - - - yes - yes - - 0 - yes - yes - - - - - - yes - - - - yes - - - - - 0.0 - yes - - - - - - - - - 1 - 2 - 0 - 1 - 0 - 0 - expand|fill - - - - - - - no - no - yes - no - yes - yes - - - - yes - yes - - 0 - yes - yes - - - - - - yes - - - - yes - - - - - 0.0 - yes - - - - - - - - - 1 - 2 - 1 - 2 - 0 - 0 - expand|fill - - - - - - 0 - yes - yes - - - - - 0 - yes - yes - - - - - 4 - yes - yes - - - - - no - Add (or Edit) Attribute Mappings - GTK_WINDOW_TOPLEVEL - no - 393 - 324 - no - yes - GTK_WIN_POS_NONE - - - - no - 8 - yes - - - - GTK_BUTTONBOX_END - 8 - yes - - - - yes - yes - yes - gtk-ok - yes - yes - - - - - - yes - yes - yes - gtk-cancel - yes - yes - - - - - 0 - no - yes - GTK_PACK_END - - - - - - no - 0 - yes - - - - 3 - no - 3 - yes - - - - ldap.png - yes - - - 0 - no - no - - - - - - Please select an Evolution attribute and an + False + False + GTK_JUSTIFY_LEFT + False + False + 0.5 + 0.5 + 0 + 0 + + + 0 + False + False + + + + + + True + + + 0 + True + True + + + + + + 3 + True + 2 + 2 + False + 3 + 3 + + + + True + _Evolution attribute: + True + False + GTK_JUSTIFY_CENTER + False + False + 0 + 0.5 + 0 + 0 + combo-entry2 + + + 0 + 1 + 0 + 1 + fill + + + + + + + True + _LDAP attribute: + True + False + GTK_JUSTIFY_CENTER + False + False + 0 + 0.5 + 0 + 0 + combo-entry3 + + + 0 + 1 + 1 + 2 + fill + + + + + + + True + False + True + False + True + False + + + + True + True + True + True + 0 + + True + * + False + + + + + + True + GTK_SELECTION_BROWSE + + + + True + + + + True + + False + False + GTK_JUSTIFY_LEFT + False + False + 0 + 0.5 + 0 + 0 + + + + + + + + + 1 + 2 + 0 + 1 + + + + + + + True + False + True + False + True + False + + + + True + True + True + True + 0 + + True + * + False + + + + + + True + GTK_SELECTION_BROWSE + + + + True + + + + True + + False + False + GTK_JUSTIFY_LEFT + False + False + 0 + 0.5 + 0 + 0 + + + + + + + + + 1 + 2 + 1 + 2 + + + + + + 0 + True + True + + + + + 0 + True + True + + + + + + + + Add (or Edit) Attribute Mappings + GTK_WINDOW_TOPLEVEL + GTK_WIN_POS_NONE + False + 393 + 324 + True + False + True + + + + True + False + 8 + + + + True + GTK_BUTTONBOX_END + + + + True + True + True + gtk-ok + True + GTK_RELIEF_NORMAL + 0 + + + + + + True + True + True + gtk-cancel + True + GTK_RELIEF_NORMAL + 0 + + + + + 0 + False + True + GTK_PACK_END + + + + + + True + False + 0 + + + + True + Please select an Evolution attribute and an LDAP attribute to associate with it. - GTK_JUSTIFY_LEFT - no - 0.5 - 0.5 - 0 - 0 - yes - - - 0 - no - no - - - - - 0 - no - no - - - - - - yes - - - 0 - no - no - - - - - - 3 - no - 3 - 3 - 2 - 2 - yes - - - - _Evolution attribute: - GTK_JUSTIFY_CENTER - no - 0 - 0.5 - 0 - 0 - entry32 - yes - yes - - - 0 - 1 - 0 - 1 - 0 - 0 - fill - - - - - - - no - no - yes - no - yes - yes - - - - yes - yes - - 0 - yes - yes - - - - - - yes - - - - yes - - - - - 0.0 - yes - - - - - - - - - 1 - 2 - 0 - 1 - 0 - 0 - expand|fill - - - - - - - _LDAP attributes: - GTK_JUSTIFY_CENTER - no - 0 - 7.45058e-09 - 0 - 0 - yes - yes - - - 0 - 1 - 1 - 2 - 0 - 0 - fill - expand|fill - - - - - - GTK_POLICY_AUTOMATIC - GTK_POLICY_AUTOMATIC - GTK_SHADOW_IN - yes - - - - yes - yes - yes - - - - CList:title - Attribute - GTK_JUSTIFY_CENTER - no - 0.5 - 0.5 - 0 - 0 - yes - - - - - - CList:title - Select - GTK_JUSTIFY_CENTER - no - 0.5 - 0.5 - 0 - 0 - yes - - - - - - - - GTK_UPDATE_CONTINUOUS - yes - - - - - - GTK_UPDATE_CONTINUOUS - yes - - - - - 1 - 2 - 1 - 2 - 0 - 0 - fill - fill - - - - - 0 - yes - yes - - - - - 0 - yes - yes - - - - - 4 - yes - yes - - - - - no - account-editor - GTK_WINDOW_TOPLEVEL - no - no - yes - GTK_WIN_POS_NONE - - - - no - 0 - yes - - - - yes - yes - yes - GTK_POS_TOP - no - 2 - 2 - no - yes - - - - 6 - no - 3 - yes - - - - 3 - no - 4 - yes - - - - _Display name: - GTK_JUSTIFY_CENTER - no - 0.5 - 0.5 - 0 - 0 - yes - yes - - - 0 - no - no - - - - - - 1 - 0.5 - 0.9 - 1 - yes - - - - yes - yes - - 0 - yes - yes - - - - - 0 - yes - yes - - - - - 0 - no - no - - - - - - yes - - - 0 - no - no - - - - - - - - General - GTK_JUSTIFY_CENTER - no - 0.5 - 0.5 - 0 - 0 - yes - - - tab - - - - - - no - 0 - yes - - - - - - - - - - Connecting - GTK_JUSTIFY_CENTER - no - 0.5 - 0.5 - 0 - 0 - yes - - - tab - - - - - - no - 0 - yes - - - - - - - - - - Searching - GTK_JUSTIFY_CENTER - no - 0.5 - 0.5 - 0 - 0 - yes - - - tab - - - - - - no - 0 - yes - - - - - - - - - - Objectclasses - GTK_JUSTIFY_CENTER - no - 0.5 - 0.5 - 0 - 0 - yes - - - tab - - - - - - no - 0 - yes - - - - - - - - - - Mappings - GTK_JUSTIFY_CENTER - no - 0.5 - 0.5 - 0 - 0 - yes - - - tab - - - - - - no - 0 - yes - - - - - - - - - - DN Customization - GTK_JUSTIFY_CENTER - no - 0.5 - 0.5 - 0 - 0 - yes - - - tab - - - - - 0 - yes - yes - - - - - - yes - - - 0 - yes - yes - - - - - - no - 0 - yes - - - - no - no - GTK_POS_TOP - no - 2 - 2 - no - yes - - - - GTK_BUTTONBOX_START - 0 - yes - - - - yes - yes - << Fewer Options - GTK_RELIEF_NORMAL - yes - - - - - - - - label554 - GTK_JUSTIFY_CENTER - no - 0.5 - 0.5 - 0 - 0 - yes - - - tab - - - - - - GTK_BUTTONBOX_START - 0 - yes - - - - yes - yes - _More Options >> - GTK_RELIEF_NORMAL - yes - yes - - - - - - - - label555 - GTK_JUSTIFY_CENTER - no - 0.5 - 0.5 - 0 - 0 - yes - - - tab - - - - - 0 - yes - yes - - - - - - GTK_BUTTONBOX_END - 0 - yes - - - - no - yes - yes - GTK_RELIEF_NORMAL - yes - gtk-ok - yes - yes - - - - - - no - yes - yes - GTK_RELIEF_NORMAL - yes - gtk-apply - yes - yes - - - - - - yes - yes - GTK_RELIEF_NORMAL - yes - gtk-close - yes - yes - - - - - 0 - yes - yes - - - - - 0 - no - no - - - - - - - no - account-druid - GTK_WINDOW_TOPLEVEL - no - no - yes - GTK_WIN_POS_NONE - - - - yes - - - - LDAP Configuration Assistant - This assistant will help you to access online directory services + False + False + GTK_JUSTIFY_LEFT + False + False + 0.5 + 0.5 + 0 + 0 + + + 0 + False + False + + + + + + True + + + 0 + False + False + + + + + + 3 + True + 2 + 2 + False + 3 + 3 + + + + True + _Evolution attribute: + True + False + GTK_JUSTIFY_CENTER + False + False + 0 + 0.5 + 0 + 0 + entry32 + + + 0 + 1 + 0 + 1 + fill + + + + + + + True + False + True + False + True + False + + + + True + True + True + True + 0 + + True + * + False + + + + + + True + GTK_SELECTION_BROWSE + + + + True + + + + True + + False + False + GTK_JUSTIFY_LEFT + False + False + 0 + 0.5 + 0 + 0 + + + + + + + + + 1 + 2 + 0 + 1 + + + + + + + True + _LDAP attributes: + True + False + GTK_JUSTIFY_CENTER + False + False + 0 + 7.45058e-09 + 0 + 0 + + + 0 + 1 + 1 + 2 + fill + + + + + + True + GTK_POLICY_AUTOMATIC + GTK_POLICY_AUTOMATIC + GTK_SHADOW_IN + GTK_CORNER_TOP_LEFT + + + + True + True + True + False + False + True + + + + + 1 + 2 + 1 + 2 + fill + fill + + + + + 0 + True + True + + + + + 0 + True + True + + + + + + + + account-editor + GTK_WINDOW_TOPLEVEL + GTK_WIN_POS_NONE + False + True + False + + + + True + False + 0 + + + + True + True + True + True + GTK_POS_TOP + False + 2 + 2 + False + + + + 6 + True + False + 3 + + + + 3 + True + False + 4 + + + + True + _Display name: + True + False + GTK_JUSTIFY_CENTER + False + False + 0.5 + 0.5 + 0 + 0 + + + 0 + False + False + + + + + + True + 1 + 0.5 + 0.9 + 1 + + + + True + True + True + True + 0 + + True + * + False + + + + + 0 + True + True + + + + + 0 + False + False + + + + + + True + + + 0 + False + False + + + + + False + True + + + + + + True + General + False + False + GTK_JUSTIFY_CENTER + False + False + 0.5 + 0.5 + 0 + 0 + + + tab + + + + + + True + False + 0 + + + + + + + False + True + + + + + + True + Connecting + False + False + GTK_JUSTIFY_CENTER + False + False + 0.5 + 0.5 + 0 + 0 + + + tab + + + + + + True + False + 0 + + + + + + + False + True + + + + + + True + Searching + False + False + GTK_JUSTIFY_CENTER + False + False + 0.5 + 0.5 + 0 + 0 + + + tab + + + + + + True + False + 0 + + + + + + + False + True + + + + + + True + Objectclasses + False + False + GTK_JUSTIFY_CENTER + False + False + 0.5 + 0.5 + 0 + 0 + + + tab + + + + + + True + False + 0 + + + + + + + False + True + + + + + + True + Mappings + False + False + GTK_JUSTIFY_CENTER + False + False + 0.5 + 0.5 + 0 + 0 + + + tab + + + + + + True + False + 0 + + + + + + + False + True + + + + + + True + DN Customization + False + False + GTK_JUSTIFY_CENTER + False + False + 0.5 + 0.5 + 0 + 0 + + + tab + + + + + 0 + True + True + + + + + + True + + + 0 + True + True + + + + + + True + False + 0 + + + + True + False + False + GTK_POS_TOP + False + 2 + 2 + False + + + + True + GTK_BUTTONBOX_START + 0 + + + + True + True + True + << Fewer Options + True + GTK_RELIEF_NORMAL + + + + + False + True + + + + + + True + label554 + False + False + GTK_JUSTIFY_CENTER + False + False + 0.5 + 0.5 + 0 + 0 + + + tab + + + + + + True + GTK_BUTTONBOX_START + 0 + + + + True + True + True + _More Options >> + True + GTK_RELIEF_NORMAL + + + + + False + True + + + + + + True + label555 + False + False + GTK_JUSTIFY_CENTER + False + False + 0.5 + 0.5 + 0 + 0 + + + tab + + + + + 0 + True + True + + + + + + True + GTK_BUTTONBOX_END + 0 + + + + True + False + True + True + gtk-ok + True + GTK_RELIEF_NORMAL + + + + + + True + False + True + True + gtk-apply + True + GTK_RELIEF_NORMAL + + + + + + True + True + True + gtk-close + True + GTK_RELIEF_NORMAL + + + + + 0 + True + True + + + + + 0 + False + False + + + + + + + + account-druid + GTK_WINDOW_TOPLEVEL + GTK_WIN_POS_NONE + False + True + False + + + + 4 + True + False + + + + True + GNOME_EDGE_START + LDAP Configuration Assistant + This assistant will help you to access online directory services using LDAP (Lightweight Directory Access Protocol) servers. Adding a new LDAP server requires some specialized information about the server. Please contact your system administrator if you need help finding this information. - ldap.png - xstdruidbg-3.png - GNOME_EDGE_START - yes - #ffffff - #000000 - #000000 - #000000 - #ffffff - - - - - - Step 1: Server Information - yes - #ffffff - #000000 - #000000 - - - - 3 - no - 3 - yes - - - - 3 - no - 3 - yes - - - - The first step in configuring an LDAP server is to provide its name, and your log in + #ffffffffffff + #000000000000 + #000000000000 + #000000000000 + #ffffffffffff + + + + + + True + Step 1: Server Information + #e660bfffe408 + #6258081ae408 + #09380816d54c + + + + 3 + True + False + 3 + + + + 3 + True + False + 3 + + + + True + The first step in configuring an LDAP server is to provide its name, and your log in information. Please ask your system administrator if you are unsure of this information. - GTK_JUSTIFY_LEFT - no - 7.45058e-09 - 0.5 - 3 - 0 - yes - - - 0 - no - no - - - - - - yes - - - 0 - no - no - - - - - 0 - yes - yes - - - - - 0 - yes - yes - - - - - - - - Step 2: Connecting to Server - yes - #ffffff - #000000 - #000000 - - - - 3 - no - 3 - yes - - - - 3 - no - 3 - yes - - - - Now, you must specify how you want to connect to the LDAP server. The SSL (Secure Sockets Layer) + False + False + GTK_JUSTIFY_LEFT + False + False + 7.45058e-09 + 0.5 + 3 + 0 + + + 0 + False + False + + + + + + True + + + 0 + False + False + + + + + 0 + True + True + + + + + + + + + + True + Step 2: Connecting to Server + #e660bfffe408 + #6258081ae408 + #09380816d54c + + + + 3 + True + False + 3 + + + + 3 + True + False + 3 + + + + True + Now, you must specify how you want to connect to the LDAP server. The SSL (Secure Sockets Layer) and TLS (Transport Layer Security) protocols are used by some servers to cryptographically protect your connection. Ask your system administrator if your LDAP server uses these protocols. - GTK_JUSTIFY_LEFT - no - 7.45058e-09 - 0.5 - 3 - 0 - yes - - - 0 - no - no - - - - - - yes - - - 0 - no - no - - - - - 0 - yes - yes - - - - - 0 - yes - yes - - - - - - - - Step 3: Searching the Directory - yes - #ffffff - #000000 - #000000 - - - - 3 - no - 3 - yes - - - - 3 - no - 3 - yes - - - - The options on this page control how many entries should be included in your + False + False + GTK_JUSTIFY_LEFT + False + False + 7.45058e-09 + 0.5 + 3 + 0 + + + 0 + False + False + + + + + + True + + + 0 + False + False + + + + + 0 + True + True + + + + + + + + + + True + Step 3: Searching the Directory + #e660bfffe408 + #6258081ae408 + #09380816d54c + + + + 3 + True + False + 3 + + + + 3 + True + False + 3 + + + + True + The options on this page control how many entries should be included in your searches, and how long a search should take. Ask your system administrator if you need to change these options. - GTK_JUSTIFY_LEFT - no - 0.5 - 0.5 - 0 - 0 - yes - - - 0 - no - no - - - - - - yes - - - 0 - no - no - - - - - 0 - yes - yes - - - - - 0 - yes - yes - - - - - - - - Step 4: Display Name - yes - #ffffff - #000000 - #000000 - - - - 3 - no - 3 - yes - - - - 3 - no - 3 - yes - - - - Specifying a display name is the last required step in configuring an LDAP server. - GTK_JUSTIFY_LEFT - no - 7.45058e-09 - 0.5 - 3 - 0 - yes - - - 0 - no - no - - - - - - yes - - - 0 - no - no - - - - - - 3 - no - 3 - 3 - 1 - 2 - yes - - - - yes - yes - yes - - 0 - yes - yes - - - 1 - 2 - 0 - 1 - 0 - 0 - expand|fill - - - - - - - _Display name: - GTK_JUSTIFY_LEFT - no - 0 - 0.5 - 0 - 0 - druid-display-name-entry - yes - yes - - - 0 - 1 - 0 - 1 - 0 - 0 - fill - - - - - - 0 - no - no - - - - - - no - no - GTK_POS_TOP - no - 2 - 2 - no - yes - - - - 3 - no - 2 - yes - - - - gnome-hint.png - yes - - - 0 - no - no - - - - - - This is the name for this server that will appear in your Evolution folder list. + False + False + GTK_JUSTIFY_LEFT + False + False + 0.5 + 0.5 + 0 + 0 + + + 0 + False + False + + + + + + True + + + 0 + False + False + + + + + 0 + True + True + + + + + + + + + + True + Step 4: Display Name + #e660bfffe408 + #6258081ae408 + #09380816d54c + + + + 3 + True + False + 3 + + + + 3 + True + False + 3 + + + + True + Specifying a display name is the last required step in configuring an LDAP server. + False + False + GTK_JUSTIFY_LEFT + False + False + 7.45058e-09 + 0.5 + 3 + 0 + + + 0 + False + False + + + + + + True + + + 0 + False + False + + + + + + 3 + True + 1 + 2 + False + 3 + 3 + + + + True + True + True + True + True + 0 + + True + * + False + + + 1 + 2 + 0 + 1 + + + + + + + True + _Display name: + True + False + GTK_JUSTIFY_LEFT + False + False + 0 + 0.5 + 0 + 0 + druid-display-name-entry + + + 0 + 1 + 0 + 1 + fill + + + + + + 0 + False + False + + + + + + True + False + False + GTK_POS_TOP + False + 2 + 2 + False + + + + True + This is the name for this server that will appear in your Evolution folder list. It is for display purposes only. - GTK_JUSTIFY_LEFT - no - 0 - 0.5 - 0 - 0 - yes - - - 0 - no - no - - - - - - - - label163 - GTK_JUSTIFY_CENTER - no - 0.5 - 0.5 - 0 - 0 - yes - - - tab - - - - - - 3 - no - 3 - yes - - - - gnome-hint.png - yes - - - 0 - no - no - - - - - - Selecting this option will let you change Evolution's default settings for LDAP + False + False + GTK_JUSTIFY_LEFT + False + False + 0 + 0.5 + 0 + 0 + + + False + True + + + + + + True + label163 + False + False + GTK_JUSTIFY_CENTER + False + False + 0.5 + 0.5 + 0 + 0 + + + tab + + + + + + True + Selecting this option will let you change Evolution's default settings for LDAP searches, and for creating and editing contacts. - GTK_JUSTIFY_LEFT - no - 0.5 - 0.5 - 0 - 0 - yes - - - 0 - no - no - - - - - - - - label164 - GTK_JUSTIFY_CENTER - no - 0.5 - 0.5 - 0 - 0 - yes - - - tab - - - - - 0 - no - no - GTK_PACK_END - - - - - 0 - yes - yes - - - - - 0 - yes - yes - - - - - - - - Finished - Congratulations, you are finished setting up this LDAP server. You + False + False + GTK_JUSTIFY_LEFT + False + False + 0.5 + 0.5 + 0 + 0 + + + False + True + + + + + + True + label164 + False + False + GTK_JUSTIFY_CENTER + False + False + 0.5 + 0.5 + 0 + 0 + + + tab + + + + + 0 + False + False + GTK_PACK_END + + + + + 0 + True + True + + + + + + + + + + True + GNOME_EDGE_FINISH + Finished + Congratulations, you are finished setting up this LDAP server. You are now ready to access this directory. Please click the "Finish" button to save the settings you have entered here. - xstdruidbg-3.png - GNOME_EDGE_FINISH - yes - #ffffff - #000000 - #000000 - #000000 - #ffffff - - - - - - - no - edit_server_window_simple - GTK_WINDOW_TOPLEVEL - no - no - yes - GTK_WIN_POS_NONE - - - - no - 0 - yes - - - - yes - yes - yes - GTK_POS_TOP - no - 2 - 2 - no - yes - - - - 6 - no - 3 - yes - - - - 3 - no - 4 - yes - - - - _Display name: - GTK_JUSTIFY_CENTER - no - 0.5 - 0.5 - 0 - 0 - yes - yes - - - 0 - no - no - - - - - - 1 - 0.5 - 0.9 - 1 - yes - - - - yes - yes - - 0 - yes - yes - - - - - 0 - yes - yes - - - - - 0 - no - no - - - - - - yes - - - 0 - no - no - - - - - - 3 - no - 3 - 3 - 3 - 2 - yes - - - - _Server name: - GTK_JUSTIFY_CENTER - no - 0 - 0.5 - 0 - 0 - entry55 - yes - yes - - - 0 - 1 - 0 - 1 - 0 - 0 - fill - - - - - - - _Log in method: - GTK_JUSTIFY_CENTER - no - 0 - 0.5 - 0 - 0 - yes - yes - - - 0 - 1 - 1 - 2 - 0 - 0 - fill - - - - - - - Distinguished _name: - GTK_JUSTIFY_CENTER - no - 0 - 0.5 - 0 - 0 - entry56 - yes - yes - - - 0 - 1 - 2 - 3 - 0 - 0 - fill - - - - - - - yes - yes - yes - - 0 - yes - yes - - - 1 - 2 - 0 - 1 - 0 - 0 - expand|fill - - - - - - - 7.45058e-09 - 0.5 - 0 - 1 - yes - - - - yes - 2 - yes - - - - yes - - - - Anonymously - yes - - - - - - Using email address - yes - - - - - - Using distinguished name (DN) - yes - - - - - - - - - 1 - 2 - 1 - 2 - 0 - 0 - expand|fill - - - - - - - yes - yes - - 0 - yes - yes - - - 1 - 2 - 2 - 3 - 0 - 0 - expand|fill - - - - - - 0 - no - no - - - - - - no - no - GTK_POS_TOP - no - 2 - 2 - no - yes - - - - 3 - no - 2 - yes - - - - gnome-hint.png - yes - - - 0 - no - no - - - - - - This is the full name of your ldap server. For example, "ldap.mycompany.com". - GTK_JUSTIFY_CENTER - no - 0.5 - 0.5 - 0 - 0 - yes - - - 0 - no - no - - - - - - - - label163 - GTK_JUSTIFY_CENTER - no - 0.5 - 0.5 - 0 - 0 - yes - - - tab - - - - - - 3 - no - 2 - yes - - - - gnome-hint.png - yes - - - 0 - no - no - - - - - - label168 - GTK_JUSTIFY_CENTER - no - 0.5 - 0.5 - 0 - 0 - yes - - - 0 - no - no - - - - - - - - label164 - GTK_JUSTIFY_CENTER - no - 0.5 - 0.5 - 0 - 0 - yes - - - tab - - - - - - 3 - no - 2 - yes - - - - gnome-hint.png - yes - - - 0 - no - no - - - - - - label169 - GTK_JUSTIFY_CENTER - no - 0.5 - 0.5 - 0 - 0 - yes - - - 0 - no - no - - - - - - - - label165 - GTK_JUSTIFY_CENTER - no - 0.5 - 0.5 - 0 - 0 - yes - - - tab - - - - - - - - - - label214 - GTK_JUSTIFY_CENTER - no - 0.5 - 0.5 - 0 - 0 - yes - - - tab - - - - - - 3 - no - 2 - yes - - - - gnome-hint.png - yes - - - 0 - no - no - - - - - - This is the name for this server that will appear in your Evolution folder list. + #ffffffffffff + #000000000000 + #000000000000 + #000000000000 + #ffffffffffff + + + + + + + + edit_server_window_simple + GTK_WINDOW_TOPLEVEL + GTK_WIN_POS_NONE + False + True + False + + + + True + False + 0 + + + + True + True + True + True + GTK_POS_TOP + False + 2 + 2 + False + + + + 6 + True + False + 3 + + + + 3 + True + False + 4 + + + + True + _Display name: + True + False + GTK_JUSTIFY_CENTER + False + False + 0.5 + 0.5 + 0 + 0 + + + 0 + False + False + + + + + + True + 1 + 0.5 + 0.9 + 1 + + + + True + True + True + True + 0 + + True + * + False + + + + + 0 + True + True + + + + + 0 + False + False + + + + + + True + + + 0 + False + False + + + + + + 3 + True + 3 + 2 + False + 3 + 3 + + + + True + _Server name: + True + False + GTK_JUSTIFY_CENTER + False + False + 0 + 0.5 + 0 + 0 + entry55 + + + 0 + 1 + 0 + 1 + fill + + + + + + + True + _Log in method: + True + False + GTK_JUSTIFY_CENTER + False + False + 0 + 0.5 + 0 + 0 + + + 0 + 1 + 1 + 2 + fill + + + + + + + True + Distinguished _name: + True + False + GTK_JUSTIFY_CENTER + False + False + 0 + 0.5 + 0 + 0 + entry56 + + + 0 + 1 + 2 + 3 + fill + + + + + + + True + True + True + True + True + 0 + + True + * + False + + + 1 + 2 + 0 + 1 + + + + + + + True + 7.45058e-09 + 0.5 + 0 + 1 + + + + True + True + 0 + + + + True + + + + True + Anonymously + True + + + + + + True + Using email address + True + + + + + + True + Using distinguished name (DN) + True + + + + + + + + + 1 + 2 + 1 + 2 + + + + + + + True + True + True + True + 0 + + True + * + False + + + 1 + 2 + 2 + 3 + + + + + + 0 + False + False + + + + + + True + False + False + GTK_POS_TOP + False + 2 + 2 + False + + + + True + This is the full name of your ldap server. For example, "ldap.mycompany.com". + False + False + GTK_JUSTIFY_CENTER + False + False + 0.5 + 0.5 + 0 + 0 + + + False + True + + + + + + True + label163 + False + False + GTK_JUSTIFY_CENTER + False + False + 0.5 + 0.5 + 0 + 0 + + + tab + + + + + + True + label168 + False + False + GTK_JUSTIFY_CENTER + False + False + 0.5 + 0.5 + 0 + 0 + + + False + True + + + + + + True + label164 + False + False + GTK_JUSTIFY_CENTER + False + False + 0.5 + 0.5 + 0 + 0 + + + tab + + + + + + 3 + True + False + 2 + + + + + + + + True + label169 + False + False + GTK_JUSTIFY_CENTER + False + False + 0.5 + 0.5 + 0 + 0 + + + 0 + False + False + + + + + False + True + + + + + + True + label165 + False + False + GTK_JUSTIFY_CENTER + False + False + 0.5 + 0.5 + 0 + 0 + + + tab + + + + + + + + + + True + label214 + False + False + GTK_JUSTIFY_CENTER + False + False + 0.5 + 0.5 + 0 + 0 + + + tab + + + + + + 3 + True + False + 2 + + + + True + label168 + False + False + GTK_JUSTIFY_CENTER + False + False + 0.5 + 0.5 + 0 + 0 + + + 0 + False + False + + + + + + True + This is the name for this server that will appear in your Evolution folder list. It is for display purposes only. - GTK_JUSTIFY_LEFT - no - 0 - 0.5 - 0 - 0 - yes - - - 0 - no - no - - - - - - - - label452 - GTK_JUSTIFY_CENTER - no - 0.5 - 0.5 - 0 - 0 - yes - - - tab - - - - - 0 - no - no - GTK_PACK_END - - - - - - - - General - GTK_JUSTIFY_CENTER - no - 0.5 - 0.5 - 0 - 0 - yes - - - tab - - - - - - 6 - no - 3 - yes - - - - 3 - no - 3 - 3 - 2 - 2 - yes - - - - _Port number: - GTK_JUSTIFY_CENTER - no - 0 - 0.5 - 0 - 0 - yes - yes - - - 0 - 1 - 0 - 1 - 0 - 0 - fill - - - - - - - 7.45058e-09 - 0.5 - 0 - 1 - yes - - - - no - 0 - yes - - - - yes - _Always - no - yes - yes - yes - - - 0 - no - no - - - - - - yes - _If necessary - no - yes - yes - yes - - - 0 - no - no - - - - - - yes - _Don't use SSL/TLS - no - yes - yes - yes - - - 0 - no - no - - - - - - - 1 - 2 - 1 - 2 - 0 - 0 - fill - - - - - - - 7.45058e-09 - 0.5 - 0 - 1 - yes - - - - 0.5 - 0.5 - 0 - 0 - gnome-hint.png - yes - - - - - 1 - 2 - 0 - 1 - 0 - 0 - fill - - - - - - - 7.45058e-09 - 0.5 - 0 - 1 - yes - - - - no - no - yes - no - yes - yes - - - - yes - yes - yes - 380 - 0 - yes - yes - - - - - - yes - - - - yes - - - - 380 - 0.0 - yes - - - - - - - - yes - - - - 666 - 0.0 - yes - - - - - - - - yes - - - - 1234 - 0.0 - yes - - - - - - - - yes - - - - - 0.0 - yes - - - - - - - - - - - 1 - 2 - 0 - 1 - 0 - 0 - expand|fill - - - - - - - U_se SSL/TLS: - GTK_JUSTIFY_CENTER - no - 0 - 7.45058e-09 - 0 - 0 - yes - yes - - - 0 - 1 - 1 - 2 - 0 - 0 - fill - expand|fill - - - - - 0 - no - no - - - - - - no - no - GTK_POS_TOP - no - 2 - 2 - no - yes - - - - 3 - no - 3 - yes - - - - gnome-hint.png - yes - - - 0 - no - no - - - - - - This is the port on the LDAP server that Evolution will try to connect to. A + False + False + GTK_JUSTIFY_LEFT + False + False + 0 + 0.5 + 0 + 0 + + + 0 + False + False + + + + + False + True + + + + + + True + label452 + False + False + GTK_JUSTIFY_CENTER + False + False + 0.5 + 0.5 + 0 + 0 + + + tab + + + + + 0 + False + False + GTK_PACK_END + + + + + False + True + + + + + + True + General + False + False + GTK_JUSTIFY_CENTER + False + False + 0.5 + 0.5 + 0 + 0 + + + tab + + + + + + 6 + True + False + 3 + + + + 3 + True + 2 + 2 + False + 3 + 3 + + + + True + _Port number: + True + False + GTK_JUSTIFY_CENTER + False + False + 0 + 0.5 + 0 + 0 + + + 0 + 1 + 0 + 1 + fill + + + + + + + True + 7.45058e-09 + 0.5 + 0 + 1 + + + + True + False + 0 + + + + True + True + _Always + True + GTK_RELIEF_NORMAL + False + False + True + + + 0 + False + False + + + + + + True + True + _If necessary + True + GTK_RELIEF_NORMAL + False + False + True + + + 0 + False + False + + + + + + True + True + _Don't use SSL/TLS + True + GTK_RELIEF_NORMAL + False + False + True + + + 0 + False + False + + + + + + + 1 + 2 + 1 + 2 + fill + + + + + + + True + 7.45058e-09 + 0.5 + 0 + 1 + + + + True + False + True + False + True + False + + + + True + True + True + True + True + 0 + + True + * + False + + + + + + True + GTK_SELECTION_BROWSE + + + + True + + + + True + 380 + False + False + GTK_JUSTIFY_LEFT + False + False + 0 + 0.5 + 0 + 0 + + + + + + + + True + + + + True + 666 + False + False + GTK_JUSTIFY_LEFT + False + False + 0 + 0.5 + 0 + 0 + + + + + + + + True + + + + True + 1234 + False + False + GTK_JUSTIFY_LEFT + False + False + 0 + 0.5 + 0 + 0 + + + + + + + + True + + + + True + + False + False + GTK_JUSTIFY_LEFT + False + False + 0 + 0.5 + 0 + 0 + + + + + + + + + + + 1 + 2 + 0 + 1 + + + + + + + True + U_se SSL/TLS: + True + False + GTK_JUSTIFY_CENTER + False + False + 0 + 7.45058e-09 + 0 + 0 + + + 0 + 1 + 1 + 2 + fill + + + + + 0 + False + False + + + + + + True + False + False + GTK_POS_TOP + False + 2 + 2 + False + + + + True + This is the port on the LDAP server that Evolution will try to connect to. A list of standard ports has been provided. Ask your system administrator what port you should specify. - GTK_JUSTIFY_LEFT - no - 0.5 - 0.5 - 0 - 0 - yes - - - 0 - no - no - - - - - - - - label163 - GTK_JUSTIFY_CENTER - no - 0.5 - 0.5 - 0 - 0 - yes - - - tab - - - - - - 3 - no - 2 - yes - - - - gnome-hint.png - yes - - - 0 - no - no - - - - - - Selecting this option means that Evolution will only connect to your LDAP server if + False + False + GTK_JUSTIFY_LEFT + False + False + 0.5 + 0.5 + 0 + 0 + + + False + True + + + + + + True + label163 + False + False + GTK_JUSTIFY_CENTER + False + False + 0.5 + 0.5 + 0 + 0 + + + tab + + + + + + True + Selecting this option means that Evolution will only connect to your LDAP server if your LDAP server supports SSL or TLS. - GTK_JUSTIFY_LEFT - no - 7.45058e-09 - 0.5 - 0 - 0 - yes - - - 0 - no - no - - - - - - - - label398 - GTK_JUSTIFY_CENTER - no - 0.5 - 0.5 - 0 - 0 - yes - - - tab - - - - - - 3 - no - 2 - yes - - - - gnome-hint.png - yes - - - 0 - no - no - - - - - - Selecting this option means that Evolution will only try to use SSL/TLS if you are in a + False + False + GTK_JUSTIFY_LEFT + False + False + 7.45058e-09 + 0.5 + 0 + 0 + + + False + True + + + + + + True + label398 + False + False + GTK_JUSTIFY_CENTER + False + False + 0.5 + 0.5 + 0 + 0 + + + tab + + + + + + True + Selecting this option means that Evolution will only try to use SSL/TLS if you are in a insecure environment. For example, if you and your LDAP server are behind a firewall at work, then Evolution doesn't need to use SSL/TLS because your connection is already secure. - GTK_JUSTIFY_LEFT - no - 7.45058e-09 - 0.5 - 0 - 0 - yes - - - 0 - no - no - - - - - - - - label396 - GTK_JUSTIFY_CENTER - no - 0.5 - 0.5 - 0 - 0 - yes - - - tab - - - - - - 3 - no - 2 - yes - - - - gnome-hint.png - yes - - - 0 - no - no - - - - - - Selecting this option means that your server does not support either SSL or TLS. This + False + False + GTK_JUSTIFY_LEFT + False + False + 7.45058e-09 + 0.5 + 0 + 0 + + + False + True + + + + + + True + label396 + False + False + GTK_JUSTIFY_CENTER + False + False + 0.5 + 0.5 + 0 + 0 + + + tab + + + + + + True + Selecting this option means that your server does not support either SSL or TLS. This means that your connection will be insecure, and that you will be vulnerable to security exploits. - GTK_JUSTIFY_LEFT - no - 7.45058e-09 - 0.5 - 0 - 0 - yes - - - 0 - no - no - - - - - - - - label397 - GTK_JUSTIFY_CENTER - no - 0.5 - 0.5 - 0 - 0 - yes - - - tab - - - - - 0 - no - no - GTK_PACK_END - - - - - - - - Connecting - GTK_JUSTIFY_CENTER - no - 0.5 - 0.5 - 0 - 0 - yes - - - tab - - - - - - 6 - no - 3 - yes - - - - 3 - no - 3 - 3 - 4 - 2 - yes - - - - _Search base: - GTK_JUSTIFY_LEFT - no - 0 - 0.5 - 0 - 0 - yes - yes - - - 0 - 1 - 0 - 1 - 0 - 0 - fill - - - - - - - S_earch scope: - GTK_JUSTIFY_LEFT - no - 0 - 0.5 - 0 - 0 - yes - yes - - - 0 - 1 - 1 - 2 - 0 - 0 - fill - - - - - - - 7.45058e-09 - 7.45058e-09 - 0 - 1 - yes - - - - yes - 0 - yes - - - - yes - - - - Sub - yes - - - - - - One - yes - - - - - - - - - 1 - 2 - 1 - 2 - 0 - 0 - fill - - - - - - - 3 - no - 3 - yes - - - - yes - yes - yes - - 0 - yes - yes - - - 0 - yes - yes - - - - - - yes - S_how Supported Bases - GTK_RELIEF_NORMAL - yes - yes - - - 0 - no - no - - - - - 1 - 2 - 0 - 1 - 0 - 0 - expand|fill - fill - - - - - - _Timeout (minutes): - GTK_JUSTIFY_LEFT - no - 0 - 1 - 0 - 0 - yes - yes - - - 0 - 1 - 2 - 3 - 0 - 0 - fill - - - - - - - 7.45058e-09 - 0.5 - 1 - 1 - yes - - - - 3 - no - 3 - yes - - - - 1:00 - GTK_JUSTIFY_CENTER - no - 0.5 - 0.5 - 0 - 0 - yes - - - 0 - no - no - - - - - - yes - no - GTK_POS_LEFT - 0 - yes - 3 1 5 0.5 1 0 - - - 0 - yes - yes - - - - - - 5:00 - GTK_JUSTIFY_CENTER - no - 0 - 0.5 - 3 - 0 - yes - - - 0 - no - no - - - - - - Selected: - GTK_JUSTIFY_CENTER - no - 1 - 0.5 - 0 - 0 - yes - - - 0 - no - no - - - - - - 2:30 - GTK_JUSTIFY_CENTER - no - 0.5 - 0.5 - 0 - 0 - yes - - - 0 - no - no - - - - - - - 1 - 2 - 2 - 3 - 0 - 0 - expand|fill - - - - - - - _Download limit: - GTK_JUSTIFY_LEFT - no - 0 - 0.5 - 0 - 0 - yes - yes - - - 0 - 1 - 3 - 4 - 0 - 0 - fill - - - - - - - 0 - 0.5 - 0 - 1 - yes - - - - 3 - no - 3 - yes - - - - yes - 1 - 0 - no - GTK_UPDATE_ALWAYS - no - no - yes - 100 0 10000 1 10 10 - - - 0 - yes - yes - - - - - - cards - GTK_JUSTIFY_CENTER - no - 0.5 - 0.5 - 0 - 0 - yes - - - 0 - no - no - - - - - - - 1 - 2 - 3 - 4 - 0 - 0 - fill - fill - - - - - 0 - yes - yes - - - - - - no - no - GTK_POS_TOP - no - 2 - 2 - no - yes - - - - 3 - no - 3 - yes - - - - gnome-hint.png - yes - - - 0 - no - no - - - - - - The search base is the distinguished name (DN) of the entry where your searches will + False + False + GTK_JUSTIFY_LEFT + False + False + 7.45058e-09 + 0.5 + 0 + 0 + + + False + True + + + + + + True + label397 + False + False + GTK_JUSTIFY_CENTER + False + False + 0.5 + 0.5 + 0 + 0 + + + tab + + + + + 0 + False + False + GTK_PACK_END + + + + + False + True + + + + + + True + Connecting + False + False + GTK_JUSTIFY_CENTER + False + False + 0.5 + 0.5 + 0 + 0 + + + tab + + + + + + 6 + True + False + 3 + + + + 3 + True + 4 + 2 + False + 3 + 3 + + + + True + _Search base: + True + False + GTK_JUSTIFY_LEFT + False + False + 0 + 0.5 + 0 + 0 + + + 0 + 1 + 0 + 1 + fill + + + + + + + True + S_earch scope: + True + False + GTK_JUSTIFY_LEFT + False + False + 0 + 0.5 + 0 + 0 + + + 0 + 1 + 1 + 2 + fill + + + + + + + True + 7.45058e-09 + 7.45058e-09 + 0 + 1 + + + + True + True + 0 + + + + True + + + + True + Sub + True + + + + + + True + One + True + + + + + + + + + 1 + 2 + 1 + 2 + fill + + + + + + + 3 + True + False + 3 + + + + True + True + True + True + True + 0 + + True + * + False + + + 0 + True + True + + + + + + True + True + S_how Supported Bases + True + GTK_RELIEF_NORMAL + + + 0 + False + False + + + + + 1 + 2 + 0 + 1 + fill + + + + + + True + _Timeout (minutes): + True + False + GTK_JUSTIFY_LEFT + False + False + 0 + 1 + 0 + 0 + + + 0 + 1 + 2 + 3 + fill + + + + + + + True + 7.45058e-09 + 0.5 + 1 + 1 + + + + 3 + True + False + 3 + + + + True + 1:00 + False + False + GTK_JUSTIFY_CENTER + False + False + 0.5 + 0.5 + 0 + 0 + + + 0 + False + False + + + + + + True + True + False + GTK_POS_LEFT + 0 + GTK_UPDATE_CONTINUOUS + False + 3 1 5 0.5 1 0 + + + 0 + True + True + + + + + + True + 5:00 + False + False + GTK_JUSTIFY_CENTER + False + False + 0 + 0.5 + 3 + 0 + + + 0 + False + False + + + + + + True + Selected: + False + False + GTK_JUSTIFY_CENTER + False + False + 1 + 0.5 + 0 + 0 + + + 0 + False + False + + + + + + True + 2:30 + False + False + GTK_JUSTIFY_CENTER + False + False + 0.5 + 0.5 + 0 + 0 + + + 0 + False + False + + + + + + + 1 + 2 + 2 + 3 + + + + + + + True + _Download limit: + True + False + GTK_JUSTIFY_LEFT + False + False + 0 + 0.5 + 0 + 0 + + + 0 + 1 + 3 + 4 + fill + + + + + + + True + 0 + 0.5 + 0 + 1 + + + + 3 + True + False + 3 + + + + True + True + 1 + 0 + False + GTK_UPDATE_ALWAYS + False + False + 100 0 10000 1 10 10 + + + 0 + True + True + + + + + + True + cards + False + False + GTK_JUSTIFY_CENTER + False + False + 0.5 + 0.5 + 0 + 0 + + + 0 + False + False + + + + + + + 1 + 2 + 3 + 4 + fill + fill + + + + + 0 + True + True + + + + + + True + False + False + GTK_POS_TOP + False + 2 + 2 + False + + + + True + The search base is the distinguished name (DN) of the entry where your searches will begin. If you leave this blank, the search will begin at the root of the directory tree. - GTK_JUSTIFY_LEFT - no - 7.45058e-09 - 0.5 - 0 - 0 - yes - - - 0 - no - no - - - - - - - - label163 - GTK_JUSTIFY_CENTER - no - 0.5 - 0.5 - 0 - 0 - yes - - - tab - - - - - - 3 - no - 2 - yes - - - - gnome-hint.png - yes - - - 0 - no - no - - - - - - The search scope defines how deep you would like the search to extend down the + False + False + GTK_JUSTIFY_LEFT + False + False + 7.45058e-09 + 0.5 + 0 + 0 + + + False + True + + + + + + True + label163 + False + False + GTK_JUSTIFY_CENTER + False + False + 0.5 + 0.5 + 0 + 0 + + + tab + + + + + + True + The search scope defines how deep you would like the search to extend down the directory tree. A search scope of "sub" will include all entries below your search base. A search scope of "one" will only include the entries one level beneath your base. - GTK_JUSTIFY_LEFT - no - 0.5 - 0.5 - 0 - 0 - yes - - - 0 - no - no - - - - - - - - label164 - GTK_JUSTIFY_CENTER - no - 0.5 - 0.5 - 0 - 0 - yes - - - tab - - - - - - 3 - no - 2 - yes - - - - gnome-hint.png - yes - - - 0 - no - no - - - - - - This option controls how long a search will be run. - GTK_JUSTIFY_CENTER - no - 0.5 - 0.5 - 0 - 0 - yes - - - 0 - no - no - - - - - - - - label165 - GTK_JUSTIFY_CENTER - no - 0.5 - 0.5 - 0 - 0 - yes - - - tab - - - - - - 3 - no - 2 - yes - - - - gnome-hint.png - yes - - - 0 - no - no - - - - - - This is the maximum number of entries to download. Setting this number to be + False + False + GTK_JUSTIFY_LEFT + False + False + 0.5 + 0.5 + 0 + 0 + + + False + True + + + + + + True + label164 + False + False + GTK_JUSTIFY_CENTER + False + False + 0.5 + 0.5 + 0 + 0 + + + tab + + + + + + True + This option controls how long a search will be run. + False + False + GTK_JUSTIFY_CENTER + False + False + 0.5 + 0.5 + 0 + 0 + + + False + True + + + + + + True + label165 + False + False + GTK_JUSTIFY_CENTER + False + False + 0.5 + 0.5 + 0 + 0 + + + tab + + + + + + True + This is the maximum number of entries to download. Setting this number to be too large will slow down your addressbook. - GTK_JUSTIFY_LEFT - no - 7.45058e-09 - 0.5 - 0 - 0 - yes - - - 0 - no - no - - - - - - - - label166 - GTK_JUSTIFY_CENTER - no - 0.5 - 0.5 - 0 - 0 - yes - - - tab - - - - - 0 - no - no - GTK_PACK_END - - - - - - - - Searching - GTK_JUSTIFY_CENTER - no - 0.5 - 0.5 - 0 - 0 - yes - - - tab - - - - - 0 - yes - yes - - - - - - yes - - - 0 - yes - yes - - - - - - no - 0 - yes - - - - GTK_BUTTONBOX_START - 0 - yes - - - - yes - yes - _More Options >> - GTK_RELIEF_NORMAL - yes - yes - - - - - 0 - yes - yes - - - - - - GTK_BUTTONBOX_END - 0 - yes - - - - yes - yes - GTK_RELIEF_NORMAL - yes - gtk-ok - yes - yes - - - - - - yes - yes - GTK_RELIEF_NORMAL - yes - gtk-apply - yes - yes - - - - - - yes - yes - GTK_RELIEF_NORMAL - yes - gtk-close - yes - yes - - - - - 0 - yes - yes - - - - - 0 - no - no - - - - - - - no - Addressbook Sources - GTK_WINDOW_TOPLEVEL - no - 355 - 285 - yes - yes - GTK_WIN_POS_NONE - - - - no - 8 - yes - - - - GTK_BUTTONBOX_END - 8 - yes - - - - yes - yes - yes - gtk-ok - yes - yes - - - - - - yes - yes - yes - gtk-apply - yes - yes - - - - - - yes - yes - yes - gtk-close - yes - yes - - - - - 0 - no - yes - GTK_PACK_END - - - - - - no - 0 - yes - - - - addressbook_dialog_create_sources_table - 0 - 0 - Thu, 11 Apr 2002 00:31:02 GMT - yes - - - 0 - yes - yes - - - - - - no - 0 - yes - - - - + False + False + GTK_JUSTIFY_LEFT + False + False + 7.45058e-09 + 0.5 + 0 + 0 + + + False + True + + + + + + True + label166 + False + False + GTK_JUSTIFY_CENTER + False + False + 0.5 + 0.5 + 0 + 0 + + + tab + + + + + 0 + False + False + GTK_PACK_END + + + + + False + True + + + + + + True + Searching + False + False + GTK_JUSTIFY_CENTER + False + False + 0.5 + 0.5 + 0 + 0 + + + tab + + + + + 0 + True + True + + + + + + True + + + 0 + True + True + + + + + + True + False + 0 + + + + True + GTK_BUTTONBOX_START + 0 + + + + True + True + True + _More Options >> + True + GTK_RELIEF_NORMAL + + + + + 0 + True + True + + + + + + True + GTK_BUTTONBOX_END + 0 + + + + True + True + True + gtk-ok + True + GTK_RELIEF_NORMAL + + + + + + True + True + True + gtk-apply + True + GTK_RELIEF_NORMAL + + + + + + True + True + True + gtk-close + True + GTK_RELIEF_NORMAL + + + + + 0 + True + True + + + + + 0 + False + False + + + + + + + + Addressbook Sources + GTK_WINDOW_TOPLEVEL + GTK_WIN_POS_NONE + False + 355 + 285 + True + False + True + + + + True + False + 8 + + + + True + GTK_BUTTONBOX_END + + + + True + True + True + gtk-ok + True + GTK_RELIEF_NORMAL + 0 + + + + + + True + True + True + gtk-apply + True + GTK_RELIEF_NORMAL + 0 + + + + + + True + True + True + gtk-close + True + GTK_RELIEF_NORMAL + 0 + + + + + 0 + False + True + GTK_PACK_END + + + + + + True + False + 0 + + + + True + addressbook_dialog_create_sources_table + 0 + 0 + Thu, 11 Apr 2002 00:31:02 GMT + + + 0 + True + True + + + + + + True + False + 0 + + + + True + - GTK_JUSTIFY_CENTER - no - 0.5 - 0.5 - 0 - 0 - yes - - - 0 - no - no - - - - - - GTK_BUTTONBOX_START - 0 - yes - - - - yes - yes - _Add - GTK_RELIEF_NORMAL - yes - yes - - - - - - yes - yes - _Edit - GTK_RELIEF_NORMAL - yes - yes - - - - - - yes - yes - De_lete - GTK_RELIEF_NORMAL - yes - yes - - - - - 0 - yes - yes - - - - - 0 - no - no - - - - - 0 - yes - yes - - - - - 4 - yes - yes - - - - - no - general-tab - GTK_WINDOW_TOPLEVEL - no - no - yes - GTK_WIN_POS_NONE - - - - 6 - no - 3 - yes - - - - 3 - no - 3 - 3 - 3 - 2 - yes - - - - _Server name: - GTK_JUSTIFY_CENTER - no - 0 - 0.5 - 0 - 0 - server-name-entry - yes - yes - - - 0 - 1 - 0 - 1 - 0 - 0 - fill - - - - - - - _Log in method: - GTK_JUSTIFY_CENTER - no - 0 - 0.5 - 0 - 0 - yes - yes - - - 0 - 1 - 1 - 2 - 0 - 0 - fill - - - - - - - yes - yes - yes - - 0 - yes - yes - - - 1 - 2 - 0 - 1 - 0 - 0 - expand|fill - - - - - - - 7.45058e-09 - 0.5 - 0 - 1 - yes - - - - yes - 0 - yes - - - - yes - - - - Anonymously - yes - - - - - - Using email address - yes - - - - - - Using distinguished name (DN) - yes - - - - - - - - - 1 - 2 - 1 - 2 - 0 - 0 - expand|fill - - - - - - - no - no - no - GTK_POS_TOP - no - 2 - 2 - no - yes - - - - Email Address: - GTK_JUSTIFY_CENTER - no - 0 - 0.5 - 0 - 0 - yes - - - - - - label546 - GTK_JUSTIFY_CENTER - no - 0.5 - 0.5 - 0 - 0 - yes - - - tab - - - - - - Distinguished _name: - GTK_JUSTIFY_CENTER - no - 0 - 0.5 - 0 - 0 - yes - yes - - - - - - label547 - GTK_JUSTIFY_CENTER - no - 0.5 - 0.5 - 0 - 0 - yes - - - tab - - - - - 0 - 1 - 2 - 3 - 0 - 0 - fill - fill - - - - - - no - no - no - GTK_POS_TOP - no - 2 - 2 - no - yes - - - - yes - yes - - 0 - yes - yes - - - - - - label549 - GTK_JUSTIFY_CENTER - no - 0.5 - 0.5 - 0 - 0 - yes - - - tab - - - - - - yes - yes - - 0 - yes - yes - - - - - - label550 - GTK_JUSTIFY_CENTER - no - 0.5 - 0.5 - 0 - 0 - yes - - - tab - - - - - 1 - 2 - 2 - 3 - 0 - 0 - fill - fill - - - - - 0 - no - no - - - - - - no - no - GTK_POS_TOP - no - 2 - 2 - no - yes - - - - 3 - no - 2 - yes - - - - gnome-hint.png - yes - - - 0 - no - no - - - - - - This is the full name of your ldap server. For example, "ldap.mycompany.com". - GTK_JUSTIFY_CENTER - no - 0.5 - 0.5 - 0 - 0 - yes - - - 0 - no - no - - - - - - - - label163 - GTK_JUSTIFY_CENTER - no - 0.5 - 0.5 - 0 - 0 - yes - - - tab - - - - - - 3 - no - 2 - yes - - - - gnome-hint.png - yes - - - 0 - no - no - - - - - - Evolution will use this email address to authenticate you with the server - GTK_JUSTIFY_CENTER - no - 0.5 - 0.5 - 0 - 0 - yes - - - 0 - no - no - - - - - - - - label164 - GTK_JUSTIFY_CENTER - no - 0.5 - 0.5 - 0 - 0 - yes - - - tab - - - - - - 3 - no - 2 - yes - - - - gnome-hint.png - yes - - - 0 - no - no - - - - - - Evolution will use this DN to authenticate you with the server - GTK_JUSTIFY_CENTER - no - 0.5 - 0.5 - 0 - 0 - yes - - - 0 - no - no - - - - - - - - label165 - GTK_JUSTIFY_CENTER - no - 0.5 - 0.5 - 0 - 0 - yes - - - tab - - - - - - This is the method evolution will use to authenticate you. Note that setting this to "Email Address" requires anonymous access to your ldap server. - GTK_JUSTIFY_CENTER - yes - 0.5 - 0.5 - 0 - 0 - yes - - - - - - label551 - GTK_JUSTIFY_CENTER - no - 0.5 - 0.5 - 0 - 0 - yes - - - tab - - - - - - 3 - no - 2 - yes - - - - gnome-hint.png - yes - - - 0 - no - no - - - - - - This is the name for this server that will appear in your Evolution folder list. + False + False + GTK_JUSTIFY_CENTER + False + False + 0.5 + 0.5 + 0 + 0 + + + 0 + False + False + + + + + + True + GTK_BUTTONBOX_START + 0 + + + + True + True + True + _Add + True + GTK_RELIEF_NORMAL + + + + + + True + True + True + _Edit + True + GTK_RELIEF_NORMAL + + + + + + True + True + True + De_lete + True + GTK_RELIEF_NORMAL + + + + + 0 + True + True + + + + + 0 + False + False + + + + + 0 + True + True + + + + + + + + general-tab + GTK_WINDOW_TOPLEVEL + GTK_WIN_POS_NONE + False + True + False + + + + 6 + True + False + 3 + + + + 3 + True + 3 + 2 + False + 3 + 3 + + + + True + _Server name: + True + False + GTK_JUSTIFY_CENTER + False + False + 0 + 0.5 + 0 + 0 + server-name-entry + + + 0 + 1 + 0 + 1 + fill + + + + + + + True + _Log in method: + True + False + GTK_JUSTIFY_CENTER + False + False + 0 + 0.5 + 0 + 0 + + + 0 + 1 + 1 + 2 + fill + + + + + + + True + True + True + True + True + 0 + + True + * + False + + + 1 + 2 + 0 + 1 + + + + + + + True + 7.45058e-09 + 0.5 + 0 + 1 + + + + True + True + 0 + + + + True + + + + True + Anonymously + True + + + + + + True + Using email address + True + + + + + + True + Using distinguished name (DN) + True + + + + + + + + + 1 + 2 + 1 + 2 + + + + + + + True + False + False + False + GTK_POS_TOP + False + 2 + 2 + False + + + + True + Email Address: + False + False + GTK_JUSTIFY_CENTER + False + False + 0 + 0.5 + 0 + 0 + + + False + True + + + + + + True + label546 + False + False + GTK_JUSTIFY_CENTER + False + False + 0.5 + 0.5 + 0 + 0 + + + tab + + + + + + True + Distinguished _name: + True + False + GTK_JUSTIFY_CENTER + False + False + 0 + 0.5 + 0 + 0 + + + False + True + + + + + + True + label547 + False + False + GTK_JUSTIFY_CENTER + False + False + 0.5 + 0.5 + 0 + 0 + + + tab + + + + + 0 + 1 + 2 + 3 + fill + fill + + + + + + True + False + False + False + GTK_POS_TOP + False + 2 + 2 + False + + + + True + True + True + True + 0 + + True + * + False + + + False + True + + + + + + True + label549 + False + False + GTK_JUSTIFY_CENTER + False + False + 0.5 + 0.5 + 0 + 0 + + + tab + + + + + + True + True + True + True + 0 + + True + * + False + + + False + True + + + + + + True + label550 + False + False + GTK_JUSTIFY_CENTER + False + False + 0.5 + 0.5 + 0 + 0 + + + tab + + + + + 1 + 2 + 2 + 3 + fill + fill + + + + + 0 + False + False + + + + + + True + False + False + GTK_POS_TOP + False + 2 + 2 + False + + + + True + This is the full name of your ldap server. For example, "ldap.mycompany.com". + False + False + GTK_JUSTIFY_CENTER + False + False + 0.5 + 0.5 + 0 + 0 + + + False + True + + + + + + True + label163 + False + False + GTK_JUSTIFY_CENTER + False + False + 0.5 + 0.5 + 0 + 0 + + + tab + + + + + + True + Evolution will use this email address to authenticate you with the server + False + False + GTK_JUSTIFY_CENTER + False + False + 0.5 + 0.5 + 0 + 0 + + + False + True + + + + + + True + label164 + False + False + GTK_JUSTIFY_CENTER + False + False + 0.5 + 0.5 + 0 + 0 + + + tab + + + + + + True + Evolution will use this DN to authenticate you with the server + False + False + GTK_JUSTIFY_CENTER + False + False + 0.5 + 0.5 + 0 + 0 + + + False + True + + + + + + True + label165 + False + False + GTK_JUSTIFY_CENTER + False + False + 0.5 + 0.5 + 0 + 0 + + + tab + + + + + + True + This is the method evolution will use to authenticate you. Note that setting this to "Email Address" requires anonymous access to your ldap server. + False + False + GTK_JUSTIFY_CENTER + True + False + 0.5 + 0.5 + 0 + 0 + + + False + True + + + + + + True + label551 + False + False + GTK_JUSTIFY_CENTER + False + False + 0.5 + 0.5 + 0 + 0 + + + tab + + + + + + True + This is the name for this server that will appear in your Evolution folder list. It is for display purposes only. - GTK_JUSTIFY_LEFT - no - 0 - 0.5 - 0 - 0 - yes - - - 0 - no - no - - - - - - - - label452 - GTK_JUSTIFY_CENTER - no - 0.5 - 0.5 - 0 - 0 - yes - - - tab - - - - - 0 - no - no - GTK_PACK_END - - - - - - - no - connecting-tab - GTK_WINDOW_TOPLEVEL - no - no - yes - GTK_WIN_POS_NONE - - - - no - 0 - yes - - - - 3 - no - 3 - 3 - 2 - 2 - yes - - - - _Port number: - GTK_JUSTIFY_CENTER - no - 0 - 0.5 - 0 - 0 - yes - yes - - - 0 - 1 - 0 - 1 - 0 - 0 - fill - - - - - - - 7.45058e-09 - 0.5 - 0 - 1 - yes - - - - 0.5 - 0.5 - 0 - 0 - gnome-hint.png - yes - - - - - 1 - 2 - 0 - 1 - 0 - 0 - fill - - - - - - - 7.45058e-09 - 0.5 - 0 - 1 - yes - - - - no - no - yes - no - yes - yes - - - - yes - yes - yes - 389 - 0 - yes - yes - - - - - - yes - - - - yes - - - - 389 - 0.0 - yes - - - - - - - - yes - - - - 636 - 0.0 - yes - - - - - - - - yes - - - - 3268 - 0.0 - yes - - - - - - - - yes - - - - - 0.0 - yes - - - - - - - - - - - 1 - 2 - 0 - 1 - 0 - 0 - expand|fill - - - - - - - U_se SSL/TLS: - GTK_JUSTIFY_CENTER - no - 0 - 0.5 - 0 - 0 - yes - yes - - - 0 - 1 - 1 - 2 - 0 - 0 - fill - expand|fill - - - - - - 7.45058e-09 - 0.5 - 0 - 1 - yes - - - - yes - 1 - yes - - - - yes - - - - Always - yes - - - - - - Whenever Possible - yes - - - - - - Never - yes - - - - - - - - - 1 - 2 - 1 - 2 - 0 - 0 - fill - fill - - - - - 0 - no - yes - - - - - - no - no - GTK_POS_TOP - no - 2 - 2 - no - yes - - - - 3 - no - 3 - yes - - - - gnome-hint.png - yes - - - 0 - no - no - - - - - - This is the port on the LDAP server that Evolution will try to connect to. A + False + False + GTK_JUSTIFY_LEFT + False + False + 0 + 0.5 + 0 + 0 + + + False + True + + + + + + True + label452 + False + False + GTK_JUSTIFY_CENTER + False + False + 0.5 + 0.5 + 0 + 0 + + + tab + + + + + 0 + False + False + GTK_PACK_END + + + + + + + + connecting-tab + GTK_WINDOW_TOPLEVEL + GTK_WIN_POS_NONE + False + True + False + + + + True + False + 0 + + + + 3 + True + 2 + 2 + False + 3 + 3 + + + + True + _Port number: + True + False + GTK_JUSTIFY_CENTER + False + False + 0 + 0.5 + 0 + 0 + + + 0 + 1 + 0 + 1 + fill + + + + + + + True + 7.45058e-09 + 0.5 + 0 + 1 + + + + True + False + True + False + True + False + + + + True + True + True + True + True + 0 + + True + * + False + + + + + + True + GTK_SELECTION_BROWSE + + + + True + + + + True + 389 + False + False + GTK_JUSTIFY_LEFT + False + False + 0 + 0.5 + 0 + 0 + + + + + + + + True + + + + True + 636 + False + False + GTK_JUSTIFY_LEFT + False + False + 0 + 0.5 + 0 + 0 + + + + + + + + True + + + + True + 3268 + False + False + GTK_JUSTIFY_LEFT + False + False + 0 + 0.5 + 0 + 0 + + + + + + + + True + + + + True + + False + False + GTK_JUSTIFY_LEFT + False + False + 0 + 0.5 + 0 + 0 + + + + + + + + + + + 1 + 2 + 0 + 1 + + + + + + + True + U_se SSL/TLS: + True + False + GTK_JUSTIFY_CENTER + False + False + 0 + 0.5 + 0 + 0 + + + 0 + 1 + 1 + 2 + fill + + + + + + True + 7.45058e-09 + 0.5 + 0 + 1 + + + + True + True + 0 + + + + True + + + + True + Always + True + + + + + + True + Whenever Possible + True + + + + + + True + Never + True + + + + + + + + + 1 + 2 + 1 + 2 + fill + fill + + + + + 0 + False + True + + + + + + True + False + False + GTK_POS_TOP + False + 2 + 2 + False + + + + True + This is the port on the LDAP server that Evolution will try to connect to. A list of standard ports has been provided. Ask your system administrator what port you should specify. - GTK_JUSTIFY_LEFT - no - 0.5 - 0.5 - 0 - 0 - yes - - - 0 - no - no - - - - - - - - label163 - GTK_JUSTIFY_CENTER - no - 0.5 - 0.5 - 0 - 0 - yes - - - tab - - - - - - 3 - no - 2 - yes - - - - gnome-hint.png - yes - - - 0 - no - no - - - - - - Selecting this option means that Evolution will only connect to your LDAP server if + False + False + GTK_JUSTIFY_LEFT + False + False + 0.5 + 0.5 + 0 + 0 + + + False + True + + + + + + True + label163 + False + False + GTK_JUSTIFY_CENTER + False + False + 0.5 + 0.5 + 0 + 0 + + + tab + + + + + + True + Selecting this option means that Evolution will only connect to your LDAP server if your LDAP server supports SSL or TLS. - GTK_JUSTIFY_LEFT - no - 7.45058e-09 - 0.5 - 0 - 0 - yes - - - 0 - no - no - - - - - - - - label398 - GTK_JUSTIFY_CENTER - no - 0.5 - 0.5 - 0 - 0 - yes - - - tab - - - - - - 3 - no - 2 - yes - - - - gnome-hint.png - yes - - - 0 - no - no - - - - - - Selecting this option means that Evolution will only try to use SSL/TLS if you are in a + False + False + GTK_JUSTIFY_LEFT + False + False + 7.45058e-09 + 0.5 + 0 + 0 + + + False + True + + + + + + True + label398 + False + False + GTK_JUSTIFY_CENTER + False + False + 0.5 + 0.5 + 0 + 0 + + + tab + + + + + + True + Selecting this option means that Evolution will only try to use SSL/TLS if you are in a insecure environment. For example, if you and your LDAP server are behind a firewall at work, then Evolution doesn't need to use SSL/TLS because your connection is already secure. - GTK_JUSTIFY_LEFT - no - 7.45058e-09 - 0.5 - 0 - 0 - yes - - - 0 - no - no - - - - - - - - label396 - GTK_JUSTIFY_CENTER - no - 0.5 - 0.5 - 0 - 0 - yes - - - tab - - - - - - 3 - no - 2 - yes - - - - gnome-hint.png - yes - - - 0 - no - no - - - - - - Selecting this option means that your server does not support either SSL or TLS. This + False + False + GTK_JUSTIFY_LEFT + False + False + 7.45058e-09 + 0.5 + 0 + 0 + + + False + True + + + + + + True + label396 + False + False + GTK_JUSTIFY_CENTER + False + False + 0.5 + 0.5 + 0 + 0 + + + tab + + + + + + True + Selecting this option means that your server does not support either SSL or TLS. This means that your connection will be insecure, and that you will be vulnerable to security exploits. - GTK_JUSTIFY_LEFT - no - 7.45058e-09 - 0.5 - 0 - 0 - yes - - - 0 - no - no - - - - - - - - label397 - GTK_JUSTIFY_CENTER - no - 0.5 - 0.5 - 0 - 0 - yes - - - tab - - - - - 0 - yes - yes - - - - - - - no - searching-tab - GTK_WINDOW_TOPLEVEL - no - no - yes - GTK_WIN_POS_NONE - - - - 6 - no - 3 - yes - - - - 3 - no - 3 - 3 - 4 - 2 - yes - - - - _Search base: - GTK_JUSTIFY_LEFT - no - 0 - 0.5 - 0 - 0 - yes - yes - - - 0 - 1 - 0 - 1 - 0 - 0 - fill - - - - - - - S_earch scope: - GTK_JUSTIFY_LEFT - no - 0 - 0.5 - 0 - 0 - yes - yes - - - 0 - 1 - 1 - 2 - 0 - 0 - fill - - - - - - - 7.45058e-09 - 7.45058e-09 - 0 - 1 - yes - - - - yes - 0 - yes - - - - yes - - - - One - yes - - - - - - Sub - yes - - - - - - - - - 1 - 2 - 1 - 2 - 0 - 0 - fill - - - - - - - 3 - no - 3 - yes - - - - yes - yes - yes - - 0 - yes - yes - - - 0 - yes - yes - - - - - - yes - S_how Supported Bases - GTK_RELIEF_NORMAL - yes - yes - - - 0 - no - no - - - - - 1 - 2 - 0 - 1 - 0 - 0 - expand|fill - fill - - - - - - _Timeout (minutes): - GTK_JUSTIFY_LEFT - no - 0 - 1 - 0 - 0 - yes - yes - - - 0 - 1 - 2 - 3 - 0 - 0 - fill - - - - - - - 7.45058e-09 - 0.5 - 1 - 1 - yes - - - - 3 - no - 3 - yes - - - - 1:00 - GTK_JUSTIFY_CENTER - no - 0.5 - 0.5 - 0 - 0 - yes - - - 0 - no - no - - - - - - yes - no - GTK_POS_LEFT - 0 - yes - 3 1 5 0.5 1 0 - - - 0 - yes - yes - - - - - - 5:00 - GTK_JUSTIFY_CENTER - no - 0 - 0.5 - 3 - 0 - yes - - - 0 - no - no - - - - - - Selected: - GTK_JUSTIFY_CENTER - no - 1 - 0.5 - 0 - 0 - yes - - - 0 - no - no - - - - - - 2:30 - GTK_JUSTIFY_CENTER - no - 0.5 - 0.5 - 0 - 0 - yes - - - 0 - no - no - - - - - - - 1 - 2 - 2 - 3 - 0 - 0 - expand|fill - - - - - - - _Download limit: - GTK_JUSTIFY_LEFT - no - 0 - 0.5 - 0 - 0 - yes - yes - - - 0 - 1 - 3 - 4 - 0 - 0 - fill - - - - - - - 0 - 0.5 - 0 - 1 - yes - - - - 3 - no - 3 - yes - - - - yes - 1 - 0 - no - GTK_UPDATE_ALWAYS - no - no - yes - 100 0 10000 1 10 10 - - - 0 - yes - yes - - - - - - cards - GTK_JUSTIFY_CENTER - no - 0.5 - 0.5 - 0 - 0 - yes - - - 0 - no - no - - - - - - - 1 - 2 - 3 - 4 - 0 - 0 - fill - fill - - - - - 0 - yes - yes - - - - - - no - no - GTK_POS_TOP - no - 2 - 2 - no - yes - - - - 3 - no - 3 - yes - - - - gnome-hint.png - yes - - - 0 - no - no - - - - - - The search base is the distinguished name (DN) of the entry where your searches will + False + False + GTK_JUSTIFY_LEFT + False + False + 7.45058e-09 + 0.5 + 0 + 0 + + + False + True + + + + + + True + label397 + False + False + GTK_JUSTIFY_CENTER + False + False + 0.5 + 0.5 + 0 + 0 + + + tab + + + + + 0 + True + True + + + + + + + + searching-tab + GTK_WINDOW_TOPLEVEL + GTK_WIN_POS_NONE + False + True + False + + + + 6 + True + False + 3 + + + + 3 + True + 4 + 2 + False + 3 + 3 + + + + True + _Search base: + True + False + GTK_JUSTIFY_LEFT + False + False + 0 + 0.5 + 0 + 0 + + + 0 + 1 + 0 + 1 + fill + + + + + + + True + S_earch scope: + True + False + GTK_JUSTIFY_LEFT + False + False + 0 + 0.5 + 0 + 0 + + + 0 + 1 + 1 + 2 + fill + + + + + + + True + 7.45058e-09 + 7.45058e-09 + 0 + 1 + + + + True + True + 0 + + + + True + + + + True + One + True + + + + + + True + Sub + True + + + + + + + + + 1 + 2 + 1 + 2 + fill + + + + + + + 3 + True + False + 3 + + + + True + True + True + True + True + 0 + + True + * + False + + + 0 + True + True + + + + + + True + True + S_how Supported Bases + True + GTK_RELIEF_NORMAL + + + 0 + False + False + + + + + 1 + 2 + 0 + 1 + fill + + + + + + True + _Timeout (minutes): + True + False + GTK_JUSTIFY_LEFT + False + False + 0 + 1 + 0 + 0 + + + 0 + 1 + 2 + 3 + fill + + + + + + + True + 7.45058e-09 + 0.5 + 1 + 1 + + + + 3 + True + False + 3 + + + + True + 1:00 + False + False + GTK_JUSTIFY_CENTER + False + False + 0.5 + 0.5 + 0 + 0 + + + 0 + False + False + + + + + + True + True + False + GTK_POS_LEFT + 0 + GTK_UPDATE_CONTINUOUS + False + 3 1 5 0.5 1 0 + + + 0 + True + True + + + + + + True + 5:00 + False + False + GTK_JUSTIFY_CENTER + False + False + 0 + 0.5 + 3 + 0 + + + 0 + False + False + + + + + + True + Selected: + False + False + GTK_JUSTIFY_CENTER + False + False + 1 + 0.5 + 0 + 0 + + + 0 + False + False + + + + + + True + 2:30 + False + False + GTK_JUSTIFY_CENTER + False + False + 0.5 + 0.5 + 0 + 0 + + + 0 + False + False + + + + + + + 1 + 2 + 2 + 3 + + + + + + + True + _Download limit: + True + False + GTK_JUSTIFY_LEFT + False + False + 0 + 0.5 + 0 + 0 + + + 0 + 1 + 3 + 4 + fill + + + + + + + True + 0 + 0.5 + 0 + 1 + + + + 3 + True + False + 3 + + + + True + True + 1 + 0 + False + GTK_UPDATE_ALWAYS + False + False + 100 0 10000 1 10 10 + + + 0 + True + True + + + + + + True + cards + False + False + GTK_JUSTIFY_CENTER + False + False + 0.5 + 0.5 + 0 + 0 + + + 0 + False + False + + + + + + + 1 + 2 + 3 + 4 + fill + fill + + + + + 0 + True + True + + + + + + True + False + False + GTK_POS_TOP + False + 2 + 2 + False + + + + True + The search base is the distinguished name (DN) of the entry where your searches will begin. If you leave this blank, the search will begin at the root of the directory tree. - GTK_JUSTIFY_LEFT - no - 7.45058e-09 - 0.5 - 0 - 0 - yes - - - 0 - no - no - - - - - - - - label163 - GTK_JUSTIFY_CENTER - no - 0.5 - 0.5 - 0 - 0 - yes - - - tab - - - - - - 3 - no - 2 - yes - - - - gnome-hint.png - yes - - - 0 - no - no - - - - - - The search scope defines how deep you would like the search to extend down the + False + False + GTK_JUSTIFY_LEFT + False + False + 7.45058e-09 + 0.5 + 0 + 0 + + + False + True + + + + + + True + label163 + False + False + GTK_JUSTIFY_CENTER + False + False + 0.5 + 0.5 + 0 + 0 + + + tab + + + + + + True + The search scope defines how deep you would like the search to extend down the directory tree. A search scope of "sub" will include all entries below your search base. A search scope of "one" will only include the entries one level beneath your base. - GTK_JUSTIFY_LEFT - no - 0.5 - 0.5 - 0 - 0 - yes - - - 0 - no - no - - - - - - - - label164 - GTK_JUSTIFY_CENTER - no - 0.5 - 0.5 - 0 - 0 - yes - - - tab - - - - - - 3 - no - 2 - yes - - - - gnome-hint.png - yes - - - 0 - no - no - - - - - - This option controls how long a search will be run. - GTK_JUSTIFY_CENTER - no - 0.5 - 0.5 - 0 - 0 - yes - - - 0 - no - no - - - - - - - - label165 - GTK_JUSTIFY_CENTER - no - 0.5 - 0.5 - 0 - 0 - yes - - - tab - - - - - - 3 - no - 2 - yes - - - - gnome-hint.png - yes - - - 0 - no - no - - - - - - This is the maximum number of entries to download. Setting this number to be + False + False + GTK_JUSTIFY_LEFT + False + False + 0.5 + 0.5 + 0 + 0 + + + False + True + + + + + + True + label164 + False + False + GTK_JUSTIFY_CENTER + False + False + 0.5 + 0.5 + 0 + 0 + + + tab + + + + + + True + This option controls how long a search will be run. + False + False + GTK_JUSTIFY_CENTER + False + False + 0.5 + 0.5 + 0 + 0 + + + False + True + + + + + + True + label165 + False + False + GTK_JUSTIFY_CENTER + False + False + 0.5 + 0.5 + 0 + 0 + + + tab + + + + + + True + This is the maximum number of entries to download. Setting this number to be too large will slow down your addressbook. - GTK_JUSTIFY_LEFT - no - 7.45058e-09 - 0.5 - 0 - 0 - yes - - - 0 - no - no - - - - - - - - label166 - GTK_JUSTIFY_CENTER - no - 0.5 - 0.5 - 0 - 0 - yes - - - tab - - - - - 0 - no - no - GTK_PACK_END - - - - - - - no - objectclasses-tab - GTK_WINDOW_TOPLEVEL - no - no - yes - GTK_WIN_POS_NONE - - - - 3 - no - 3 - yes - - - - 3 - no - 3 - yes - - - - 3 - no - 3 - yes - - - - Objectclasses Used on Server: - GTK_JUSTIFY_CENTER - no - 0.5 - 0.5 - 0 - 0 - yes - - - 0 - no - no - - - - - - objectclasses_create_server_table - 0 - 0 - Tue, 16 Apr 2002 17:09:21 GMT - yes - - - 0 - yes - yes - - - - - 0 - yes - yes - - - - - - 3 - no - 3 - yes - - - - + False + False + GTK_JUSTIFY_LEFT + False + False + 7.45058e-09 + 0.5 + 0 + 0 + + + False + True + + + + + + True + label166 + False + False + GTK_JUSTIFY_CENTER + False + False + 0.5 + 0.5 + 0 + 0 + + + tab + + + + + 0 + False + False + GTK_PACK_END + + + + + + + + objectclasses-tab + GTK_WINDOW_TOPLEVEL + GTK_WIN_POS_NONE + False + True + False + + + + 3 + True + False + 3 + + + + 3 + True + False + 3 + + + + 3 + True + False + 3 + + + + True + Objectclasses Used on Server: + False + False + GTK_JUSTIFY_CENTER + False + False + 0.5 + 0.5 + 0 + 0 + + + 0 + False + False + + + + + + True + objectclasses_create_server_table + 0 + 0 + Tue, 16 Apr 2002 17:09:21 GMT + + + 0 + True + True + + + + + 0 + True + True + + + + + + 3 + True + False + 3 + + + + True + - GTK_JUSTIFY_CENTER - no - 0.5 - 0.5 - 0 - 0 - yes - - - 0 - no - no - - - - - - GTK_BUTTONBOX_START - 1 - yes - - - - yes - yes - _Add -> - GTK_RELIEF_NORMAL - yes - yes - - - - - - yes - yes - <- _Remove - GTK_RELIEF_NORMAL - yes - yes - - - - - 0 - yes - yes - - - - - 0 - no - yes - - - - - - 3 - no - 3 - yes - - - - Objectclasses Used in Evolution: - GTK_JUSTIFY_CENTER - no - 0.5 - 0.5 - 0 - 0 - yes - - - 0 - no - no - - - - - - objectclasses_create_evolution_table - 0 - 0 - Tue, 16 Apr 2002 17:09:43 GMT - yes - - - 0 - yes - yes - - - - - 0 - yes - yes - - - - - 0 - yes - yes - - - - - - 6 - GTK_BUTTONBOX_DEFAULT_STYLE - 0 - yes - - - - yes - yes - R_estore Defaults - GTK_RELIEF_NORMAL - yes - yes - - - - - 0 - no - no - GTK_PACK_END - - - - - - - no - mappings-tab - GTK_WINDOW_TOPLEVEL - no - no - yes - GTK_WIN_POS_NONE - - - - 3 - no - 3 - yes - - - - 3 - no - 3 - yes - - - - 3 - no - 3 - yes - - - - GTK_POLICY_AUTOMATIC - GTK_POLICY_AUTOMATIC - GTK_SHADOW_IN - yes - - - - yes - yes - yes - - - - CList:title - Evolution Attribute - GTK_JUSTIFY_CENTER - no - 0.5 - 0.5 - 0 - 0 - yes - - - - - - CList:title - Associated LDAP Attribute - GTK_JUSTIFY_CENTER - no - 0.5 - 0.5 - 0 - 0 - yes - - - - - - - - GTK_UPDATE_CONTINUOUS - yes - - - - - - GTK_UPDATE_CONTINUOUS - yes - - - - - 0 - yes - yes - - - - - 0 - yes - yes - - - - - - 3 - no - 3 - yes - - - - + False + False + GTK_JUSTIFY_CENTER + False + False + 0.5 + 0.5 + 0 + 0 + + + 0 + False + False + + + + + + True + GTK_BUTTONBOX_START + 1 + + + + True + True + True + _Add -> + True + GTK_RELIEF_NORMAL + + + + + + True + True + True + <- _Remove + True + GTK_RELIEF_NORMAL + + + + + 0 + True + True + + + + + 0 + False + True + + + + + + 3 + True + False + 3 + + + + True + Objectclasses Used in Evolution: + False + False + GTK_JUSTIFY_CENTER + False + False + 0.5 + 0.5 + 0 + 0 + + + 0 + False + False + + + + + + True + objectclasses_create_evolution_table + 0 + 0 + Tue, 16 Apr 2002 17:09:43 GMT + + + 0 + True + True + + + + + 0 + True + True + + + + + 0 + True + True + + + + + + 6 + True + GTK_BUTTONBOX_DEFAULT_STYLE + 0 + + + + True + True + True + R_estore Defaults + True + GTK_RELIEF_NORMAL + + + + + 0 + False + False + GTK_PACK_END + + + + + + + + mappings-tab + GTK_WINDOW_TOPLEVEL + GTK_WIN_POS_NONE + False + True + False + + + + 3 + True + False + 3 + + + + 3 + True + False + 3 + + + + 3 + True + False + 3 + + + + True + GTK_POLICY_AUTOMATIC + GTK_POLICY_AUTOMATIC + GTK_SHADOW_IN + GTK_CORNER_TOP_LEFT + + + + True + True + True + False + False + True + + + + + 0 + True + True + + + + + 0 + True + True + + + + + + 3 + True + False + 3 + + + + True + - GTK_JUSTIFY_CENTER - no - 0.5 - 0.5 - 0 - 0 - yes - - - 0 - no - no - - - - - - GTK_BUTTONBOX_DEFAULT_STYLE - 0 - yes - - - - yes - yes - _Add Mapping - GTK_RELIEF_NORMAL - yes - yes - - - - - - yes - yes - _Edit Mapping - GTK_RELIEF_NORMAL - yes - yes - - - - - - yes - yes - _Delete Mapping - GTK_RELIEF_NORMAL - yes - yes - - - - - 0 - no - no - - - - - 0 - no - no - - - - - 0 - yes - yes - - - - - - GTK_BUTTONBOX_DEFAULT_STYLE - 30 - yes - - - - yes - yes - Re_store Defaults - GTK_RELIEF_NORMAL - yes - yes - - - - - 0 - no - no - GTK_PACK_END - - - - - - - no - dn-customization-tab - GTK_WINDOW_TOPLEVEL - no - no - yes - GTK_WIN_POS_NONE - - - - 3 - no - 3 - yes - - - - no - no - GTK_POS_TOP - no - 2 - 2 - no - yes - - - - 3 - no - 2 - yes - - - - gnome-hint.png - yes - - - 0 - no - no - - - - - - To add an attribute to the DN, select it from the list and click the "Add Attribute" button. + False + False + GTK_JUSTIFY_CENTER + False + False + 0.5 + 0.5 + 0 + 0 + + + 0 + False + False + + + + + + True + GTK_BUTTONBOX_DEFAULT_STYLE + 0 + + + + True + True + True + _Add Mapping + True + GTK_RELIEF_NORMAL + + + + + + True + True + True + _Edit Mapping + True + GTK_RELIEF_NORMAL + + + + + + True + True + True + _Delete Mapping + True + GTK_RELIEF_NORMAL + + + + + 0 + False + False + + + + + 0 + False + False + + + + + 0 + True + True + + + + + + True + GTK_BUTTONBOX_DEFAULT_STYLE + 30 + + + + True + True + True + Re_store Defaults + True + GTK_RELIEF_NORMAL + + + + + 0 + False + False + GTK_PACK_END + + + + + + + + dn-customization-tab + GTK_WINDOW_TOPLEVEL + GTK_WIN_POS_NONE + False + True + False + + + + 3 + True + False + 3 + + + + True + False + False + GTK_POS_TOP + False + 2 + 2 + False + + + + True + To add an attribute to the DN, select it from the list and click the "Add Attribute" button. Any values that you add to the DN will become required values for any new contacts that you add to the directory on the LDAP server. - GTK_JUSTIFY_LEFT - no - 7.45058e-09 - 0.5 - 0 - 0 - yes - - - 0 - no - no - - - - - - - - label163 - GTK_JUSTIFY_CENTER - no - 0.5 - 0.5 - 0 - 0 - yes - - - tab - - - - - - 3 - no - 3 - yes - - - - gnome-hint.png - yes - - - 0 - no - no - - - - - - Selecting this option will let you change Evolution's default settings for LDAP + False + False + GTK_JUSTIFY_LEFT + False + False + 7.45058e-09 + 0.5 + 0 + 0 + + + False + True + + + + + + True + label163 + False + False + GTK_JUSTIFY_CENTER + False + False + 0.5 + 0.5 + 0 + 0 + + + tab + + + + + + True + Selecting this option will let you change Evolution's default settings for LDAP searches, and for creating and editing contacts. - GTK_JUSTIFY_LEFT - no - 0.5 - 0.5 - 0 - 0 - yes - - - 0 - no - no - - - - - - - - label164 - GTK_JUSTIFY_CENTER - no - 0.5 - 0.5 - 0 - 0 - yes - - - tab - - - - - 0 - no - no - GTK_PACK_END - - - - - - 3 - no - 3 - 3 - 2 - 2 - yes - - - - no - 0 - yes - - - - - GTK_JUSTIFY_CENTER - no - 0.5 - 0.5 - 0 - 0 - yes - - - 0 - no - no - - - - - - GTK_BUTTONBOX_START - 10 - yes - - - - yes - yes - _Add to DN - GTK_RELIEF_NORMAL - yes - yes - - - - - 0 - no - no - - - - - 1 - 2 - 1 - 2 - 0 - 0 - - fill - - - - - - GTK_POLICY_AUTOMATIC - GTK_POLICY_AUTOMATIC - GTK_SHADOW_IN - yes - - - - yes - yes - yes - - - - CList:title - LDAP Attribute - GTK_JUSTIFY_CENTER - no - 0.5 - 0.5 - 0 - 0 - yes - - - - - - CList:title - Corresponding Evolution Attribute - GTK_JUSTIFY_CENTER - no - 0.5 - 0.5 - 0 - 0 - yes - - - - - - - - GTK_UPDATE_CONTINUOUS - yes - - - - - - GTK_UPDATE_CONTINUOUS - yes - - - - - 0 - 1 - 1 - 2 - 0 - 0 - expand|fill - expand|fill - - - - - - 3 - no - 3 - yes - - - - _Distinguished Name (DN): - GTK_JUSTIFY_CENTER - no - 0.5 - 0.5 - 0 - 0 - entry53 - yes - yes - - - 0 - no - no - - - - - - yes - yes - - 0 - yes - yes - - - 0 - yes - yes - - - - - 0 - 1 - 0 - 1 - 0 - 0 - expand|fill - fill - - - - - - GTK_BUTTONBOX_DEFAULT_STYLE - 0 - yes - - - - yes - yes - _Restore Defaults - GTK_RELIEF_NORMAL - yes - yes - - - - - 1 - 2 - 0 - 1 - 0 - 0 - - fill - - - - - 0 - yes - yes - - - - - - - no - Supported Search Bases - GTK_WINDOW_TOPLEVEL - no - 300 - 200 - yes - yes - GTK_WIN_POS_NONE - - - - no - 8 - yes - - - - GTK_BUTTONBOX_END - 8 - yes - - - - yes - yes - yes - gtk-ok - yes - yes - - - - - - yes - yes - yes - gtk-cancel - yes - yes - - - - - 0 - no - yes - GTK_PACK_END - - - - - - supported_bases_create_table - 0 - 0 - Fri, 12 Apr 2002 20:06:45 GMT - yes - - - 0 - yes - yes - - - - - 4 - yes - yes - - - + False + False + GTK_JUSTIFY_LEFT + False + False + 0.5 + 0.5 + 0 + 0 + + + False + True + + + + + + True + label164 + False + False + GTK_JUSTIFY_CENTER + False + False + 0.5 + 0.5 + 0 + 0 + + + tab + + + + + 0 + False + False + GTK_PACK_END + + + + + + 3 + True + 2 + 2 + False + 3 + 3 + + + + True + False + 0 + + + + True + + False + False + GTK_JUSTIFY_CENTER + False + False + 0.5 + 0.5 + 0 + 0 + + + 0 + False + False + + + + + + True + GTK_BUTTONBOX_START + 10 + + + + True + True + True + _Add to DN + True + GTK_RELIEF_NORMAL + + + + + 0 + False + False + + + + + 1 + 2 + 1 + 2 + + fill + + + + + + True + GTK_POLICY_AUTOMATIC + GTK_POLICY_AUTOMATIC + GTK_SHADOW_IN + GTK_CORNER_TOP_LEFT + + + + True + True + True + False + False + True + + + + + 0 + 1 + 1 + 2 + + + + + + 3 + True + False + 3 + + + + True + _Distinguished Name (DN): + True + False + GTK_JUSTIFY_CENTER + False + False + 0.5 + 0.5 + 0 + 0 + entry53 + + + 0 + False + False + + + + + + True + True + True + True + 0 + + True + * + False + + + 0 + True + True + + + + + 0 + 1 + 0 + 1 + fill + + + + + + True + GTK_BUTTONBOX_DEFAULT_STYLE + 0 + + + + True + True + True + _Restore Defaults + True + GTK_RELIEF_NORMAL + + + + + 1 + 2 + 0 + 1 + + fill + + + + + 0 + True + True + + + + + + + + Supported Search Bases + GTK_WINDOW_TOPLEVEL + GTK_WIN_POS_NONE + False + 300 + 200 + True + False + True + + + + True + False + 8 + + + + True + GTK_BUTTONBOX_END + + + + True + True + True + gtk-ok + True + GTK_RELIEF_NORMAL + 0 + + + + + + True + True + True + gtk-cancel + True + GTK_RELIEF_NORMAL + 0 + + + + + 0 + False + True + GTK_PACK_END + + + + + + True + supported_bases_create_table + 0 + 0 + Fri, 12 Apr 2002 20:06:45 GMT + + + 0 + True + True + + + + + + -- cgit v1.2.3