Connection specific smtp window moved to src/widgets
[modest] / src / widgets / modest-connection-specific-smtp-window.c
1 /* Copyright (c) 2006, Nokia Corporation
2  * All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions are
6  * met:
7  *
8  * * Redistributions of source code must retain the above copyright
9  *   notice, this list of conditions and the following disclaimer.
10  * * Redistributions in binary form must reproduce the above copyright
11  *   notice, this list of conditions and the following disclaimer in the
12  *   documentation and/or other materials provided with the distribution.
13  * * Neither the name of the Nokia Corporation nor the names of its
14  *   contributors may be used to endorse or promote products derived from
15  *   this software without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
18  * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
19  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
20  * PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
21  * OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
22  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
23  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
24  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
25  * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
26  * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
27  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28  */
29
30 #include "modest-connection-specific-smtp-window.h"
31 #include "modest-connection-specific-smtp-edit-window.h"
32 #include <modest-account-mgr-helpers.h>
33 #include "widgets/modest-ui-constants.h"
34
35 #include <modest-runtime.h>
36
37 #if MODEST_HAVE_CONIC
38 #include <tny-maemo-conic-device.h>
39 #endif
40
41 #include <gtk/gtktreeview.h>
42 #include <gtk/gtkcellrenderertext.h>
43 #include <gtk/gtkliststore.h>
44 #include <modest-scrollable.h>
45 #include <modest-toolkit-factory.h>
46 #include <hildon/hildon-gtk.h>
47 #include <gtk/gtkbutton.h>
48 #include <gtk/gtkhbox.h>
49 #include <gtk/gtkvbox.h>
50 #include <gtk/gtkstock.h>
51
52 #include "modest-hildon-includes.h"
53 #include "modest-platform.h"
54 #include "modest-maemo-utils.h"
55
56 #include <glib/gi18n.h>
57 #include <string.h>
58
59 G_DEFINE_TYPE (ModestConnectionSpecificSmtpWindow, modest_connection_specific_smtp_window,
60                GTK_TYPE_DIALOG);
61
62 #define CONNECTION_SPECIFIC_SMTP_WINDOW_GET_PRIVATE(o) \
63         (G_TYPE_INSTANCE_GET_PRIVATE ((o), MODEST_TYPE_CONNECTION_SPECIFIC_SMTP_WINDOW, ModestConnectionSpecificSmtpWindowPrivate))
64
65 typedef struct _ModestConnectionSpecificSmtpWindowPrivate ModestConnectionSpecificSmtpWindowPrivate;
66
67 struct _ModestConnectionSpecificSmtpWindowPrivate
68 {
69         GtkTreeView *treeview;
70         GtkTreeModel *model;
71         GtkWidget *no_connection_label;
72         GtkWidget *scrollable;
73         ModestAccountMgr *account_manager;
74 };
75
76 static void on_response (GtkDialog *dialog, 
77                          gint response, 
78                          gpointer user_data);
79
80 /* static gboolean on_key_pressed (GtkWidget *self, GdkEventKey *event, gpointer user_data); */
81
82 static void
83 modest_connection_specific_smtp_window_get_property (GObject *object, guint property_id,
84                                                                                                                         GValue *value, GParamSpec *pspec)
85 {
86         switch (property_id) {
87         default:
88                 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
89         }
90 }
91
92 static void
93 modest_connection_specific_smtp_window_set_property (GObject *object, guint property_id,
94                                                                                                                         const GValue *value, GParamSpec *pspec)
95 {
96         switch (property_id) {
97         default:
98                 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
99         }
100 }
101
102 static void
103 modest_connection_specific_smtp_window_dispose (GObject *object)
104 {
105         if (G_OBJECT_CLASS (modest_connection_specific_smtp_window_parent_class)->dispose)
106                 G_OBJECT_CLASS (modest_connection_specific_smtp_window_parent_class)->dispose (object);
107 }
108
109 enum MODEL_COLS {
110         MODEL_COL_NAME = 0, /* libconic IAP Name: a string */
111         MODEL_COL_ID = 1, /* libconic IAP ID: a string */
112         MODEL_COL_SERVER_ACCOUNT_NAME = 2, /* a string */
113         MODEL_COL_SERVER_NAME = 3, /* a string */
114         MODEL_COL_SERVER_ACCOUNT_SETTINGS = 4 /* a gpointer */
115 };
116
117
118 static void update_model_server_names (ModestConnectionSpecificSmtpWindow *self);
119
120 static void
121 modest_connection_specific_smtp_window_finalize (GObject *object)
122 {
123         ModestConnectionSpecificSmtpWindowPrivate *priv = CONNECTION_SPECIFIC_SMTP_WINDOW_GET_PRIVATE (object);
124
125         /* Free all the data items from the treemodel: */
126         GtkTreeIter iter;
127         gboolean valid = gtk_tree_model_get_iter_first (priv->model, &iter);
128         while (valid) {
129                 ModestServerAccountSettings *server_settings = NULL;
130
131                 gtk_tree_model_get (priv->model, &iter, 
132                                     MODEL_COL_SERVER_ACCOUNT_SETTINGS, &server_settings,
133                                     -1);
134
135                 if (server_settings)
136                         g_object_unref (server_settings);
137
138                 /* Get next row: */
139                 valid = gtk_tree_model_iter_next (priv->model, &iter);
140         }
141
142         g_object_unref (G_OBJECT (priv->model));
143
144         g_object_unref (priv->treeview);
145         g_object_unref (priv->no_connection_label);
146
147         G_OBJECT_CLASS (modest_connection_specific_smtp_window_parent_class)->finalize (object);
148 }
149
150 static void
151 modest_connection_specific_smtp_window_class_init (ModestConnectionSpecificSmtpWindowClass *klass)
152 {
153         GObjectClass *object_class = G_OBJECT_CLASS (klass);
154
155         g_type_class_add_private (klass, sizeof (ModestConnectionSpecificSmtpWindowPrivate));
156
157         object_class->get_property = modest_connection_specific_smtp_window_get_property;
158         object_class->set_property = modest_connection_specific_smtp_window_set_property;
159         object_class->dispose = modest_connection_specific_smtp_window_dispose;
160         object_class->finalize = modest_connection_specific_smtp_window_finalize;
161 }
162
163 /* libconic does not return a list of connections in scratchbox,
164  * so enable this to put a fake row in the list,
165  * so we can test other parts of the code. */
166 /* #define DEBUG_WITHOUT_LIBCONIC 1 */
167
168 void
169 modest_connection_specific_smtp_window_fill_with_connections (ModestConnectionSpecificSmtpWindow *self,
170                                                               ModestAccountMgr *account_manager)
171 {
172         gboolean empty = TRUE;
173         ModestConnectionSpecificSmtpWindowPrivate *priv = 
174                 CONNECTION_SPECIFIC_SMTP_WINDOW_GET_PRIVATE (self);
175         priv->account_manager = account_manager;
176 #ifdef MODEST_HAVE_CONIC
177         GtkListStore *liststore = GTK_LIST_STORE (priv->model);
178         
179         TnyDevice *device = modest_runtime_get_device ();
180         g_assert (TNY_IS_MAEMO_CONIC_DEVICE (device));
181         
182         /* Get the list of Internet Access Points: */
183         #ifdef DEBUG_WITHOUT_LIBCONIC
184         GSList *list_iaps = g_slist_append(NULL, (gpointer)1);
185         #else
186         TnyMaemoConicDevice *maemo_device = TNY_MAEMO_CONIC_DEVICE (device);
187         GSList *list_iaps = tny_maemo_conic_device_get_iap_list (maemo_device);
188         #endif
189         
190         /* printf("debug: list_iaps=%p, list_iaps size = %d\n", list_iaps, g_slist_length(list_iaps)); */
191         
192         GSList* iter = list_iaps;
193         if (list_iaps != NULL)
194                 empty = FALSE;
195
196         while (iter) {
197                 ConIcIap *iap = (ConIcIap*)iter->data;
198                 if (iap) {
199                         #ifdef DEBUG_WITHOUT_LIBCONIC
200                         const gchar *connection_name = "debug name";
201                         const gchar *connection_id = "debug id";
202                         #else
203                         const gchar *connection_name = con_ic_iap_get_name (iap);
204                         const gchar *connection_id = con_ic_iap_get_id (iap);
205                         #endif
206                         
207                         printf ("debug: iac name=%s, id=%s\n", connection_name, connection_id);
208                         
209                         /* Get any already-associated connection-specific server account: */
210                         gchar *server_account_name = NULL;
211                         server_account_name = modest_account_mgr_get_connection_specific_smtp (
212                                 priv->account_manager, connection_id);
213                                         
214                         /* Add the row to the model: */
215                         GtkTreeIter iter;
216                         gtk_list_store_append (liststore, &iter);
217                         gtk_list_store_set(liststore, &iter, 
218                                 MODEL_COL_ID, connection_id, 
219                                 MODEL_COL_NAME, connection_name,
220                                 MODEL_COL_SERVER_ACCOUNT_NAME, server_account_name,
221                                 -1);
222                                 
223                         if (server_account_name)
224                                 g_free (server_account_name);
225                 }
226                 
227                 iter = g_slist_next (iter);     
228         }
229                 
230         #ifndef DEBUG_WITHOUT_LIBCONIC
231         if (list_iaps)
232                 tny_maemo_conic_device_free_iap_list (maemo_device, list_iaps);
233         #endif
234                 
235         update_model_server_names (self);
236 #endif /*MODEST_HAVE_CONIC */
237
238         GtkWidget *child;
239         child = gtk_bin_get_child (GTK_BIN (priv->scrollable));
240         if (child) {
241                 gtk_container_remove (GTK_CONTAINER (priv->scrollable), child);
242         }
243
244         if (empty) {
245                 modest_scrollable_add_with_viewport (MODEST_SCROLLABLE (priv->scrollable), 
246                                                      priv->no_connection_label);
247                 gtk_widget_show (priv->no_connection_label);
248         } else {
249                 gtk_container_add (GTK_CONTAINER (priv->scrollable), GTK_WIDGET (priv->treeview));
250                 gtk_widget_show (GTK_WIDGET (priv->treeview));
251         }
252 }
253         
254 static void
255 edit_account (ModestConnectionSpecificSmtpWindow *self, GtkTreePath *path)
256 {
257         ModestConnectionSpecificSmtpWindowPrivate *priv = CONNECTION_SPECIFIC_SMTP_WINDOW_GET_PRIVATE (self);
258         ModestAccountMgr *mgr = modest_runtime_get_account_mgr ();
259         
260         gchar *id = NULL;
261         gchar *connection_name = NULL;
262         gchar *server_account_name = NULL;
263         ModestServerAccountSettings *server_settings = NULL;
264         GtkTreeIter iter;
265         if (gtk_tree_model_get_iter (priv->model, &iter, path)) {
266                 gtk_tree_model_get (priv->model, &iter,
267                                     MODEL_COL_ID, &id,
268                                     MODEL_COL_NAME, &connection_name,
269                                     MODEL_COL_SERVER_ACCOUNT_NAME, &server_account_name,
270                                     MODEL_COL_SERVER_ACCOUNT_SETTINGS, &server_settings,
271                                     -1);
272
273                 /* Get existing server account data if a server account is already specified: */
274                 gboolean settings_were_retrieved = FALSE;
275                 if (server_account_name && !server_settings) {
276                         server_settings = modest_account_mgr_load_server_settings(mgr, server_account_name, TRUE);
277                         if (server_settings)
278                                 settings_were_retrieved = TRUE;
279                 }
280
281                 GtkWidget * window = GTK_WIDGET (modest_connection_specific_smtp_edit_window_new ());
282                 modest_connection_specific_smtp_edit_window_set_connection (
283                         MODEST_CONNECTION_SPECIFIC_SMTP_EDIT_WINDOW (window), id, connection_name, server_settings);
284
285                 /* Delete data, unless it was data from the rowmodel: */
286                 if (settings_were_retrieved) {
287                         g_object_unref (server_settings);
288                         server_settings = NULL;
289                 }
290
291                 modest_window_mgr_set_modal (modest_runtime_get_window_mgr (), GTK_WINDOW (window), GTK_WINDOW (self));
292
293                 gint response = gtk_dialog_run (GTK_DIALOG (window));
294                 if (response == GTK_RESPONSE_OK) {
295
296                         /* Delete any previous data for this row: */
297                         if (server_settings) {
298                                 g_object_unref (server_settings);
299                                 server_settings = NULL;
300                         }
301
302                         /* Get the new account data and save it in the row for later:
303                          * We free this in finalize(),
304                          * and save it to our configuration in
305                          * modest_connection_specific_smtp_window_save_server_accounts(). */
306                         server_settings = modest_connection_specific_smtp_edit_window_get_settings (
307                                                                                                     MODEST_CONNECTION_SPECIFIC_SMTP_EDIT_WINDOW (window));
308
309                         if (server_settings) {
310                                 gtk_list_store_set (GTK_LIST_STORE (priv->model), &iter,
311                                                     MODEL_COL_SERVER_ACCOUNT_SETTINGS, server_settings,
312                                                     MODEL_COL_SERVER_NAME, modest_server_account_settings_get_hostname (server_settings),
313                                                     -1);
314                         } else {
315                                 gtk_list_store_set (GTK_LIST_STORE (priv->model), &iter,
316                                                     MODEL_COL_SERVER_ACCOUNT_SETTINGS, NULL,
317                                                     MODEL_COL_SERVER_NAME, NULL,
318                                                     MODEL_COL_SERVER_ACCOUNT_NAME, NULL,
319                                                     -1);
320                         }
321                 }
322                 gtk_widget_destroy (window);
323         }
324         g_free (connection_name);
325         g_free (id);
326         g_free (server_account_name);
327         update_model_server_names (self);
328 }
329
330 static void
331 on_row_activated (GtkTreeView *treeview, GtkTreePath *path, GtkTreeViewColumn *column, 
332                   ModestConnectionSpecificSmtpWindow *self)
333 {
334         edit_account (self, path);
335 }
336
337 static void
338 modest_connection_specific_smtp_window_init (ModestConnectionSpecificSmtpWindow *self)
339 {
340         ModestWindowMgr *mgr;
341         GtkWidget *align;
342
343         /* Specify a default size */
344         gtk_window_set_default_size (GTK_WINDOW (self), -1, MODEST_DIALOG_WINDOW_MAX_HEIGHT);
345
346         /* This seems to be necessary to make the window show at the front with decoration.
347          * If we use property type=GTK_WINDOW_TOPLEVEL instead of the default GTK_WINDOW_POPUP+decoration, 
348          * then the window will be below the others. */
349         gtk_window_set_type_hint (GTK_WINDOW (self),
350                             GDK_WINDOW_TYPE_HINT_DIALOG);
351
352         ModestConnectionSpecificSmtpWindowPrivate *priv = 
353                 CONNECTION_SPECIFIC_SMTP_WINDOW_GET_PRIVATE (self);
354
355         /* Create a tree model for the tree view:
356          * with a string for the name, a string for the server name, and an int for the ID.
357          * This must match our MODEL_COLS enum constants.
358          */
359         priv->model = GTK_TREE_MODEL (gtk_list_store_new (5, 
360                 G_TYPE_STRING, G_TYPE_STRING, G_TYPE_STRING, G_TYPE_STRING, G_TYPE_POINTER));
361
362         /* Setup the tree view: */
363         priv->treeview = GTK_TREE_VIEW (hildon_gtk_tree_view_new_with_model (HILDON_UI_MODE_NORMAL, priv->model));
364         g_object_ref_sink (G_OBJECT (priv->treeview));
365
366         /* No connections label */
367         priv->no_connection_label = gtk_label_new (_("mcen_ia_optionalsmtp_noconnection"));
368         g_object_ref_sink (G_OBJECT (priv->no_connection_label));
369
370         /* name column:
371          * The ID model column in not shown in the view. */
372         GtkTreeViewColumn *view_column = gtk_tree_view_column_new ();
373         gtk_tree_view_column_set_expand (view_column, TRUE);
374         GtkCellRenderer *renderer = gtk_cell_renderer_text_new ();
375         g_object_set (G_OBJECT (renderer), "xpad", MODEST_MARGIN_DOUBLE, NULL);
376         gtk_tree_view_column_pack_start(view_column, renderer, TRUE);
377         gtk_tree_view_column_set_attributes (view_column, renderer, 
378         "text", MODEL_COL_NAME, NULL);
379         gtk_tree_view_append_column (priv->treeview, view_column);
380
381         /* server name column: */
382         view_column = gtk_tree_view_column_new ();
383         gtk_tree_view_column_set_expand (view_column, TRUE);
384         renderer = gtk_cell_renderer_text_new ();
385         gtk_tree_view_column_pack_start(view_column, renderer, TRUE);
386         gtk_tree_view_column_set_attributes (view_column, renderer, 
387         "text", MODEL_COL_SERVER_NAME, NULL);
388         gtk_tree_view_append_column (priv->treeview, view_column);
389
390         /* The application must call modest_connection_specific_smtp_window_fill_with_connections(). */
391
392         GtkWidget *vbox = GTK_DIALOG(self)->vbox;
393
394         /* Introductory note: */
395         GtkWidget *label = gtk_label_new(_("mcen_ia_optionalsmtp_note"));
396         gtk_label_set_line_wrap (GTK_LABEL (label), TRUE);
397         gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5);
398         gtk_misc_set_padding (GTK_MISC (label), MODEST_MARGIN_DOUBLE + MODEST_MARGIN_DOUBLE, MODEST_MARGIN_DOUBLE);
399         gtk_widget_set_size_request (label, 600, -1);
400         gtk_widget_show (label);
401         gtk_box_pack_start (GTK_BOX (vbox), label, FALSE, FALSE, 0);
402
403         /* Put the treeview in a scrollable and add it to the box: */
404         priv->scrollable = modest_toolkit_factory_create_scrollable (modest_runtime_get_toolkit_factory ());
405         align = gtk_alignment_new (0.0, 0.0, 1.0, 1.0);
406         gtk_alignment_set_padding (GTK_ALIGNMENT (align), 0, 0, MODEST_MARGIN_DOUBLE, 0);
407         gtk_widget_show (priv->scrollable);
408         gtk_widget_show (align);
409         gtk_container_add (GTK_CONTAINER (align), GTK_WIDGET (priv->scrollable));
410         gtk_box_pack_start (GTK_BOX (vbox), GTK_WIDGET (align), TRUE, TRUE, 0);
411         gtk_widget_show (vbox);
412
413         g_signal_connect (G_OBJECT (priv->treeview), "row-activated", G_CALLBACK (on_row_activated), self);
414
415         /* When this window is shown, hibernation should not be possible, 
416          * because there is no sensible way to save the state: */
417         mgr = modest_runtime_get_window_mgr ();
418         modest_window_mgr_prevent_hibernation_while_window_is_shown (mgr, 
419                                                                      GTK_WINDOW (self)); 
420
421         /* Set window title */
422         gtk_window_set_title (GTK_WINDOW (self), _("mcen_ti_optionalsmtp_servers"));
423
424         g_signal_connect (self, "response", G_CALLBACK (on_response), NULL);
425 }
426
427 ModestConnectionSpecificSmtpWindow*
428 modest_connection_specific_smtp_window_new (void)
429 {
430         return g_object_new (MODEST_TYPE_CONNECTION_SPECIFIC_SMTP_WINDOW, NULL);
431 }
432
433 /** The application should call this when the user changes should be saved.
434  */
435 gboolean
436 modest_connection_specific_smtp_window_save_server_accounts (ModestConnectionSpecificSmtpWindow *self)
437 {
438         ModestAccountMgr *mgr = modest_runtime_get_account_mgr ();
439         ModestConnectionSpecificSmtpWindowPrivate *priv = 
440                 CONNECTION_SPECIFIC_SMTP_WINDOW_GET_PRIVATE (self);
441
442
443         /* Get the first iter in the list */
444         GtkTreeIter iter;
445         gboolean valid = gtk_tree_model_get_iter_first (priv->model, &iter);
446
447         /* Walk through the list, reading each row */
448         while (valid) {
449                 gchar *id = NULL;
450                 gchar *connection_name = NULL;
451                 gchar *server_account_name = NULL;
452                 gchar *server_name = NULL;
453                 ModestServerAccountSettings *server_settings = NULL;
454
455                 gtk_tree_model_get (priv->model, &iter, 
456                                     MODEL_COL_ID, &id, 
457                                     MODEL_COL_NAME, &connection_name, 
458                                     MODEL_COL_SERVER_NAME, &server_name,
459                                     MODEL_COL_SERVER_ACCOUNT_NAME, &server_account_name,
460                                     MODEL_COL_SERVER_ACCOUNT_SETTINGS, &server_settings,
461                                     -1);
462  
463                 gboolean success = TRUE;
464                 if (id && server_settings) { /* The presence of data suggests that there is something to save. */
465                         if (!server_account_name) {
466                                 /* Add a new server account, building a (non-human-visible) name: */
467                                 gchar *name_start = g_strdup_printf("specific_%s", connection_name);
468                                 server_account_name = modest_account_mgr_get_unused_account_name (
469                                         priv->account_manager, name_start, TRUE /* server account. */);
470                                 g_assert (server_account_name);
471                                 g_free (name_start);
472
473                                 modest_server_account_settings_set_account_name (server_settings, server_account_name);
474                                 success = modest_account_mgr_save_server_settings (mgr, server_settings);
475                                 if (success) {
476                                         TnyAccount *account = TNY_ACCOUNT (modest_tny_account_store_new_connection_specific_transport_account 
477                                                                            (modest_runtime_get_account_store (),
478                                                                             server_account_name));
479                                         if (account)
480                                                 g_object_unref (account);
481                                 }
482
483                                 /* associate the specific server account with this connection for this account: */
484                                 success = success && modest_account_mgr_set_connection_specific_smtp (
485                                         priv->account_manager, id, server_account_name);
486
487                                 /* Save the new name in the treemodel, so it can be edited again later: */
488                                 gtk_list_store_set (GTK_LIST_STORE (priv->model), &iter, 
489                                         MODEL_COL_SERVER_ACCOUNT_NAME, server_account_name, -1);
490
491                         } else {
492                                 /* If the account already exists then update it and notify */
493                                 modest_account_mgr_save_server_settings (mgr, server_settings);
494                         }
495                 } else if (id && server_name && 
496                            !strcmp (server_name, _("mcen_ia_optionalsmtp_notdefined"))) {
497                         modest_account_mgr_remove_connection_specific_smtp (priv->account_manager, 
498                                                                             id);
499                         gtk_list_store_set (GTK_LIST_STORE (priv->model), &iter, 
500                                             MODEL_COL_SERVER_ACCOUNT_NAME, NULL, -1);
501                 }
502
503                 g_free (connection_name);
504                 g_free (id);
505                 g_free (server_account_name);
506                 g_free (server_name);
507
508                 if (!success)
509                         return FALSE;
510
511                 /* Get next row: */
512                 valid = gtk_tree_model_iter_next (priv->model, &iter);
513         }
514
515         update_model_server_names (self);
516
517         return TRUE;
518 }
519
520 static void
521 update_model_server_names (ModestConnectionSpecificSmtpWindow *self)
522 {
523         ModestConnectionSpecificSmtpWindowPrivate *priv = CONNECTION_SPECIFIC_SMTP_WINDOW_GET_PRIVATE (self);
524
525         GtkTreeIter iter;
526         gboolean valid = gtk_tree_model_get_iter_first (priv->model, &iter);
527         while (valid) {
528
529                 gchar *server_account_name = NULL;
530                 ModestServerAccountSettings *server_settings = NULL;
531                 gtk_tree_model_get (priv->model, &iter, 
532                                     MODEL_COL_SERVER_ACCOUNT_NAME, &server_account_name,
533                                     MODEL_COL_SERVER_ACCOUNT_SETTINGS, &server_settings,
534                                     -1);
535                 if (server_settings && modest_server_account_settings_get_hostname (server_settings)
536                     && (modest_server_account_settings_get_hostname (server_settings) [0] != '\0')) {
537                         gtk_list_store_set (GTK_LIST_STORE (priv->model), &iter, 
538                                             MODEL_COL_SERVER_NAME, modest_server_account_settings_get_hostname (server_settings),
539                                             -1);
540                 } else if (server_account_name) {
541
542                         /* Get the server hostname and show it in the treemodel: */
543                         gchar *hostname = modest_account_mgr_get_server_account_hostname (priv->account_manager,
544                                                                                           server_account_name);
545                         gtk_list_store_set (GTK_LIST_STORE (priv->model), &iter,
546                                             MODEL_COL_SERVER_NAME, hostname,
547                                             -1);
548                         g_free (hostname);
549                 } else {
550                         gtk_list_store_set (GTK_LIST_STORE (priv->model), &iter,
551                                             MODEL_COL_SERVER_NAME, _("mcen_ia_optionalsmtp_notdefined"),
552                                             -1);
553                 }
554
555                 /* Get next row: */
556                 valid = gtk_tree_model_iter_next (priv->model, &iter);
557         }
558 }
559
560 static void
561 on_response (GtkDialog *dialog,
562              gint response,
563              gpointer user_data)
564 {
565         modest_connection_specific_smtp_window_save_server_accounts (MODEST_CONNECTION_SPECIFIC_SMTP_WINDOW (dialog));
566         gtk_widget_destroy (GTK_WIDGET (dialog));
567 }