9e61d4301814bfcb88c014b62cfd4beeed26441e
[modest] / src / maemo / easysetup / modest-easysetup-wizard-dialog.c
1
2 /* Copyright (c) 2006, Nokia Corporation
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions are
7  * met:
8  *
9  * * Redistributions of source code must retain the above copyright
10  *   notice, this list of conditions and the following disclaimer.
11  * * Redistributions in binary form must reproduce the above copyright
12  *   notice, this list of conditions and the following disclaimer in the
13  *   documentation and/or other materials provided with the distribution.
14  * * Neither the name of the Nokia Corporation nor the names of its
15  *   contributors may be used to endorse or promote products derived from
16  *   this software without specific prior written permission.
17  *
18  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
19  * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
20  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
21  * PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
22  * OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
23  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
24  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
25  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
26  * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
27  * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
28  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29  */
30  
31 #include <config.h>
32 #include "modest-easysetup-wizard-dialog.h"
33 #include <glib/gi18n.h>
34 #include <gtk/gtknotebook.h>
35 #include <gtk/gtkvbox.h>
36 #include <gtk/gtklabel.h>
37 #include <gtk/gtkcombobox.h>
38 #include <gtk/gtkentry.h>
39 #include <gtk/gtkbutton.h>
40 #include <gtk/gtkcheckbutton.h>
41 #include <gtk/gtkmessagedialog.h>
42 #include <gtk/gtkseparator.h>
43 #include "maemo/easysetup/modest-easysetup-country-combo-box.h"
44 #include "maemo/easysetup/modest-easysetup-provider-combo-box.h"
45 #include "maemo/easysetup/modest-easysetup-servertype-combo-box.h"
46 #include "widgets/modest-validating-entry.h"
47 #include "modest-text-utils.h"
48 #include "modest-conf.h"
49 #include "modest-defs.h"
50 #include "modest-account-mgr.h"
51 #include "modest-signal-mgr.h"
52 #include "modest-account-mgr-helpers.h"
53 #include "modest-runtime.h" /* For modest_runtime_get_account_mgr(). */
54 #include "maemo/modest-connection-specific-smtp-window.h"
55 #include "widgets/modest-ui-constants.h"
56 #include "widgets/modest-default-account-settings-dialog.h"
57 #include "widgets/modest-easysetup-wizard-page.h"
58 #include "maemo/modest-maemo-utils.h"
59 #include "modest-utils.h"
60 #include "maemo/modest-hildon-includes.h"
61 #include "maemo/modest-maemo-security-options-view.h"
62 #include <modest-account-protocol.h>
63
64 /* Include config.h so that _() works: */
65 #ifdef HAVE_CONFIG_H
66 #include <config.h>
67 #endif
68
69 G_DEFINE_TYPE (ModestEasysetupWizardDialog, modest_easysetup_wizard_dialog, MODEST_TYPE_WIZARD_DIALOG);
70
71 #define MODEST_EASYSETUP_WIZARD_DIALOG_GET_PRIVATE(o) (G_TYPE_INSTANCE_GET_PRIVATE ((o), \
72                                                     MODEST_TYPE_EASYSETUP_WIZARD_DIALOG, \
73                                                     ModestEasysetupWizardDialogPrivate))
74
75 typedef struct _ModestEasysetupWizardDialogPrivate ModestEasysetupWizardDialogPrivate;
76
77
78 typedef enum {
79         MODEST_EASYSETUP_WIZARD_DIALOG_INCOMING_CHANGED = 0x01,
80         MODEST_EASYSETUP_WIZARD_DIALOG_OUTGOING_CHANGED = 0x02
81 } ModestEasysetupWizardDialogServerChanges;
82
83 struct _ModestEasysetupWizardDialogPrivate
84 {
85         ModestPresets *presets;
86
87         /* Remember what fields the user edited manually to not prefill them
88          * again. */
89         ModestEasysetupWizardDialogServerChanges server_changes;
90         
91         /* Check if the user changes a field to show a confirmation dialog */
92         gboolean dirty;
93
94         /* If we have a pending load of settings or not. */
95         gboolean pending_load_settings;
96         
97         /* Used by derived widgets to query existing accounts,
98          * and to create new accounts: */
99         ModestAccountMgr *account_manager;
100         ModestAccountSettings *settings;
101         
102         /* notebook pages: */
103         GtkWidget *page_welcome;
104         
105         GtkWidget *page_account_details;
106         GtkWidget *combo_account_country;
107         GtkWidget *combo_account_serviceprovider;
108         GtkWidget *entry_account_title;
109         
110         GtkWidget *page_user_details;
111         GtkWidget *entry_user_name;
112         GtkWidget *entry_user_username;
113         GtkWidget *entry_user_password;
114         GtkWidget *entry_user_email;
115         
116         GtkWidget *page_complete_easysetup;
117         
118         GtkWidget *page_custom_incoming;
119         GtkWidget *combo_incoming_servertype;
120         GtkWidget *caption_incoming;
121         GtkWidget *entry_incomingserver;
122
123         /* Security widgets */
124         GtkWidget *incoming_security;
125         GtkWidget *outgoing_security;
126
127         GtkWidget *page_custom_outgoing;
128         GtkWidget *entry_outgoingserver;
129         GtkWidget *combo_outgoing_security;
130         GtkWidget *combo_outgoing_auth;
131         GtkWidget *checkbox_outgoing_smtp_specific;
132         GtkWidget *button_outgoing_smtp_servers;
133         
134         GtkWidget *page_complete_customsetup;
135
136         ModestProtocolType last_plugin_protocol_selected;
137         GSList *missing_data_signals;
138 };
139
140 static void save_to_settings (ModestEasysetupWizardDialog *self);
141 static void real_enable_buttons (ModestWizardDialog *dialog, gboolean enable_next);
142
143 static gboolean
144 on_delete_event (GtkWidget *widget,
145                  GdkEvent *event,
146                  ModestEasysetupWizardDialog *wizard)
147 {
148         gtk_dialog_response (GTK_DIALOG (wizard), GTK_RESPONSE_CANCEL);
149         return TRUE;
150 }
151
152 static void
153 on_easysetup_changed(GtkWidget* widget, ModestEasysetupWizardDialog* wizard)
154 {
155         ModestEasysetupWizardDialogPrivate* priv = MODEST_EASYSETUP_WIZARD_DIALOG_GET_PRIVATE(wizard);
156         g_return_if_fail (priv != NULL);
157         priv->dirty = TRUE;
158 }
159
160 static void
161 modest_easysetup_wizard_dialog_dispose (GObject *object)
162 {
163         if (G_OBJECT_CLASS (modest_easysetup_wizard_dialog_parent_class)->dispose)
164                 G_OBJECT_CLASS (modest_easysetup_wizard_dialog_parent_class)->dispose (object);
165 }
166
167 static void
168 modest_easysetup_wizard_dialog_finalize (GObject *object)
169 {
170         ModestEasysetupWizardDialog *self = MODEST_EASYSETUP_WIZARD_DIALOG (object);
171         ModestEasysetupWizardDialogPrivate *priv = MODEST_EASYSETUP_WIZARD_DIALOG_GET_PRIVATE (self);
172         
173         if (priv->account_manager)
174                 g_object_unref (G_OBJECT (priv->account_manager));
175                 
176         if (priv->presets)
177                 modest_presets_destroy (priv->presets);
178
179         if (priv->settings)
180                 g_object_unref (priv->settings);
181
182         if (priv->missing_data_signals) {
183                 modest_signal_mgr_disconnect_all_and_destroy (priv->missing_data_signals);
184                 priv->missing_data_signals = NULL;
185         }
186                 
187         G_OBJECT_CLASS (modest_easysetup_wizard_dialog_parent_class)->finalize (object);
188 }
189
190 static void
191 create_subsequent_easysetup_pages (ModestEasysetupWizardDialog *self);
192
193 static void
194 set_default_custom_servernames(ModestEasysetupWizardDialog *dialog);
195
196 static void on_combo_servertype_changed(GtkComboBox *combobox, gpointer user_data);
197
198 static gint 
199 get_port_from_protocol (ModestProtocolType server_type,
200                         gboolean alternate_port)
201 {
202         int server_port = 0;
203         ModestProtocol *protocol;
204         ModestProtocolRegistry *protocol_registry;
205
206         protocol_registry = modest_runtime_get_protocol_registry ();
207         protocol = modest_protocol_registry_get_protocol_by_type (protocol_registry, server_type);
208
209         if (alternate_port) {
210                 server_port = modest_account_protocol_get_alternate_port (MODEST_ACCOUNT_PROTOCOL (protocol));
211         } else {
212                 server_port = modest_account_protocol_get_port (MODEST_ACCOUNT_PROTOCOL (protocol));
213         }
214         return server_port;
215 }
216
217 /* static GList*  */
218 /* check_for_supported_auth_methods (ModestEasysetupWizardDialog* self) */
219 /* { */
220 /*      GError *error = NULL; */
221 /*      ModestProtocolType protocol_type; */
222 /*      const gchar* hostname; */
223 /*      const gchar* username; */
224 /*      ModestProtocolType security_protocol_incoming_type; */
225 /*      ModestProtocolRegistry *registry; */
226 /*      int port_num;  */
227 /*      GList *list_auth_methods; */
228 /*      ModestEasysetupWizardDialogPrivate *priv; */
229         
230 /*      priv = MODEST_EASYSETUP_WIZARD_DIALOG_GET_PRIVATE (self); */
231 /*      registry = modest_runtime_get_protocol_registry (); */
232 /*      protocol_type = easysetup_servertype_combo_box_get_active_servertype ( */
233 /*              EASYSETUP_SERVERTYPE_COMBO_BOX (priv->combo_incoming_servertype)); */
234 /*      hostname = gtk_entry_get_text(GTK_ENTRY(priv->entry_incomingserver)); */
235 /*      username = gtk_entry_get_text(GTK_ENTRY(priv->entry_user_username)); */
236 /*      security_protocol_incoming_type = modest_serversecurity_combo_box_get_active_serversecurity */
237 /*              (MODEST_SERVERSECURITY_COMBO_BOX (priv->combo_incoming_security)); */
238 /*      port_num = get_port_from_protocol(protocol_type, FALSE);  */
239 /*      list_auth_methods = modest_utils_get_supported_secure_authentication_methods (protocol_type, hostname, port_num,  */
240 /*                                                                                    username, GTK_WINDOW (self), &error); */
241
242 /*      if (list_auth_methods) { */
243 /*              /\* TODO: Select the correct method *\/ */
244 /*              GList* list = NULL; */
245 /*              GList* method; */
246 /*              for (method = list_auth_methods; method != NULL; method = g_list_next(method)) { */
247 /*                      ModestProtocolType auth_protocol_type = (ModestProtocolType) (GPOINTER_TO_INT(method->data)); */
248 /*                      if (modest_protocol_registry_protocol_type_has_tag (registry, auth_protocol_type, */
249 /*                                                                          MODEST_PROTOCOL_REGISTRY_SECURE_PROTOCOLS)) { */
250 /*                              list = g_list_append(list, GINT_TO_POINTER(auth_protocol_type)); */
251 /*                      } */
252 /*              } */
253
254 /*              g_list_free(list_auth_methods); */
255
256 /*              if (list) */
257 /*                      return list; */
258 /*      } */
259
260 /*      if(error == NULL || error->domain != modest_utils_get_supported_secure_authentication_error_quark() || */
261 /*                      error->code != MODEST_UTILS_GET_SUPPORTED_SECURE_AUTHENTICATION_ERROR_CANCELED) */
262 /*      { */
263 /*              modest_platform_information_banner (GTK_WIDGET(self), NULL, */
264 /*                                                  _("mcen_ib_unableto_discover_auth_methods")); */
265 /*      } */
266
267 /*      if(error != NULL) */
268 /*              g_error_free(error); */
269
270 /*      return NULL; */
271 /* } */
272
273 /* static gboolean check_has_supported_auth_methods(ModestEasysetupWizardDialog* self) */
274 /* { */
275 /*      GList* methods = check_for_supported_auth_methods(self); */
276 /*      if (!methods) */
277 /*      { */
278 /*              return FALSE; */
279 /*      } */
280
281 /*      g_list_free(methods); */
282 /*      return TRUE; */
283 /* } */
284
285 /* static ModestProtocolType check_first_supported_auth_method(ModestEasysetupWizardDialog* self) */
286 /* { */
287 /*      ModestProtocolType result; */
288
289 /*      result = MODEST_PROTOCOLS_AUTH_PASSWORD; */
290
291 /*      GList* methods = check_for_supported_auth_methods(self); */
292 /*      if (methods) */
293 /*      { */
294 /*              /\* Use the first one: *\/ */
295 /*              result = (ModestProtocolType) (GPOINTER_TO_INT(methods->data)); */
296 /*              g_list_free(methods); */
297 /*      } */
298
299 /*      return result; */
300 /* } */
301
302 static void
303 invoke_enable_buttons_vfunc (ModestEasysetupWizardDialog *wizard_dialog)
304 {
305         ModestWizardDialogClass *klass = MODEST_WIZARD_DIALOG_GET_CLASS (wizard_dialog);
306         
307         /* Call the vfunc, which may be overridden by derived classes: */
308         if (klass->enable_buttons) {
309                 GtkNotebook *notebook = NULL;
310                 g_object_get (wizard_dialog, "wizard-notebook", &notebook, NULL);
311                 
312                 const gint current_page_num = gtk_notebook_get_current_page (notebook);
313                 if (current_page_num == -1)
314                         return;
315                         
316                 GtkWidget* current_page_widget = gtk_notebook_get_nth_page (notebook, current_page_num);
317                 (*(klass->enable_buttons))(MODEST_WIZARD_DIALOG (wizard_dialog), current_page_widget);
318         }
319 }
320
321 static void
322 on_caption_entry_changed (GtkEditable *editable, gpointer user_data)
323 {
324         ModestEasysetupWizardDialog *self = MODEST_EASYSETUP_WIZARD_DIALOG (user_data);
325         g_assert(self);
326         invoke_enable_buttons_vfunc(self);
327 }
328
329 static void
330 on_caption_combobox_changed (GtkComboBox *widget, gpointer user_data)
331 {
332         ModestEasysetupWizardDialog *self = MODEST_EASYSETUP_WIZARD_DIALOG (user_data);
333         g_assert(self);
334         invoke_enable_buttons_vfunc(self);
335 }
336
337 /** This is a convenience function to create a caption containing a mandatory widget.
338  * When the widget is edited, the enable_buttons() vfunc will be called.
339  */
340 static GtkWidget* 
341 create_caption_new_with_asterisk (ModestEasysetupWizardDialog *self,
342                                   GtkSizeGroup *group,
343                                   const gchar *value,
344                                   GtkWidget *control,
345                                   GtkWidget *icon,
346                                   HildonCaptionStatus flag)
347 {
348         GtkWidget *caption = NULL;
349   
350         /* Note: Previously, the translated strings already contained the "*",
351          * Comment out this code if they do again.
352          */
353         /* Add a * character to indicate mandatory fields,
354          * as specified in our "Email UI Specification": */
355         if (flag == HILDON_CAPTION_MANDATORY) {
356                 gchar* title = g_strdup_printf("%s*", value);
357                 caption = hildon_caption_new (group, title, control, icon, flag);       
358                 g_free(title);
359         }       
360         else
361                 caption = hildon_caption_new (group, value, control, icon, flag);
362
363         /* Connect to the appropriate changed signal for the widget, 
364          * so we can ask for the prev/next buttons to be enabled/disabled appropriately:
365          */
366         if (GTK_IS_ENTRY (control)) {
367                 g_signal_connect (G_OBJECT (control), "changed",
368                                   G_CALLBACK (on_caption_entry_changed), self);
369                 
370         }
371         else if (GTK_IS_COMBO_BOX (control)) {
372                 g_signal_connect (G_OBJECT (control), "changed",
373                                   G_CALLBACK (on_caption_combobox_changed), self);
374         }
375          
376         return caption;
377 }
378            
379 static GtkWidget*
380 create_page_welcome (ModestEasysetupWizardDialog *self)
381 {
382         GtkWidget *box = gtk_vbox_new (FALSE, MODEST_MARGIN_NONE);
383         GtkWidget *label = gtk_label_new(_("mcen_ia_emailsetup_intro"));
384         gtk_label_set_line_wrap (GTK_LABEL (label), TRUE);
385         /* So that it is not truncated: */
386         gtk_widget_set_size_request (label, 600, -1);
387         gtk_box_pack_start (GTK_BOX (box), label, FALSE, FALSE, 0);
388         gtk_widget_show (label);
389         gtk_widget_show (GTK_WIDGET (box));
390         return GTK_WIDGET (box);
391 }
392
393 #if MODEST_HILDON_API < 2
394 static void
395 on_combo_account_country (GtkComboBox *widget, gpointer user_data)
396 #else
397 static void
398 on_combo_account_country (HildonTouchSelector *widget, gint column, gpointer user_data)
399 #endif
400 {
401         ModestEasysetupWizardDialog *self = MODEST_EASYSETUP_WIZARD_DIALOG (user_data);
402         g_assert(self);
403         ModestEasysetupWizardDialogPrivate *priv = MODEST_EASYSETUP_WIZARD_DIALOG_GET_PRIVATE (self);
404         
405         priv->dirty = TRUE;
406         
407         /* Fill the providers combo, based on the selected country: */
408         if (priv->presets != NULL) {
409                 gint mcc = easysetup_country_combo_box_get_active_country_mcc (
410                         MODEST_EASYSETUP_COUNTRY_COMBO_BOX (priv->combo_account_country));
411                 easysetup_provider_combo_box_fill (
412                         EASYSETUP_PROVIDER_COMBO_BOX (priv->combo_account_serviceprovider), priv->presets, mcc);
413         }
414 }
415
416 static void
417 on_combo_account_serviceprovider (GtkComboBox *widget, gpointer user_data)
418 {
419         ModestEasysetupWizardDialog *self = MODEST_EASYSETUP_WIZARD_DIALOG (user_data);
420         g_assert(self);
421         ModestEasysetupWizardDialogPrivate *priv = MODEST_EASYSETUP_WIZARD_DIALOG_GET_PRIVATE (self);
422         
423         priv->dirty = TRUE;
424         
425         /* Fill the providers combo, based on the selected country: */
426         gchar* provider_id = easysetup_provider_combo_box_get_active_provider_id (
427                 EASYSETUP_PROVIDER_COMBO_BOX (priv->combo_account_serviceprovider));
428         
429         gchar* domain_name = NULL;
430         if(provider_id)
431                 domain_name = modest_presets_get_domain (priv->presets, provider_id);
432         
433         if(!domain_name)
434                 domain_name = g_strdup (MODEST_EXAMPLE_EMAIL_ADDRESS);
435                 
436         if (priv->entry_user_email)
437                 gtk_entry_set_text (GTK_ENTRY (priv->entry_user_email), domain_name);
438                 
439         g_free (domain_name);
440         
441         g_free (provider_id);
442 }
443
444 static void
445 on_entry_max (ModestValidatingEntry *self, gpointer user_data)
446 {
447         modest_platform_information_banner (GTK_WIDGET (self), NULL,
448                                             _CS("ckdg_ib_maximum_characters_reached"));
449 }
450
451 static GtkWidget*
452 create_page_account_details (ModestEasysetupWizardDialog *self)
453 {
454         GtkWidget *box = gtk_vbox_new (FALSE, MODEST_MARGIN_NONE);
455         GtkWidget *label = gtk_label_new(_("mcen_ia_accountdetails"));
456         ModestEasysetupWizardDialogPrivate* priv = MODEST_EASYSETUP_WIZARD_DIALOG_GET_PRIVATE(self);
457
458         gtk_label_set_line_wrap (GTK_LABEL (label), TRUE);
459         gtk_widget_set_size_request (label, 600, -1);
460         gtk_box_pack_start (GTK_BOX (box), label, FALSE, FALSE, MODEST_MARGIN_HALF);
461         gtk_widget_show (label);
462
463         /* Create a size group to be used by all captions.
464          * Note that HildonCaption does not create a default size group if we do not specify one.
465          * We use GTK_SIZE_GROUP_HORIZONTAL, so that the widths are the same. */
466         GtkSizeGroup* sizegroup = gtk_size_group_new(GTK_SIZE_GROUP_HORIZONTAL);
467
468         /* The country widgets: */
469         priv->combo_account_country = GTK_WIDGET (easysetup_country_combo_box_new ());
470         GtkWidget *caption = create_caption_new_with_asterisk (self, sizegroup, _("mcen_fi_country"), 
471                                                               priv->combo_account_country, NULL, HILDON_CAPTION_OPTIONAL);
472         gtk_widget_show (priv->combo_account_country);
473         gtk_box_pack_start (GTK_BOX (box), caption, FALSE, FALSE, MODEST_MARGIN_HALF);
474         gtk_widget_show (caption);
475         
476         /* connect to country combo's changed signal, so we can fill the provider combo: */
477 #if MODEST_HILDON_API < 2
478         g_signal_connect (G_OBJECT (priv->combo_account_country), "changed",
479                           G_CALLBACK (on_combo_account_country), self);
480 #else
481         g_signal_connect (G_OBJECT (hildon_picker_button_get_selector 
482                                     (HILDON_PICKER_BUTTON (priv->combo_account_country))),
483                           "changed",
484                           G_CALLBACK (on_combo_account_country), self);
485 #endif
486             
487         GtkWidget *separator = gtk_hseparator_new ();
488         gtk_box_pack_start (GTK_BOX (box), separator, FALSE, FALSE, MODEST_MARGIN_HALF);
489         gtk_widget_show (separator);
490             
491         /* The service provider widgets: */     
492         priv->combo_account_serviceprovider = GTK_WIDGET (easysetup_provider_combo_box_new ());
493         gtk_widget_set_size_request (priv->combo_account_serviceprovider, 320, -1);
494         
495         caption = create_caption_new_with_asterisk (self, sizegroup, _("mcen_fi_serviceprovider"), 
496                                                    priv->combo_account_serviceprovider, NULL, HILDON_CAPTION_OPTIONAL);
497         gtk_widget_show (priv->combo_account_serviceprovider);
498         gtk_box_pack_start (GTK_BOX (box), caption, FALSE, FALSE, MODEST_MARGIN_HALF);
499         gtk_widget_show (caption);
500         
501         /* connect to providers combo's changed signal, so we can fill the email address: */
502         g_signal_connect (G_OBJECT (priv->combo_account_serviceprovider), "changed",
503                           G_CALLBACK (on_combo_account_serviceprovider), self);
504         
505         /* The description widgets: */  
506         priv->entry_account_title = GTK_WIDGET (modest_validating_entry_new ());
507         g_signal_connect(G_OBJECT(priv->entry_account_title), "changed",
508                          G_CALLBACK(on_easysetup_changed), self);
509         /* Do use auto-capitalization: */
510         hildon_gtk_entry_set_input_mode (GTK_ENTRY (priv->entry_account_title), 
511                                          HILDON_GTK_INPUT_MODE_FULL | HILDON_GTK_INPUT_MODE_AUTOCAP);
512         
513         /* Set a default account title, choosing one that does not already exist: */
514         /* Note that this is irrelevant to the non-user visible name, which we will create later. */
515         gchar* default_account_name_start = g_strdup (_("mcen_ia_emailsetup_defaultname"));
516         gchar* default_account_name = modest_account_mgr_get_unused_account_display_name (
517                 priv->account_manager, default_account_name_start);
518         g_free (default_account_name_start);
519         default_account_name_start = NULL;
520         
521         gtk_entry_set_text( GTK_ENTRY (priv->entry_account_title), default_account_name);
522         g_free (default_account_name);
523         default_account_name = NULL;
524
525         caption = create_caption_new_with_asterisk (self, sizegroup, _("mcen_fi_account_title"), 
526                                                    priv->entry_account_title, NULL, HILDON_CAPTION_MANDATORY);
527         gtk_widget_show (priv->entry_account_title);
528         gtk_box_pack_start (GTK_BOX (box), caption, FALSE, FALSE, MODEST_MARGIN_HALF);
529         gtk_widget_show (caption);
530         
531         /* Prevent the use of some characters in the account title, 
532          * as required by our UI specification: */
533         GList *list_prevent = NULL;
534         list_prevent = g_list_append (list_prevent, "\\");
535         list_prevent = g_list_append (list_prevent, "/");
536         list_prevent = g_list_append (list_prevent, ":");
537         list_prevent = g_list_append (list_prevent, "*");
538         list_prevent = g_list_append (list_prevent, "?");
539         list_prevent = g_list_append (list_prevent, "\""); /* The UI spec mentions â€œ, but maybe means ", maybe both. */
540         list_prevent = g_list_append (list_prevent, "“");
541         list_prevent = g_list_append (list_prevent, "<"); 
542         list_prevent = g_list_append (list_prevent, ">"); 
543         list_prevent = g_list_append (list_prevent, "|");
544         list_prevent = g_list_append (list_prevent, "^");       
545         modest_validating_entry_set_unallowed_characters (
546                 MODEST_VALIDATING_ENTRY (priv->entry_account_title), list_prevent);
547         g_list_free (list_prevent);
548         list_prevent = NULL;
549         modest_validating_entry_set_func(MODEST_VALIDATING_ENTRY(priv->entry_account_title),
550                                                                                                                                          modest_utils_on_entry_invalid_character, self);
551         
552         /* Set max length as in the UI spec:
553          * The UI spec seems to want us to show a dialog if we hit the maximum. */
554         gtk_entry_set_max_length (GTK_ENTRY (priv->entry_account_title), 64);
555         modest_validating_entry_set_max_func (MODEST_VALIDATING_ENTRY (priv->entry_account_title), 
556                                               on_entry_max, self);
557         
558         gtk_widget_show (GTK_WIDGET (box));
559         
560         return GTK_WIDGET (box);
561 }
562
563 static GtkWidget*
564 create_page_user_details (ModestEasysetupWizardDialog *self)
565 {
566         GtkSizeGroup* sizegroup;
567         GtkWidget *box;
568         ModestEasysetupWizardDialogPrivate *priv;
569
570         priv = MODEST_EASYSETUP_WIZARD_DIALOG_GET_PRIVATE(self);
571         
572         /* Create a size group to be used by all captions.
573          * Note that HildonCaption does not create a default size group if we do not specify one.
574          * We use GTK_SIZE_GROUP_HORIZONTAL, so that the widths are the same. */
575         box = gtk_vbox_new (FALSE, MODEST_MARGIN_NONE);
576         sizegroup = gtk_size_group_new(GTK_SIZE_GROUP_HORIZONTAL);
577          
578         /* The name widgets: (use auto cap) */
579         priv->entry_user_name = GTK_WIDGET (modest_validating_entry_new ());
580         hildon_gtk_entry_set_input_mode (GTK_ENTRY (priv->entry_user_name), 
581                                          HILDON_GTK_INPUT_MODE_FULL | HILDON_GTK_INPUT_MODE_AUTOCAP);
582         
583         /* Set max length as in the UI spec:
584          * The UI spec seems to want us to show a dialog if we hit the maximum. */
585         gtk_entry_set_max_length (GTK_ENTRY (priv->entry_user_name), 64);
586         modest_validating_entry_set_max_func (MODEST_VALIDATING_ENTRY (priv->entry_user_name), 
587                                               on_entry_max, self);
588         GtkWidget *caption = create_caption_new_with_asterisk (self, sizegroup, 
589                                                               _("mcen_li_emailsetup_name"), priv->entry_user_name, NULL, HILDON_CAPTION_OPTIONAL);
590         g_signal_connect(G_OBJECT(priv->entry_user_name), "changed", 
591                          G_CALLBACK(on_easysetup_changed), self);
592         gtk_widget_show (priv->entry_user_name);
593         gtk_box_pack_start (GTK_BOX (box), caption, FALSE, FALSE, MODEST_MARGIN_HALF);
594         gtk_widget_show (caption);
595         
596         /* Prevent the use of some characters in the name, 
597          * as required by our UI specification: */
598         GList *list_prevent = NULL;
599         list_prevent = g_list_append (list_prevent, "<");
600         list_prevent = g_list_append (list_prevent, ">");
601         modest_validating_entry_set_unallowed_characters (
602                 MODEST_VALIDATING_ENTRY (priv->entry_user_name), list_prevent);
603         modest_validating_entry_set_func(MODEST_VALIDATING_ENTRY(priv->entry_user_name),
604                 modest_utils_on_entry_invalid_character, self);
605         g_list_free (list_prevent);
606         
607         /* The username widgets: */     
608         priv->entry_user_username = GTK_WIDGET (modest_validating_entry_new ());
609         /* Auto-capitalization is the default, so let's turn it off: */
610         hildon_gtk_entry_set_input_mode (GTK_ENTRY (priv->entry_user_username), 
611                                          HILDON_GTK_INPUT_MODE_FULL);
612         caption = create_caption_new_with_asterisk (self, sizegroup, _("mail_fi_username"), 
613                                                    priv->entry_user_username, 
614                                                     NULL, HILDON_CAPTION_MANDATORY);
615         gtk_widget_show (priv->entry_user_username);
616         gtk_box_pack_start (GTK_BOX (box), caption, FALSE, FALSE, MODEST_MARGIN_HALF);
617         g_signal_connect(G_OBJECT(priv->entry_user_username), "changed", 
618                          G_CALLBACK(on_easysetup_changed), self);
619         gtk_widget_show (caption);
620         
621         /* Prevent the use of some characters in the username, 
622          * as required by our UI specification: */
623         modest_validating_entry_set_unallowed_characters_whitespace (
624                 MODEST_VALIDATING_ENTRY (priv->entry_user_username));
625         modest_validating_entry_set_func(MODEST_VALIDATING_ENTRY(priv->entry_user_username),
626                 modest_utils_on_entry_invalid_character, self);
627         
628         /* Set max length as in the UI spec:
629          * The UI spec seems to want us to show a dialog if we hit the maximum. */
630         gtk_entry_set_max_length (GTK_ENTRY (priv->entry_user_username), 64);
631         modest_validating_entry_set_max_func (MODEST_VALIDATING_ENTRY (priv->entry_user_username), 
632                                               on_entry_max, self);
633         
634         /* The password widgets: */     
635         priv->entry_user_password = gtk_entry_new ();
636         /* Auto-capitalization is the default, so let's turn it off: */
637         hildon_gtk_entry_set_input_mode (GTK_ENTRY (priv->entry_user_password), 
638                                          HILDON_GTK_INPUT_MODE_FULL | HILDON_GTK_INPUT_MODE_INVISIBLE);
639         gtk_entry_set_visibility (GTK_ENTRY (priv->entry_user_password), FALSE);
640         /* gtk_entry_set_invisible_char (GTK_ENTRY (priv->entry_user_password), '*'); */
641         caption = create_caption_new_with_asterisk (self, sizegroup, 
642                                                    _("mail_fi_password"), priv->entry_user_password, NULL, HILDON_CAPTION_OPTIONAL);
643         g_signal_connect(G_OBJECT(priv->entry_user_password), "changed", 
644                          G_CALLBACK(on_easysetup_changed), self);
645         gtk_widget_show (priv->entry_user_password);
646         gtk_box_pack_start (GTK_BOX (box), caption, FALSE, FALSE, MODEST_MARGIN_HALF);
647         gtk_widget_show (caption);
648         
649         /* The email address widgets: */        
650         priv->entry_user_email = GTK_WIDGET (modest_validating_entry_new ());
651         /* Auto-capitalization is the default, so let's turn it off: */
652         hildon_gtk_entry_set_input_mode (GTK_ENTRY (priv->entry_user_email), HILDON_GTK_INPUT_MODE_FULL);
653         caption = create_caption_new_with_asterisk (self, sizegroup, 
654                                                    _("mcen_li_emailsetup_email_address"), priv->entry_user_email, NULL, HILDON_CAPTION_MANDATORY);
655         gtk_entry_set_text (GTK_ENTRY (priv->entry_user_email), MODEST_EXAMPLE_EMAIL_ADDRESS); /* Default text. */
656         gtk_widget_show (priv->entry_user_email);
657         gtk_box_pack_start (GTK_BOX (box), caption, FALSE, FALSE, MODEST_MARGIN_HALF);
658         g_signal_connect(G_OBJECT(priv->entry_user_email), "changed", 
659                          G_CALLBACK(on_easysetup_changed), self);
660         gtk_widget_show (caption);
661         
662         /* Set max length as in the UI spec:
663          * The UI spec seems to want us to show a dialog if we hit the maximum. */
664         gtk_entry_set_max_length (GTK_ENTRY (priv->entry_user_email), 64);
665         modest_validating_entry_set_max_func (MODEST_VALIDATING_ENTRY (priv->entry_user_email), 
666                                               on_entry_max, self);
667         
668         
669         gtk_widget_show (GTK_WIDGET (box));
670         
671         return GTK_WIDGET (box);
672 }
673
674 static GtkWidget* 
675 create_page_complete_easysetup (ModestEasysetupWizardDialog *self)
676 {
677         GtkWidget *box = gtk_vbox_new (FALSE, MODEST_MARGIN_NONE);
678         
679         GtkWidget *label = gtk_label_new(_("mcen_ia_emailsetup_setup_complete"));
680         gtk_label_set_line_wrap (GTK_LABEL (label), TRUE);
681         gtk_widget_set_size_request (label, 600, -1);
682         gtk_misc_set_alignment (GTK_MISC (label), 0, 0.5);
683         /* The documentation for gtk_label_set_line_wrap() says that we must 
684          * call gtk_widget_set_size_request() with a hard-coded width, 
685          * though I wonder why gtk_label_set_max_width_chars() isn't enough. */
686         gtk_box_pack_start (GTK_BOX (box), label, FALSE, FALSE, 0);
687         gtk_widget_show (label);
688         
689         label = gtk_label_new (_("mcen_ia_easysetup_complete"));
690         gtk_label_set_line_wrap (GTK_LABEL (label), TRUE);
691         gtk_widget_set_size_request (label, 600, -1);
692         
693         gtk_misc_set_alignment (GTK_MISC (label), 0, 0.5);
694         gtk_box_pack_start (GTK_BOX (box), label, FALSE, FALSE, 0);
695         gtk_widget_show (label);
696         
697         gtk_widget_show (GTK_WIDGET (box));
698         return GTK_WIDGET (box);
699 }
700
701 /** Change the caption title for the incoming server, 
702  * as specified in the UI spec:
703  */
704 static void 
705 update_incoming_server_title (ModestEasysetupWizardDialog *self)
706 {
707         ModestEasysetupWizardDialogPrivate* priv; 
708         ModestProtocolType protocol_type; 
709         ModestProtocolRegistry *protocol_registry;
710
711         priv = MODEST_EASYSETUP_WIZARD_DIALOG_GET_PRIVATE(self);
712         protocol_registry = modest_runtime_get_protocol_registry ();
713         
714         protocol_type = easysetup_servertype_combo_box_get_active_servertype (
715                 EASYSETUP_SERVERTYPE_COMBO_BOX (priv->combo_incoming_servertype));
716
717         /* This could happen when the combo box has still no active iter */
718         if (protocol_type != MODEST_PROTOCOL_REGISTRY_TYPE_INVALID) {
719                 gchar* incomingserver_title;
720                 const gchar *protocol_display_name; 
721
722                 protocol_display_name = modest_protocol_get_display_name (modest_protocol_registry_get_protocol_by_type (protocol_registry, protocol_type));
723                 
724                 incomingserver_title = g_strdup_printf(_("mcen_li_emailsetup_servertype"), protocol_display_name);
725                 g_object_set (G_OBJECT (priv->caption_incoming), "label", incomingserver_title, NULL);
726                 g_free(incomingserver_title);
727         }
728 }
729
730 /** Change the caption title for the incoming server, 
731  * as specified in the UI spec:
732  */
733 static void 
734 update_incoming_server_security_choices (ModestEasysetupWizardDialog *self)
735 {
736         ModestEasysetupWizardDialogPrivate *priv = MODEST_EASYSETUP_WIZARD_DIALOG_GET_PRIVATE(self);
737         EasysetupServertypeComboBox *server_type_combo;
738         ModestProtocolType protocol_type;
739         ModestSecurityOptionsView *view;
740
741         server_type_combo = 
742                 EASYSETUP_SERVERTYPE_COMBO_BOX (priv->combo_incoming_servertype);
743         protocol_type = 
744                 easysetup_servertype_combo_box_get_active_servertype (server_type_combo);
745         
746         /* Fill the combo with appropriately titled choices for all
747            those protocols */
748         view = MODEST_SECURITY_OPTIONS_VIEW (priv->incoming_security);
749         modest_security_options_view_set_server_type (view, protocol_type);
750 }
751
752 static void 
753 on_combo_servertype_changed(GtkComboBox *combobox, gpointer user_data)
754 {
755         ModestEasysetupWizardDialog *self = MODEST_EASYSETUP_WIZARD_DIALOG (user_data);
756         ModestEasysetupWizardDialogPrivate *priv = MODEST_EASYSETUP_WIZARD_DIALOG_GET_PRIVATE(self);
757         EasysetupServertypeComboBox *combo;
758         ModestProtocolType protocol_type;
759
760         priv->dirty = TRUE;
761         
762         /* Update title */
763         update_incoming_server_title (self);
764
765         /* Update security options if needed */
766         combo = EASYSETUP_SERVERTYPE_COMBO_BOX (combobox);
767         protocol_type = easysetup_servertype_combo_box_get_active_servertype (combo);
768         update_incoming_server_security_choices (self);
769         gtk_widget_show (priv->incoming_security);
770
771         set_default_custom_servernames (self);
772 }
773
774 static void 
775 on_entry_incoming_servername_changed(GtkEntry *entry, gpointer user_data)
776 {
777         ModestEasysetupWizardDialog *self = MODEST_EASYSETUP_WIZARD_DIALOG (user_data);
778         ModestEasysetupWizardDialogPrivate *priv = MODEST_EASYSETUP_WIZARD_DIALOG_GET_PRIVATE (self);
779         priv->dirty = TRUE;
780         priv->server_changes |= MODEST_EASYSETUP_WIZARD_DIALOG_INCOMING_CHANGED;
781 }
782
783 static GtkWidget* 
784 create_page_custom_incoming (ModestEasysetupWizardDialog *self)
785 {
786         ModestProtocolRegistry *protocol_registry;
787         ModestEasysetupWizardDialogPrivate* priv; 
788         GtkWidget *box; 
789         GtkWidget *scrolled_window;
790         GtkWidget *label;
791         GtkSizeGroup *sizegroup;
792         GtkWidget *caption;
793
794         priv = MODEST_EASYSETUP_WIZARD_DIALOG_GET_PRIVATE(self);
795         protocol_registry = modest_runtime_get_protocol_registry ();
796
797         box = gtk_vbox_new (FALSE, MODEST_MARGIN_NONE);
798         scrolled_window = gtk_scrolled_window_new (NULL, NULL);
799
800         gtk_scrolled_window_set_policy (GTK_SCROLLED_WINDOW (scrolled_window),
801                                         GTK_POLICY_NEVER,
802                                         GTK_POLICY_AUTOMATIC);
803
804         /* Show note that account type cannot be changed in future: */
805         label = gtk_label_new (_("mcen_ia_emailsetup_account_type"));
806         gtk_label_set_line_wrap (GTK_LABEL (label), TRUE);
807         gtk_widget_set_size_request (label, 600, -1);
808         gtk_box_pack_start (GTK_BOX (box), label, FALSE, FALSE, 0);
809         gtk_widget_show (label);
810         
811         /* Create a size group to be used by all captions.
812          * Note that HildonCaption does not create a default size group if we do not specify one.
813          * We use GTK_SIZE_GROUP_HORIZONTAL, so that the widths are the same. */
814         sizegroup = gtk_size_group_new(GTK_SIZE_GROUP_HORIZONTAL);
815          
816         /* The incoming server widgets: */
817         priv->combo_incoming_servertype = GTK_WIDGET (easysetup_servertype_combo_box_new (TRUE));
818         caption = create_caption_new_with_asterisk (self, sizegroup, 
819                                                     _("mcen_li_emailsetup_type"), priv->combo_incoming_servertype, NULL, HILDON_CAPTION_MANDATORY);
820         gtk_widget_show (priv->combo_incoming_servertype);
821         gtk_box_pack_start (GTK_BOX (box), caption, FALSE, FALSE, MODEST_MARGIN_HALF);
822         gtk_widget_show (caption);
823         
824         priv->entry_incomingserver = gtk_entry_new ();
825         g_signal_connect(G_OBJECT(priv->entry_incomingserver), "changed", G_CALLBACK(on_easysetup_changed), self);
826         /* Auto-capitalization is the default, so let's turn it off: */
827         hildon_gtk_entry_set_input_mode (GTK_ENTRY (priv->entry_incomingserver), HILDON_GTK_INPUT_MODE_FULL);
828         set_default_custom_servernames (self);
829
830         /* The caption title will be updated in update_incoming_server_title().
831          * so this default text will never be seen: */
832         /* (Note: Changing the title seems pointless. murrayc) */
833         priv->caption_incoming = create_caption_new_with_asterisk (self, sizegroup, 
834                                                                   "Incoming Server", 
835                                                                    priv->entry_incomingserver, 
836                                                                    NULL, HILDON_CAPTION_MANDATORY);
837         update_incoming_server_title (self);
838         gtk_widget_show (priv->entry_incomingserver);
839         gtk_box_pack_start (GTK_BOX (box), priv->caption_incoming, FALSE, FALSE, MODEST_MARGIN_HALF);
840         gtk_widget_show (priv->caption_incoming);
841         
842         /* Change the caption title when the servertype changes, 
843          * as in the UI spec: */
844         g_signal_connect (G_OBJECT (priv->combo_incoming_servertype), "changed",
845                           G_CALLBACK (on_combo_servertype_changed), self);
846
847         /* Remember when the servername was changed manually: */
848         g_signal_connect (G_OBJECT (priv->entry_incomingserver), "changed",
849                           G_CALLBACK (on_entry_incoming_servername_changed), self);
850
851         /* The secure connection widgets. These are only valid for
852            protocols with security */   
853         priv->incoming_security = 
854                 modest_maemo_security_options_view_new (MODEST_SECURITY_OPTIONS_INCOMING,
855                                                         FALSE, sizegroup);
856         gtk_box_pack_start (GTK_BOX (box), priv->incoming_security, 
857                             FALSE, FALSE, MODEST_MARGIN_HALF);
858
859         /* Set default selection */
860         easysetup_servertype_combo_box_set_active_servertype (
861                 EASYSETUP_SERVERTYPE_COMBO_BOX (priv->combo_incoming_servertype), 
862                 MODEST_PROTOCOLS_STORE_POP);
863
864         gtk_scrolled_window_add_with_viewport (GTK_SCROLLED_WINDOW (scrolled_window), box);
865         gtk_container_set_focus_vadjustment (GTK_CONTAINER (box),
866                                              gtk_scrolled_window_get_vadjustment (GTK_SCROLLED_WINDOW (scrolled_window)));
867         gtk_widget_show (GTK_WIDGET (box));
868         gtk_widget_show (scrolled_window);
869
870         return GTK_WIDGET (scrolled_window);
871 }
872
873 static void
874 on_toggle_button_changed (GtkToggleButton *togglebutton, gpointer user_data)
875 {
876         GtkWidget *widget = GTK_WIDGET (user_data);
877         
878         /* Enable the widget only if the toggle button is active: */
879         const gboolean enable = gtk_toggle_button_get_active (togglebutton);
880         gtk_widget_set_sensitive (widget, enable);
881 }
882
883 /* Make the sensitivity of a widget depend on a toggle button.
884  */
885 static void
886 enable_widget_for_togglebutton (GtkWidget *widget, GtkToggleButton* button)
887 {
888         g_signal_connect (G_OBJECT (button), "toggled",
889                           G_CALLBACK (on_toggle_button_changed), widget);
890         
891         /* Set the starting sensitivity: */
892         on_toggle_button_changed (button, widget);
893 }
894
895 static void
896 on_button_outgoing_smtp_servers (GtkButton *button, gpointer user_data)
897 {
898         ModestEasysetupWizardDialog * self = MODEST_EASYSETUP_WIZARD_DIALOG (user_data);
899         ModestEasysetupWizardDialogPrivate* priv = MODEST_EASYSETUP_WIZARD_DIALOG_GET_PRIVATE(self);
900         GtkWidget *specific_window;
901         
902         /* We set dirty here because setting it depending on the connection specific dialog
903         seems overkill */
904         priv->dirty = TRUE;
905         
906         /* Create the window, if necessary: */
907         specific_window = (GtkWidget *) modest_connection_specific_smtp_window_new ();
908         modest_connection_specific_smtp_window_fill_with_connections (MODEST_CONNECTION_SPECIFIC_SMTP_WINDOW (specific_window), priv->account_manager);
909
910         /* Show the window */
911         modest_window_mgr_set_modal (modest_runtime_get_window_mgr (), GTK_WINDOW (specific_window));
912         gtk_widget_show (specific_window);
913 }
914
915 static void 
916 on_entry_outgoing_servername_changed (GtkEntry *entry, gpointer user_data)
917 {
918         ModestEasysetupWizardDialog *self = MODEST_EASYSETUP_WIZARD_DIALOG (user_data);
919         ModestEasysetupWizardDialogPrivate *priv = MODEST_EASYSETUP_WIZARD_DIALOG_GET_PRIVATE (self);
920         priv->server_changes |= MODEST_EASYSETUP_WIZARD_DIALOG_OUTGOING_CHANGED;
921 }
922
923 static GtkWidget* 
924 create_page_custom_outgoing (ModestEasysetupWizardDialog *self)
925 {
926         ModestEasysetupWizardDialogPrivate *priv;
927         GtkWidget *box = gtk_vbox_new (FALSE, MODEST_MARGIN_NONE);
928         
929         /* Create a size group to be used by all captions.
930          * Note that HildonCaption does not create a default size group if we do not specify one.
931          * We use GTK_SIZE_GROUP_HORIZONTAL, so that the widths are the same. */
932         GtkSizeGroup *sizegroup = gtk_size_group_new(GTK_SIZE_GROUP_HORIZONTAL);
933          
934         /* The outgoing server widgets: */
935         priv = MODEST_EASYSETUP_WIZARD_DIALOG_GET_PRIVATE (self);
936         priv->entry_outgoingserver = gtk_entry_new ();
937         g_signal_connect (G_OBJECT (priv->entry_outgoingserver), "changed",
938                   G_CALLBACK (on_easysetup_changed), self);
939         /* Auto-capitalization is the default, so let's turn it off: */
940         hildon_gtk_entry_set_input_mode (GTK_ENTRY (priv->entry_outgoingserver), HILDON_GTK_INPUT_MODE_FULL);
941         GtkWidget *caption = create_caption_new_with_asterisk (self, sizegroup, 
942                                                               _("mcen_li_emailsetup_smtp"), priv->entry_outgoingserver, NULL, HILDON_CAPTION_OPTIONAL);
943         gtk_widget_show (priv->entry_outgoingserver);
944         gtk_box_pack_start (GTK_BOX (box), caption, FALSE, FALSE, MODEST_MARGIN_HALF);
945         gtk_widget_show (caption);
946         set_default_custom_servernames (self);
947
948         /* The secure connection widgets. These are only valid for
949            protocols with security */   
950         priv->outgoing_security = 
951                 modest_maemo_security_options_view_new (MODEST_SECURITY_OPTIONS_OUTGOING,
952                                                         FALSE, sizegroup);
953         gtk_box_pack_start (GTK_BOX (box), priv->outgoing_security, 
954                             FALSE, FALSE, MODEST_MARGIN_HALF);
955         gtk_widget_show (priv->outgoing_security);
956         
957         GtkWidget *separator = gtk_hseparator_new ();
958         gtk_box_pack_start (GTK_BOX (box), separator, FALSE, FALSE, MODEST_MARGIN_HALF);
959         gtk_widget_show (separator);
960         
961         /* connection-specific checkbox: */
962         priv->checkbox_outgoing_smtp_specific = gtk_check_button_new ();
963         gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (priv->checkbox_outgoing_smtp_specific), 
964                                       FALSE);
965         g_signal_connect (G_OBJECT (priv->checkbox_outgoing_smtp_specific), "toggled",
966                   G_CALLBACK (on_easysetup_changed), self);
967
968         caption = hildon_caption_new (sizegroup, _("mcen_fi_advsetup_connection_smtp"), 
969                                       priv->checkbox_outgoing_smtp_specific, NULL, HILDON_CAPTION_OPTIONAL);
970         gtk_widget_show (priv->checkbox_outgoing_smtp_specific);
971         gtk_box_pack_start (GTK_BOX (box), caption, FALSE, FALSE, MODEST_MARGIN_HALF);
972         gtk_widget_show (caption);
973         
974         /* Connection-specific SMTP-Severs Edit button: */
975         priv->button_outgoing_smtp_servers = gtk_button_new_with_label (_("mcen_bd_edit"));
976         caption = hildon_caption_new (sizegroup, _("mcen_fi_advsetup_optional_smtp"), 
977                                       priv->button_outgoing_smtp_servers, NULL, HILDON_CAPTION_OPTIONAL);
978         hildon_caption_set_child_expand (HILDON_CAPTION (caption), FALSE);
979         gtk_widget_show (priv->button_outgoing_smtp_servers);
980         gtk_box_pack_start (GTK_BOX (box), caption, FALSE, FALSE, MODEST_MARGIN_HALF);
981         gtk_widget_show (caption);
982         
983         /* Only enable the button when the checkbox is checked: */
984         enable_widget_for_togglebutton (priv->button_outgoing_smtp_servers, 
985                                         GTK_TOGGLE_BUTTON (priv->checkbox_outgoing_smtp_specific));
986                 
987         g_signal_connect (G_OBJECT (priv->button_outgoing_smtp_servers), "clicked",
988                           G_CALLBACK (on_button_outgoing_smtp_servers), self);
989
990         g_signal_connect (G_OBJECT (priv->entry_outgoingserver), "changed",
991                           G_CALLBACK (on_entry_outgoing_servername_changed), self);
992         
993         
994         gtk_widget_show (GTK_WIDGET (box));
995         
996         return GTK_WIDGET (box);
997 }
998
999 static gboolean
1000 show_advanced_edit(gpointer user_data)
1001 {
1002         ModestEasysetupWizardDialog * self = MODEST_EASYSETUP_WIZARD_DIALOG (user_data);
1003         ModestEasysetupWizardDialogPrivate *priv = MODEST_EASYSETUP_WIZARD_DIALOG_GET_PRIVATE (self);
1004         gint response;
1005         
1006         /* Show the Account Settings window: */
1007         ModestAccountSettingsDialog *dialog = modest_default_account_settings_dialog_new ();
1008         if (priv->pending_load_settings) {
1009                 save_to_settings (self);
1010                 priv->pending_load_settings = FALSE;
1011         }
1012         modest_account_settings_dialog_load_settings (dialog, priv->settings);
1013         
1014         modest_window_mgr_set_modal (modest_runtime_get_window_mgr (), GTK_WINDOW (dialog));
1015         
1016         response = gtk_dialog_run (GTK_DIALOG (dialog));
1017
1018         gtk_widget_destroy (GTK_WIDGET (dialog));
1019         
1020         return FALSE; /* Do not call this timeout callback again. */
1021 }
1022
1023 static void
1024 on_button_edit_advanced_settings (GtkButton *button, gpointer user_data)
1025 {
1026         ModestEasysetupWizardDialog * self = MODEST_EASYSETUP_WIZARD_DIALOG (user_data);
1027         
1028         /* Show the Account Settings window: */
1029         show_advanced_edit(self);
1030 }
1031 static GtkWidget* 
1032 create_page_complete_custom (ModestEasysetupWizardDialog *self)
1033 {
1034         GtkWidget *box = gtk_vbox_new (FALSE, MODEST_MARGIN_NONE);
1035         GtkWidget *label = gtk_label_new(_("mcen_ia_emailsetup_setup_complete"));
1036         GtkWidget *button_edit = gtk_button_new_with_label (_("mcen_bd_edit"));
1037         gtk_misc_set_alignment (GTK_MISC (label), 0, 0.5);
1038         gtk_widget_set_size_request (label, 600, -1);
1039         gtk_label_set_line_wrap (GTK_LABEL (label), TRUE);
1040         gtk_box_pack_start (GTK_BOX (box), label, FALSE, FALSE, 0);
1041         gtk_widget_show (label);
1042         
1043         label = gtk_label_new (_("mcen_ia_customsetup_complete"));
1044         gtk_misc_set_alignment (GTK_MISC (label), 0, 0.5);
1045         gtk_widget_set_size_request (label, 600, -1);
1046         gtk_label_set_line_wrap (GTK_LABEL (label), TRUE);
1047         gtk_box_pack_start (GTK_BOX (box), label, FALSE, FALSE, 0);
1048         gtk_widget_show (label);
1049         
1050         GtkWidget *caption = hildon_caption_new (NULL, _("mcen_fi_advanced_settings"), 
1051                                                  button_edit, NULL, HILDON_CAPTION_OPTIONAL);
1052         hildon_caption_set_child_expand (HILDON_CAPTION (caption), FALSE);
1053         gtk_widget_show (button_edit);
1054         gtk_box_pack_start (GTK_BOX (box), caption, FALSE, FALSE, MODEST_MARGIN_HALF);
1055         gtk_widget_show (caption);
1056         
1057         g_signal_connect (G_OBJECT (button_edit), "clicked", 
1058                           G_CALLBACK (on_button_edit_advanced_settings), self);
1059         
1060         gtk_widget_show (GTK_WIDGET (box));
1061         return GTK_WIDGET (box);
1062 }
1063
1064
1065 /*
1066  */
1067 static void 
1068 on_response (ModestWizardDialog *wizard_dialog,
1069              gint response_id,
1070              gpointer user_data)
1071 {
1072         ModestEasysetupWizardDialog *self = MODEST_EASYSETUP_WIZARD_DIALOG (wizard_dialog);
1073
1074         invoke_enable_buttons_vfunc (self);
1075 }
1076
1077 static void 
1078 on_response_before (ModestWizardDialog *wizard_dialog,
1079                     gint response_id,
1080                     gpointer user_data)
1081 {
1082         ModestEasysetupWizardDialog *self = MODEST_EASYSETUP_WIZARD_DIALOG (wizard_dialog);
1083         ModestEasysetupWizardDialogPrivate *priv = MODEST_EASYSETUP_WIZARD_DIALOG_GET_PRIVATE(wizard_dialog);
1084         if (response_id == GTK_RESPONSE_CANCEL) {
1085                 /* This is mostly copied from
1086                  * src/maemo/modest-account-settings-dialog.c */
1087                 if (priv->dirty) {
1088                         GtkDialog *dialog = GTK_DIALOG (hildon_note_new_confirmation (GTK_WINDOW (self), 
1089                                 _("imum_nc_wizard_confirm_lose_changes")));
1090                         /* TODO: These button names will be ambiguous, and not
1091                          * specified in the UI specification. */
1092
1093                         const gint dialog_response = gtk_dialog_run (dialog);
1094                         gtk_widget_destroy (GTK_WIDGET (dialog));
1095
1096                         if (dialog_response != GTK_RESPONSE_OK) {
1097                                 /* Don't let the dialog close */
1098                                 g_signal_stop_emission_by_name (wizard_dialog, "response");
1099                         }
1100                 }
1101         }
1102 }
1103
1104 typedef struct IdleData {
1105         ModestEasysetupWizardDialog *dialog;
1106         ModestPresets *presets;
1107 } IdleData;
1108
1109 static gboolean
1110 presets_idle (gpointer userdata)
1111 {
1112         IdleData *idle_data = (IdleData *) userdata;
1113         ModestEasysetupWizardDialog *self = MODEST_EASYSETUP_WIZARD_DIALOG (idle_data->dialog);
1114         ModestEasysetupWizardDialogPrivate *priv = MODEST_EASYSETUP_WIZARD_DIALOG_GET_PRIVATE (self);
1115
1116         g_assert (idle_data->presets);
1117
1118         gdk_threads_enter ();
1119
1120         priv->presets = idle_data->presets;
1121
1122         if (MODEST_EASYSETUP_IS_COUNTRY_COMBO_BOX (priv->combo_account_country)) {
1123 /*              gint mcc = get_default_country_code(); */
1124                 gint mcc;
1125                 /* Fill the combo in an idle call, as it takes a lot of time */
1126                 easysetup_country_combo_box_load_data(
1127                         MODEST_EASYSETUP_COUNTRY_COMBO_BOX (priv->combo_account_country));
1128 /*              easysetup_country_combo_box_set_active_country_mcc ( */
1129 /*                      MODEST_EASYSETUP_COUNTRY_COMBO_BOX (priv->combo_account_country), mcc); */
1130                 easysetup_country_combo_box_set_active_country_locale (
1131                         MODEST_EASYSETUP_COUNTRY_COMBO_BOX (priv->combo_account_country));
1132                 mcc = easysetup_country_combo_box_get_active_country_mcc (
1133                         MODEST_EASYSETUP_COUNTRY_COMBO_BOX (priv->combo_account_country));
1134                 easysetup_provider_combo_box_fill (
1135                         EASYSETUP_PROVIDER_COMBO_BOX (priv->combo_account_serviceprovider),
1136                         priv->presets, mcc);
1137         }
1138
1139         priv->dirty = FALSE;
1140
1141         g_object_unref (idle_data->dialog);
1142         g_free (idle_data);
1143
1144         gdk_threads_leave ();
1145
1146         return FALSE;
1147 }
1148
1149 static gpointer
1150 presets_loader (gpointer userdata)
1151 {
1152         ModestEasysetupWizardDialog *self = MODEST_EASYSETUP_WIZARD_DIALOG (userdata);
1153         ModestPresets *presets = NULL;
1154         IdleData *idle_data;
1155
1156         const gchar* path  = NULL;
1157         const gchar* path1 = MODEST_PROVIDER_DATA_FILE;
1158         const gchar* path2 = MODEST_MAEMO_PROVIDER_DATA_FILE;
1159         
1160         if (access(path1, R_OK) == 0) 
1161                 path = path1;
1162         else if (access(path2, R_OK) == 0)
1163                 path = path2;
1164         else {
1165                 g_warning ("%s: neither '%s' nor '%s' is a readable provider data file",
1166                            __FUNCTION__, path1, path2);
1167                 return NULL;
1168         }
1169
1170         presets = modest_presets_new (path);
1171         if (!presets) {
1172                 g_warning ("%s: failed to parse '%s'", __FUNCTION__, path);
1173                 return NULL;
1174         }
1175         
1176         idle_data = g_new0 (IdleData, 1);
1177         idle_data->dialog = self;
1178         idle_data->presets = presets;
1179         
1180         g_idle_add (presets_idle, idle_data);   
1181
1182         return NULL;
1183 }
1184
1185 static void
1186 modest_easysetup_wizard_dialog_append_page (GtkNotebook *notebook,
1187                                             GtkWidget *page,
1188                                             const gchar *label)
1189 {
1190         gint index;
1191         /* Append page and set attributes */
1192         index = gtk_notebook_append_page (notebook, page, gtk_label_new (label));
1193         gtk_container_child_set (GTK_CONTAINER (notebook), page,
1194                                  "tab-expand", TRUE, "tab-fill", TRUE,
1195                                  NULL);
1196         gtk_widget_show (page);
1197 }
1198
1199 static void
1200 init_user_page (ModestEasysetupWizardDialogPrivate *priv)
1201 {
1202         priv->page_user_details = NULL;
1203         priv->entry_user_name = NULL;
1204         priv->entry_user_username = NULL;
1205         priv->entry_user_password = NULL;
1206         priv->entry_user_email = NULL;
1207 }
1208
1209 static void
1210 init_incoming_page (ModestEasysetupWizardDialogPrivate *priv)
1211 {
1212         priv->page_custom_incoming = NULL;
1213         priv->combo_incoming_servertype = NULL;
1214         priv->caption_incoming = NULL;
1215         priv->entry_incomingserver = NULL;
1216         priv->entry_user_email = NULL;
1217         priv->incoming_security = NULL;
1218 }
1219
1220 static void
1221 init_outgoing_page (ModestEasysetupWizardDialogPrivate *priv)
1222 {
1223         priv->page_custom_outgoing = NULL;
1224         priv->entry_outgoingserver = NULL;
1225         priv->combo_outgoing_security = NULL;
1226         priv->combo_outgoing_auth = NULL;
1227         priv->checkbox_outgoing_smtp_specific = NULL;
1228         priv->button_outgoing_smtp_servers = NULL;
1229         priv->outgoing_security = NULL;
1230 }
1231
1232 static void
1233 modest_easysetup_wizard_dialog_init (ModestEasysetupWizardDialog *self)
1234 {
1235         gtk_container_set_border_width (GTK_CONTAINER (self), MODEST_MARGIN_HALF);
1236         
1237         /* Create the notebook to be used by the ModestWizardDialog base class:
1238          * Each page of the notebook will be a page of the wizard: */
1239         GtkNotebook *notebook = GTK_NOTEBOOK (gtk_notebook_new());
1240         
1241         /* Set the notebook used by the ModestWizardDialog base class: */
1242         g_object_set (G_OBJECT(self), "wizard-notebook", notebook, NULL);
1243     
1244         /* Set the wizard title:
1245          * The actual window title will be a combination of this and the page's tab label title. */
1246         g_object_set (G_OBJECT(self), "wizard-name", _("mcen_ti_emailsetup"), NULL);
1247
1248         /* Read in the information about known service providers: */
1249         ModestEasysetupWizardDialogPrivate *priv = MODEST_EASYSETUP_WIZARD_DIALOG_GET_PRIVATE (self);
1250         
1251         /* The server fields did not have been manually changed yet */
1252         priv->server_changes = 0;
1253         priv->pending_load_settings = TRUE;
1254
1255         /* Get the account manager object, 
1256          * so we can check for existing accounts,
1257          * and create new accounts: */
1258         priv->account_manager = modest_runtime_get_account_mgr ();
1259         g_object_ref (priv->account_manager);
1260         
1261         /* Initialize fields */
1262         priv->page_welcome = create_page_welcome (self);
1263         priv->page_account_details = create_page_account_details (self);
1264
1265         init_user_page (priv);
1266         init_incoming_page (priv);
1267         init_outgoing_page (priv);
1268
1269         priv->page_complete_easysetup = NULL;       
1270         priv->page_complete_customsetup = NULL;
1271         priv->last_plugin_protocol_selected = MODEST_PROTOCOL_REGISTRY_TYPE_INVALID;
1272         priv->missing_data_signals = NULL;
1273
1274         /* Add the common pages */
1275         modest_easysetup_wizard_dialog_append_page (notebook, priv->page_welcome, 
1276                                                     _("mcen_ti_emailsetup_welcome"));
1277         modest_easysetup_wizard_dialog_append_page (notebook, priv->page_account_details, 
1278                                                     _("mcen_ti_accountdetails"));
1279                 
1280         /* Connect to the dialog's response signal so we can enable/disable buttons 
1281          * for the newly-selected page, because the prev/next buttons cause response to be emitted.
1282          * Note that we use g_signal_connect_after() instead of g_signal_connect()
1283          * so that we can be enable/disable after ModestWizardDialog has done its own 
1284          * enabling/disabling of buttons.
1285          * 
1286          * HOWEVER, this doesn't work because ModestWizardDialog's response signal handler 
1287          * does g_signal_stop_emission_by_name(), stopping our signal handler from running.
1288          * 
1289          * It's not enough to connect to the notebook's switch-page signal, because 
1290          * ModestWizardDialog's "response" signal handler enables the buttons itself, 
1291          * _after_ switching the page (understandably).
1292          * (Note that if we had, if we used g_signal_connect() instead of g_signal_connect_after()
1293          * then gtk_notebook_get_current_page() would return an incorrect value.)
1294          */
1295         g_signal_connect_after (G_OBJECT (self), "response",
1296                                 G_CALLBACK (on_response), self);
1297
1298         /* This is to show a confirmation dialog when the user hits cancel */
1299         g_signal_connect (G_OBJECT (self), "response",
1300                           G_CALLBACK (on_response_before), self);
1301
1302         g_signal_connect (G_OBJECT (self), "delete-event",
1303                           G_CALLBACK (on_delete_event), self);
1304
1305         /* Reset dirty, because there was no user input until now */
1306         priv->dirty = FALSE;
1307         
1308         /* When this window is shown, hibernation should not be possible, 
1309          * because there is no sensible way to save the state: */
1310         modest_window_mgr_prevent_hibernation_while_window_is_shown (
1311                 modest_runtime_get_window_mgr (), GTK_WINDOW (self)); 
1312
1313         /* Load provider presets */
1314         g_object_ref (self);
1315         g_thread_create (presets_loader, self, FALSE, NULL);
1316
1317         hildon_help_dialog_help_enable (GTK_DIALOG(self), "applications_email_wizardwelcome",
1318                                         modest_maemo_utils_get_osso_context()); 
1319
1320         priv->settings = modest_account_settings_new ();
1321 }
1322
1323 ModestEasysetupWizardDialog*
1324 modest_easysetup_wizard_dialog_new (void)
1325 {       
1326         
1327         return g_object_new (MODEST_TYPE_EASYSETUP_WIZARD_DIALOG, NULL);
1328 }
1329
1330 static void 
1331 create_subsequent_customsetup_pages (ModestEasysetupWizardDialog *self)
1332 {
1333         ModestEasysetupWizardDialogPrivate *priv;
1334         GtkNotebook *notebook = NULL;
1335
1336         g_object_get (self, "wizard-notebook", &notebook, NULL);
1337         g_assert(notebook);
1338
1339         priv = MODEST_EASYSETUP_WIZARD_DIALOG_GET_PRIVATE (self);
1340
1341         if (!priv->page_user_details) {
1342                 priv->page_user_details = create_page_user_details (self);
1343         }                       
1344
1345         /* Create the custom pages: */
1346         if(!(priv->page_custom_incoming)) {
1347                 priv->page_custom_incoming = create_page_custom_incoming (self);
1348         }
1349                 
1350         /* TODO: only if needed */
1351         if(!(priv->page_custom_outgoing)) {
1352                 priv->page_custom_outgoing = create_page_custom_outgoing (self);
1353         }
1354         
1355         if(!(priv->page_complete_customsetup)) {
1356                 priv->page_complete_customsetup = create_page_complete_custom (self);
1357         }
1358
1359         if (!gtk_widget_get_parent (GTK_WIDGET (priv->page_user_details)))
1360                 modest_easysetup_wizard_dialog_append_page (notebook, priv->page_user_details,
1361                                                             _("mcen_ti_emailsetup_userdetails"));
1362
1363         if (!gtk_widget_get_parent (GTK_WIDGET (priv->page_custom_incoming)))
1364                 modest_easysetup_wizard_dialog_append_page (notebook, priv->page_custom_incoming, 
1365                                                             _("mcen_ti_emailsetup_incomingdetails"));
1366         
1367         if (!gtk_widget_get_parent (GTK_WIDGET (priv->page_custom_outgoing)))           
1368                 modest_easysetup_wizard_dialog_append_page (notebook, priv->page_custom_outgoing, 
1369                                                             _("mcen_ti_emailsetup_outgoingdetails"));
1370                 
1371         if (!gtk_widget_get_parent (GTK_WIDGET (priv->page_complete_customsetup)))
1372                 modest_easysetup_wizard_dialog_append_page (notebook, priv->page_complete_customsetup, 
1373                                                             _("mcen_ti_emailsetup_complete"));
1374                         
1375         /* This is unnecessary with GTK+ 2.10: */
1376         modest_wizard_dialog_force_title_update (MODEST_WIZARD_DIALOG(self));
1377 }
1378         
1379 static void 
1380 create_subsequent_easysetup_pages (ModestEasysetupWizardDialog *self)
1381 {
1382         ModestEasysetupWizardDialogPrivate *priv;
1383         GtkNotebook *notebook = NULL;
1384
1385         g_object_get (self, "wizard-notebook", &notebook, NULL);
1386         g_assert(notebook);
1387         
1388         /* Create the easysetup-specific pages: */
1389         priv = MODEST_EASYSETUP_WIZARD_DIALOG_GET_PRIVATE (self);
1390         if(!priv->page_complete_easysetup)
1391                 priv->page_complete_easysetup = create_page_complete_easysetup (self);
1392
1393         if (!gtk_widget_get_parent (GTK_WIDGET (priv->page_complete_easysetup)))
1394                 modest_easysetup_wizard_dialog_append_page (notebook, priv->page_complete_easysetup, 
1395                                                             _("mcen_ti_emailsetup_complete"));
1396                         
1397         /* This is unnecessary with GTK+ 2.10: */
1398         modest_wizard_dialog_force_title_update (MODEST_WIZARD_DIALOG(self));
1399 }
1400
1401 /* */
1402 static void
1403 remove_non_common_tabs (GtkNotebook *notebook, 
1404                         gboolean remove_user_details) 
1405 {
1406         gint starting_tab;
1407         /* The first 2 tabs are the common ones (welcome tab and the
1408            providers tab), so we always remove starting from the
1409            end */
1410
1411         starting_tab = (remove_user_details) ? 2 : 3;
1412         while (gtk_notebook_get_n_pages (notebook) > starting_tab) 
1413                 gtk_notebook_remove_page (notebook, -1); 
1414 }
1415
1416 static void
1417 on_missing_mandatory_data (ModestAccountProtocol *protocol,
1418                            gboolean missing,
1419                            gpointer user_data)
1420 {
1421         real_enable_buttons (MODEST_WIZARD_DIALOG (user_data), !missing);
1422 }
1423
1424 /* After the user details page,
1425  * the following pages depend on whether "Other" was chosen 
1426  * in the provider combobox on the account page
1427  */
1428 static void 
1429 create_subsequent_pages (ModestEasysetupWizardDialog *self)
1430 {
1431         ModestEasysetupWizardDialogPrivate *priv;
1432         EasysetupProviderComboBox *combo;
1433         EasysetupProviderComboBoxIdType id_type;
1434         GtkNotebook *notebook;
1435
1436         priv = MODEST_EASYSETUP_WIZARD_DIALOG_GET_PRIVATE (self);
1437         combo = EASYSETUP_PROVIDER_COMBO_BOX (priv->combo_account_serviceprovider);
1438         id_type = easysetup_provider_combo_box_get_active_id_type (combo);
1439         g_object_get (self, "wizard-notebook", &notebook, NULL);
1440
1441         if (id_type == EASYSETUP_PROVIDER_COMBO_BOX_ID_OTHER) {
1442                 /* "Other..." was selected: */
1443
1444                 /* If we come from a rollbacked easysetup */
1445                 if (priv->page_complete_easysetup) {
1446                         remove_non_common_tabs (notebook, FALSE);
1447                         priv->page_complete_easysetup = NULL;
1448                 } 
1449                 
1450                 /* If we come from a rollbacked plugin protocol setup */
1451                 if (priv->last_plugin_protocol_selected != MODEST_PROTOCOL_REGISTRY_TYPE_INVALID) {
1452                         remove_non_common_tabs (notebook, TRUE);
1453                         priv->last_plugin_protocol_selected = MODEST_PROTOCOL_REGISTRY_TYPE_INVALID;
1454                         modest_signal_mgr_disconnect_all_and_destroy (priv->missing_data_signals);
1455                         priv->missing_data_signals = NULL;
1456                 }
1457
1458                 create_subsequent_customsetup_pages (self);
1459         } else {
1460                 /* If we come from a rollbacked custom setup */
1461                 if (priv->page_custom_incoming) {
1462                         remove_non_common_tabs (notebook, TRUE);
1463                         init_user_page (priv);
1464                         init_incoming_page (priv);
1465                         init_outgoing_page (priv);
1466                         init_user_page (priv);
1467                         priv->page_complete_customsetup = NULL;
1468                 }
1469
1470                 /* It's a pluggable protocol and not a provider with presets */
1471                 if (id_type == EASYSETUP_PROVIDER_COMBO_BOX_ID_PLUGIN_PROTOCOL) {
1472                         ModestProtocol *protocol;
1473                         gchar *proto_name;
1474                         ModestProtocolType proto_type;
1475
1476                         
1477                         /* If we come from a rollbacked easy setup */
1478                         if (priv->last_plugin_protocol_selected == 
1479                             MODEST_PROTOCOL_REGISTRY_TYPE_INVALID &&
1480                             priv->page_complete_easysetup) {
1481                                 remove_non_common_tabs (notebook, TRUE);
1482                                 init_user_page (priv);
1483                                 priv->page_complete_easysetup = NULL;
1484                         }
1485                         
1486                         proto_name = easysetup_provider_combo_box_get_active_provider_id (combo);
1487                         protocol = modest_protocol_registry_get_protocol_by_name (modest_runtime_get_protocol_registry (),
1488                                                                                   MODEST_PROTOCOL_REGISTRY_PROVIDER_PROTOCOLS,
1489                                                                                   proto_name);
1490                         proto_type = modest_protocol_get_type_id (protocol);
1491
1492                         if (protocol && MODEST_IS_ACCOUNT_PROTOCOL (protocol) &&
1493                             proto_type != priv->last_plugin_protocol_selected) {
1494                                 ModestPairList *tabs;
1495                                 GSList *tmp;
1496
1497                                 /* Remember the last selected plugin protocol */
1498                                 priv->last_plugin_protocol_selected = proto_type;
1499
1500                                 /* Get tabs */
1501                                 tabs = modest_account_protocol_get_easysetupwizard_tabs (MODEST_ACCOUNT_PROTOCOL (protocol));
1502                                 tmp = (GSList *) tabs;
1503                                 while (tmp) {
1504                                         ModestPair *pair = (ModestPair *) tmp->data;
1505                                         modest_easysetup_wizard_dialog_append_page (notebook,
1506                                                                                     GTK_WIDGET (pair->second),
1507                                                                                     (const gchar *) pair->first);
1508
1509                                         /* Connect signals */
1510                                         priv->missing_data_signals = 
1511                                                 modest_signal_mgr_connect (priv->missing_data_signals, 
1512                                                                            G_OBJECT (pair->second), 
1513                                                                            "missing-mandatory-data",
1514                                                                            G_CALLBACK (on_missing_mandatory_data), 
1515                                                                            self);
1516
1517                                         g_free (pair->first);
1518                                         tmp = g_slist_next (tmp);
1519                                         /* Critical: if you don't show the page then the dialog will ignore it */
1520 /*                                      gtk_widget_show (GTK_WIDGET (pair->second)); */
1521                                 }
1522                                 modest_pair_list_free (tabs);
1523                         }
1524                         g_free (proto_name);
1525                 } else {
1526                         if (priv->last_plugin_protocol_selected != 
1527                             MODEST_PROTOCOL_REGISTRY_TYPE_INVALID) {
1528                                 remove_non_common_tabs (notebook, TRUE);
1529                                 init_user_page (priv);
1530                                 priv->page_complete_easysetup = NULL;
1531                                 priv->last_plugin_protocol_selected = MODEST_PROTOCOL_REGISTRY_TYPE_INVALID;
1532                                 modest_signal_mgr_disconnect_all_and_destroy (priv->missing_data_signals);
1533                                 priv->missing_data_signals = NULL;
1534                         }
1535                         if (!priv->page_user_details) {
1536                                 priv->page_user_details = create_page_user_details (self);
1537                                 modest_easysetup_wizard_dialog_append_page (notebook, 
1538                                                                             priv->page_user_details,
1539                                                                             _("mcen_ti_emailsetup_userdetails"));
1540                         }
1541                 }
1542                 
1543                 /* Create the easysetup pages: */
1544                 create_subsequent_easysetup_pages (self);
1545         }
1546 }
1547
1548
1549 static gchar*
1550 util_get_default_servername_from_email_address (const gchar* email_address, ModestProtocolType protocol_type)
1551 {
1552         const gchar* hostname = NULL;
1553         gchar* at;
1554         gchar* domain;
1555         ModestProtocolRegistry *protocol_registry;
1556         ModestProtocol *protocol;
1557
1558         if (!email_address)
1559                 return NULL;
1560         
1561         at = g_utf8_strchr (email_address, -1, '@');
1562         if (!at || (g_utf8_strlen (at, -1) < 2))
1563                 return NULL;
1564                 
1565         domain = g_utf8_next_char (at);
1566         if(!domain)
1567                 return NULL;
1568
1569         protocol_registry = modest_runtime_get_protocol_registry ();
1570         protocol = modest_protocol_registry_get_protocol_by_type (protocol_registry, protocol_type);
1571                 
1572         if (modest_protocol_registry_protocol_type_has_tag (protocol_registry, protocol_type, MODEST_PROTOCOL_REGISTRY_REMOTE_STORE_PROTOCOLS) ||
1573             modest_protocol_registry_protocol_type_has_tag (protocol_registry, protocol_type, MODEST_PROTOCOL_REGISTRY_TRANSPORT_PROTOCOLS)) {
1574                 hostname = modest_protocol_get_name (protocol);
1575         }
1576         
1577         if (!hostname)
1578                 return NULL;
1579                 
1580         return g_strdup_printf ("%s.%s", hostname, domain);
1581 }
1582
1583 static void 
1584 set_default_custom_servernames (ModestEasysetupWizardDialog *self)
1585 {
1586         ModestEasysetupWizardDialogPrivate *priv = MODEST_EASYSETUP_WIZARD_DIALOG_GET_PRIVATE(self);
1587
1588         if (!priv->entry_incomingserver)
1589                 return;
1590                 
1591         /* Set a default domain for the server, based on the email address,
1592          * if no server name was already specified.
1593          */
1594         if (priv->entry_user_email
1595             && ((priv->server_changes & MODEST_EASYSETUP_WIZARD_DIALOG_INCOMING_CHANGED) == 0)) {
1596                 const ModestProtocolType protocol_type = easysetup_servertype_combo_box_get_active_servertype (
1597                         EASYSETUP_SERVERTYPE_COMBO_BOX (priv->combo_incoming_servertype));
1598
1599                 /* This could happen when the combo box has still no active iter */
1600                 if (protocol_type != MODEST_PROTOCOL_REGISTRY_TYPE_INVALID) {
1601                         const gchar* email_address = gtk_entry_get_text (GTK_ENTRY(priv->entry_user_email));    
1602                         gchar* servername = util_get_default_servername_from_email_address (email_address, 
1603                                                                                             protocol_type);
1604
1605                         /* Do not set the INCOMING_CHANGED flag because of this edit */
1606                         g_signal_handlers_block_by_func (G_OBJECT (priv->entry_incomingserver), G_CALLBACK (on_entry_incoming_servername_changed), self);
1607                         gtk_entry_set_text (GTK_ENTRY (priv->entry_incomingserver), servername);
1608                         g_signal_handlers_unblock_by_func (G_OBJECT (priv->entry_incomingserver), G_CALLBACK (on_entry_incoming_servername_changed), self);
1609                         
1610                         g_free (servername);
1611                 }
1612         }
1613         
1614         /* Set a default domain for the server, based on the email address,
1615          * if no server name was already specified.
1616          */
1617         if (!priv->entry_outgoingserver)
1618                 return;
1619                 
1620         if (priv->entry_user_email
1621             && ((priv->server_changes & MODEST_EASYSETUP_WIZARD_DIALOG_OUTGOING_CHANGED) == 0)) {
1622                 const gchar* email_address = gtk_entry_get_text (GTK_ENTRY(priv->entry_user_email));
1623                 
1624                 gchar* servername = util_get_default_servername_from_email_address (email_address, MODEST_PROTOCOLS_TRANSPORT_SMTP);
1625
1626                 /* Do not set the OUTGOING_CHANGED flag because of this edit */
1627                 g_signal_handlers_block_by_func (G_OBJECT (priv->entry_outgoingserver), G_CALLBACK (on_entry_outgoing_servername_changed), self);
1628                 gtk_entry_set_text (GTK_ENTRY (priv->entry_outgoingserver), servername);
1629                 g_signal_handlers_unblock_by_func (G_OBJECT (priv->entry_outgoingserver), G_CALLBACK (on_entry_outgoing_servername_changed), self);
1630
1631                 g_free (servername);
1632         }
1633 }
1634
1635 static gchar*
1636 get_entered_account_title (ModestEasysetupWizardDialog *self)
1637 {
1638         ModestEasysetupWizardDialogPrivate *priv;
1639         const gchar* account_title;
1640
1641         priv = MODEST_EASYSETUP_WIZARD_DIALOG_GET_PRIVATE(self);
1642         account_title = gtk_entry_get_text (GTK_ENTRY (priv->entry_account_title));
1643
1644         if (!account_title || (g_utf8_strlen (account_title, -1) == 0)) {
1645                 return NULL;
1646         } else {
1647                 /* Strip it of whitespace at the start and end: */
1648                 gchar *result = g_strdup (account_title);
1649                 result = g_strstrip (result);
1650                 
1651                 if (!result)
1652                         return NULL;
1653                         
1654                 if (g_utf8_strlen (result, -1) == 0) {
1655                         g_free (result);
1656                         return NULL;    
1657                 }
1658                 
1659                 return result;
1660         }
1661 }
1662
1663 static gboolean
1664 on_before_next (ModestWizardDialog *dialog, GtkWidget *current_page, GtkWidget *next_page)
1665 {
1666         ModestEasysetupWizardDialog *self = MODEST_EASYSETUP_WIZARD_DIALOG (dialog);
1667         ModestEasysetupWizardDialogPrivate *priv = MODEST_EASYSETUP_WIZARD_DIALOG_GET_PRIVATE (self);
1668         ModestProtocolRegistry *protocol_registry;
1669
1670         protocol_registry = modest_runtime_get_protocol_registry ();
1671
1672         /* if are browsing pages previous to the last one, then we have pending settings in
1673          * this wizard */
1674         if (next_page != NULL)
1675                 priv->pending_load_settings = TRUE;
1676         
1677         /* Do extra validation that couldn't be done for every key press,
1678          * either because it was too slow,
1679          * or because it requires interaction:
1680          */
1681         if (current_page == priv->page_account_details) {       
1682                 /* Check that the title is not already in use: */
1683                 gchar* account_title = get_entered_account_title (self);
1684                 if (!account_title)
1685                         return FALSE;
1686                         
1687                 /* Aavoid a clash with an existing display name: */
1688                 const gboolean name_in_use = modest_account_mgr_account_with_display_name_exists (
1689                         priv->account_manager, account_title);
1690
1691                 if (name_in_use) {
1692                         /* Warn the user via a dialog: */
1693                         hildon_banner_show_information(NULL, NULL, _("mail_ib_account_name_already_existing"));
1694             
1695                         return FALSE;
1696                 }
1697
1698                 /* Make sure that the subsequent pages are appropriate for the provider choice. */
1699                 create_subsequent_pages (self);
1700
1701         } else if (current_page == priv->page_user_details) {
1702                 /* Check that the email address is valud: */
1703                 const gchar* email_address = gtk_entry_get_text (GTK_ENTRY (priv->entry_user_email));
1704                 if ((!email_address) || (g_utf8_strlen (email_address, -1) == 0))
1705                         return FALSE;
1706                         
1707                 if (!modest_text_utils_validate_email_address (email_address, NULL)) {
1708                         /* Warn the user via a dialog: */
1709                         hildon_banner_show_information (NULL, NULL, _("mcen_ib_invalid_email"));
1710                                              
1711                         /* Return focus to the email address entry: */
1712                         gtk_widget_grab_focus (priv->entry_user_email);
1713                         gtk_editable_select_region (GTK_EDITABLE (priv->entry_user_email), 0, -1);
1714
1715                         return FALSE;
1716                 }
1717         }
1718           
1719         if (next_page == priv->page_custom_incoming) {
1720                 set_default_custom_servernames (self);
1721         } else if (next_page == priv->page_custom_outgoing) {
1722                 set_default_custom_servernames (self);
1723
1724                 /* Check if the server supports secure authentication */
1725 /*              if (modest_security_options_view_auth_check (security_options)) */
1726 /*                      if (!check_has_supported_auth_methods (self)) */
1727 /*                              return FALSE; */
1728                 gtk_widget_show (priv->outgoing_security);
1729         }
1730         
1731         /* If this is the last page, and this is a click on Finish, 
1732          * then attempt to create the dialog.
1733          */
1734         if(!next_page && 
1735            current_page != priv->page_account_details) /* This is NULL when this is a click on Finish. */
1736         {
1737                 if (priv->pending_load_settings) {
1738                         save_to_settings (self);
1739                 }
1740
1741                 /* We check if there's already another account with the same configuration */
1742                 if (modest_account_mgr_check_already_configured_account (priv->account_manager, priv->settings)) {
1743                         modest_platform_information_banner (NULL, NULL, _("mail_ib_setting_failed"));
1744                         return FALSE;
1745                 }
1746
1747                 modest_account_mgr_add_account_from_settings (priv->account_manager, priv->settings);
1748         }
1749         
1750         
1751         return TRUE;
1752 }
1753
1754 static gboolean entry_is_empty (GtkWidget *entry)
1755 {
1756         if (!entry)
1757                 return FALSE;
1758                 
1759         const gchar* text = gtk_entry_get_text (GTK_ENTRY (entry));
1760         if ((!text) || (g_utf8_strlen (text, -1) == 0))
1761                 return TRUE;
1762         else {
1763                 /* Strip it of whitespace at the start and end: */
1764                 gchar *stripped = g_strdup (text);
1765                 stripped = g_strstrip (stripped);
1766                 
1767                 if (!stripped)
1768                         return TRUE;
1769                         
1770                 const gboolean result = (g_utf8_strlen (stripped, -1) == 0);
1771                 
1772                 g_free (stripped);
1773                 return result;
1774         }
1775 }
1776
1777 static void
1778 real_enable_buttons (ModestWizardDialog *dialog, gboolean enable_next)
1779 {               
1780         GtkNotebook *notebook = NULL;
1781         gboolean is_finish_tab;
1782         GtkWidget *current;
1783         ModestEasysetupWizardDialogPrivate *priv;
1784
1785         /* Get data */
1786         priv = MODEST_EASYSETUP_WIZARD_DIALOG_GET_PRIVATE (dialog);
1787         g_object_get (dialog, "wizard-notebook", &notebook, NULL);
1788         
1789         /* Disable the Finish button until we are on the last page,
1790          * because HildonWizardDialog enables this for all but the
1791          * first page */
1792         current = gtk_notebook_get_nth_page (notebook, gtk_notebook_get_current_page (notebook));
1793         is_finish_tab = ((current == priv->page_complete_easysetup) ||
1794                          (current == priv->page_complete_customsetup));
1795
1796         if (is_finish_tab) {
1797                 /* Disable Next on the last page no matter what the
1798                    argument say */
1799                 enable_next = FALSE;
1800         } else {
1801                 /* Not the last one */
1802                 gtk_dialog_set_response_sensitive (GTK_DIALOG (dialog),
1803                                                    MODEST_WIZARD_DIALOG_FINISH,
1804                                                    FALSE);
1805         }
1806         
1807         gtk_dialog_set_response_sensitive (GTK_DIALOG (dialog),
1808                                            MODEST_WIZARD_DIALOG_NEXT,
1809                                            enable_next);
1810 }
1811
1812 static void
1813 on_enable_buttons (ModestWizardDialog *dialog, GtkWidget *current_page)
1814 {
1815         ModestEasysetupWizardDialog *self = MODEST_EASYSETUP_WIZARD_DIALOG (dialog);
1816         ModestEasysetupWizardDialogPrivate *priv = MODEST_EASYSETUP_WIZARD_DIALOG_GET_PRIVATE (self);
1817         
1818         gboolean enable_next = TRUE;
1819         if (current_page == priv->page_welcome) {
1820                 enable_next = TRUE;
1821         } else if (current_page == priv->page_account_details) {
1822                 /* The account details title is mandatory: */
1823                 if (entry_is_empty(priv->entry_account_title))
1824                         enable_next = FALSE;
1825         } else if (current_page == priv->page_user_details) {   
1826                 /* The user details username is mandatory: */
1827                 if (entry_is_empty(priv->entry_user_username))
1828                         enable_next = FALSE;
1829                         
1830                 /* The user details email address is mandatory: */
1831                 if (enable_next && entry_is_empty (priv->entry_user_email))
1832                         enable_next = FALSE;
1833         } else if (current_page == priv->page_custom_incoming) {
1834                 /* The custom incoming server is mandatory: */
1835                 if (entry_is_empty(priv->entry_incomingserver))
1836                         enable_next = FALSE;
1837         } else if (MODEST_IS_EASYSETUP_WIZARD_PAGE (current_page)) {
1838                 enable_next = !modest_easysetup_wizard_page_validate (
1839                        MODEST_EASYSETUP_WIZARD_PAGE (current_page));
1840         }
1841                         
1842         /* Enable/disable buttons */ 
1843         real_enable_buttons (dialog, enable_next);
1844 }
1845
1846 static void
1847 modest_easysetup_wizard_dialog_class_init (ModestEasysetupWizardDialogClass *klass)
1848 {
1849         GObjectClass *object_class = G_OBJECT_CLASS (klass);
1850         g_type_class_add_private (klass, sizeof (ModestEasysetupWizardDialogPrivate));
1851
1852
1853         object_class->dispose = modest_easysetup_wizard_dialog_dispose;
1854         object_class->finalize = modest_easysetup_wizard_dialog_finalize;
1855         
1856         /* Provide a vfunc implementation so we can decide 
1857          * when to enable/disable the prev/next buttons.
1858          */
1859         ModestWizardDialogClass *base_klass = (ModestWizardDialogClass*)(klass);
1860         base_klass->before_next = on_before_next;
1861         base_klass->enable_buttons = on_enable_buttons;
1862 }
1863
1864 /**
1865  * save_to_settings:
1866  * @self: a #ModestEasysetupWizardDialog
1867  *
1868  * takes information from all the wizard and stores it in settings
1869  */
1870 static void
1871 save_to_settings (ModestEasysetupWizardDialog *self)
1872 {
1873         ModestEasysetupWizardDialogPrivate *priv = MODEST_EASYSETUP_WIZARD_DIALOG_GET_PRIVATE (self);
1874         guint special_port;
1875         gchar *provider_id;
1876         gchar* display_name;
1877         const gchar *username, *password;
1878         gchar *store_hostname, *transport_hostname;
1879         guint store_port, transport_port;
1880         ModestProtocolRegistry *protocol_registry;
1881         ModestProtocolType store_protocol, transport_protocol;
1882         ModestProtocolType store_security, transport_security;
1883         ModestProtocolType store_auth_protocol, transport_auth_protocol;
1884         ModestServerAccountSettings *store_settings, *transport_settings;
1885         const gchar *fullname, *email_address;
1886         EasysetupProviderComboBox *combo;
1887         EasysetupProviderComboBoxIdType id_type;
1888
1889         priv = MODEST_EASYSETUP_WIZARD_DIALOG_GET_PRIVATE (self);
1890         combo = EASYSETUP_PROVIDER_COMBO_BOX (priv->combo_account_serviceprovider);
1891         protocol_registry = modest_runtime_get_protocol_registry ();
1892
1893         /* Get details from the specified presets: */
1894         id_type = easysetup_provider_combo_box_get_active_id_type (combo);
1895         provider_id = easysetup_provider_combo_box_get_active_provider_id (combo);
1896                 
1897         /* Let the plugin save the settings. We do a return in order
1898            to save an indentation level */
1899         if (id_type == EASYSETUP_PROVIDER_COMBO_BOX_ID_PLUGIN_PROTOCOL) {
1900                 ModestProtocol *protocol;
1901
1902                 protocol = modest_protocol_registry_get_protocol_by_name (
1903                        modest_runtime_get_protocol_registry (),
1904                        MODEST_PROTOCOL_REGISTRY_PROVIDER_PROTOCOLS,
1905                        provider_id);
1906
1907                 if (protocol && MODEST_IS_ACCOUNT_PROTOCOL (protocol)) {
1908                         gint n_pages, i = 0;
1909                         GtkNotebook *notebook;
1910                         GList *wizard_pages = NULL;
1911
1912                         g_object_get (self, "wizard-notebook", &notebook, NULL);
1913                         n_pages = gtk_notebook_get_n_pages (notebook);
1914                         for (i = 0; i < n_pages; i++) {
1915                                 GtkWidget *page = gtk_notebook_get_nth_page (notebook, i);
1916                                 if (MODEST_IS_EASYSETUP_WIZARD_PAGE (page))
1917                                         wizard_pages  = g_list_append (wizard_pages, page);
1918                         }
1919                         modest_account_protocol_save_wizard_settings (MODEST_ACCOUNT_PROTOCOL (protocol),
1920                                                                       wizard_pages,
1921                                                                       priv->settings);
1922                         g_list_free (wizard_pages);
1923                 } else {
1924                         g_warning ("The selected protocol is a plugin protocol "//
1925                                    "but it's not a ModestAccountProtocol");
1926                 }
1927
1928                 return;
1929         }
1930
1931         /* username and password (for both incoming and outgoing): */
1932         username = gtk_entry_get_text (GTK_ENTRY (priv->entry_user_username));
1933         password = gtk_entry_get_text (GTK_ENTRY (priv->entry_user_password));
1934
1935         store_settings = modest_account_settings_get_store_settings (priv->settings);
1936         transport_settings = modest_account_settings_get_transport_settings (priv->settings);
1937
1938         /* Incoming server: */
1939         /* Note: We need something as default for the transport store protocol values, 
1940          * or modest_account_mgr_add_server_account will fail. */
1941         store_port = 0;
1942         store_protocol = MODEST_PROTOCOL_REGISTRY_TYPE_INVALID;
1943         store_security = MODEST_PROTOCOLS_CONNECTION_NONE;
1944         store_auth_protocol = MODEST_PROTOCOLS_AUTH_NONE;
1945
1946         if (provider_id) {
1947                 ModestProtocolType store_provider_server_type;
1948                 gboolean store_provider_use_alternate_port;
1949                 /* Use presets: */
1950                 store_hostname = modest_presets_get_server (priv->presets, provider_id, 
1951                                                             TRUE /* store */);
1952                 
1953                 store_provider_server_type = modest_presets_get_info_server_type (priv->presets,
1954                                                                          provider_id, 
1955                                                                          TRUE /* store */);
1956                 store_security  = modest_presets_get_info_server_security (priv->presets,
1957                                                                                     provider_id, 
1958                                                                                     TRUE /* store */);
1959                 store_auth_protocol  = modest_presets_get_info_server_auth (priv->presets,
1960                                                                                      provider_id, 
1961                                                                                      TRUE /* store */);
1962                 store_provider_use_alternate_port  = modest_presets_get_info_server_use_alternate_port (priv->presets,
1963                                                                                                         provider_id, 
1964                                                                                                         TRUE /* store */);
1965
1966                 /* We don't check for SMTP here as that is impossible for an incoming server. */
1967                 if (store_provider_server_type == MODEST_PROTOCOL_REGISTRY_TYPE_INVALID)
1968                         store_protocol = MODEST_PROTOCOLS_STORE_POP;
1969                 else
1970                         store_protocol = store_provider_server_type;
1971
1972                 /* we check if there is a *special* port */
1973                 special_port = modest_presets_get_port (priv->presets, provider_id, TRUE /* incoming */);
1974                 if (special_port != 0)
1975                         store_port = special_port;
1976                 else 
1977                         store_port = get_port_from_protocol(store_provider_server_type, store_security);
1978
1979                 modest_server_account_settings_set_security_protocol (store_settings, 
1980                                                                       store_security);
1981                 modest_server_account_settings_set_auth_protocol (store_settings, 
1982                                                                   store_auth_protocol);
1983                 if (store_port != 0)
1984                         modest_server_account_settings_set_port (store_settings, store_port);
1985         } else {
1986                 /* Use custom pages because no preset was specified: */
1987                 store_hostname = g_strdup (gtk_entry_get_text (GTK_ENTRY (priv->entry_incomingserver) ));               
1988                 store_protocol = easysetup_servertype_combo_box_get_active_servertype (
1989                         EASYSETUP_SERVERTYPE_COMBO_BOX (priv->combo_incoming_servertype));              
1990
1991                 modest_security_options_view_save_settings (
1992                                     MODEST_SECURITY_OPTIONS_VIEW (priv->incoming_security),
1993                                     priv->settings);
1994         }
1995
1996         /* now we store the common store account settings */
1997         modest_server_account_settings_set_hostname (store_settings, store_hostname);
1998         modest_server_account_settings_set_username (store_settings, username);
1999         modest_server_account_settings_set_password (store_settings, password);
2000         modest_server_account_settings_set_protocol (store_settings, store_protocol);
2001
2002         g_object_unref (store_settings);
2003         g_free (store_hostname);
2004         
2005         /* Outgoing server: */
2006         transport_hostname = NULL;
2007         transport_protocol = MODEST_PROTOCOL_REGISTRY_TYPE_INVALID;
2008         transport_security = MODEST_PROTOCOLS_CONNECTION_NONE;
2009         transport_auth_protocol = MODEST_PROTOCOLS_AUTH_NONE;
2010         transport_port = 0;
2011         
2012         if (provider_id) {
2013                 ModestProtocolType transport_provider_server_type;
2014                 ModestProtocolType transport_provider_security;
2015
2016                 /* Use presets */
2017                 transport_hostname = modest_presets_get_server (priv->presets, provider_id, 
2018                                                                 FALSE /* transport */);
2019                         
2020                 transport_provider_server_type = modest_presets_get_info_server_type (priv->presets,
2021                                                                                       provider_id, 
2022                                                                                       FALSE /* transport */);           
2023                 transport_provider_security = modest_presets_get_info_server_security (priv->presets, 
2024                                                                                        provider_id, 
2025                                                                                        FALSE /* transport */);
2026
2027                 /* Note: We need something as default, or modest_account_mgr_add_server_account will fail. */
2028                 transport_protocol = transport_provider_server_type;
2029                 transport_security = transport_provider_security;
2030                 if (transport_security == MODEST_PROTOCOLS_CONNECTION_SSL) {
2031                         /* printf("DEBUG: %s: using secure SMTP\n", __FUNCTION__); */
2032                         /* we check if there is a *special* port */
2033                         special_port = modest_presets_get_port (priv->presets, provider_id,
2034                                                                 FALSE /* transport */);
2035                         if (special_port != 0)
2036                                 transport_port = special_port;
2037                         else 
2038                                 transport_port = 465;
2039                         transport_auth_protocol = MODEST_PROTOCOLS_AUTH_PASSWORD;
2040                 } else {
2041                         /* printf("DEBUG: %s: using non-secure SMTP\n", __FUNCTION__); */
2042                         transport_auth_protocol = MODEST_PROTOCOLS_AUTH_NONE;
2043                 }
2044
2045                 modest_server_account_settings_set_security_protocol (transport_settings, 
2046                                                                       transport_security);
2047                 modest_server_account_settings_set_auth_protocol (transport_settings, 
2048                                                                   transport_auth_protocol);
2049                 if (transport_port != 0)
2050                         modest_server_account_settings_set_port (transport_settings, 
2051                                                                  transport_port);
2052         } else {
2053                 ModestProtocolRegistry *registry;
2054                 ModestProtocol *store_proto;
2055
2056                 registry = modest_runtime_get_protocol_registry ();
2057                 /* Use custom pages because no preset was specified: */
2058                 transport_hostname = g_strdup (gtk_entry_get_text (GTK_ENTRY (priv->entry_outgoingserver) ));
2059
2060                 store_proto = modest_protocol_registry_get_protocol_by_type (registry, 
2061                                                                              store_protocol);
2062
2063                 if (transport_protocol == MODEST_PROTOCOL_REGISTRY_TYPE_INVALID) {
2064                         /* fallback to SMTP if none was specified */
2065                         g_warning ("No transport protocol was specified for store %d (%s)",
2066                                    modest_protocol_get_type_id (store_proto),
2067                                    modest_protocol_get_display_name (store_proto));
2068                         transport_protocol = MODEST_PROTOCOLS_TRANSPORT_SMTP;
2069                 }
2070
2071                 modest_security_options_view_save_settings (
2072                                     MODEST_SECURITY_OPTIONS_VIEW (priv->outgoing_security),
2073                                     priv->settings);
2074         }
2075
2076         /* now we store the common transport account settings */
2077         modest_server_account_settings_set_hostname (transport_settings, transport_hostname);
2078         modest_server_account_settings_set_username (transport_settings, username);
2079         modest_server_account_settings_set_password (transport_settings, password);
2080         modest_server_account_settings_set_protocol (transport_settings, transport_protocol);
2081
2082         g_object_unref (transport_settings);
2083         g_free (transport_hostname);
2084         
2085         fullname = gtk_entry_get_text (GTK_ENTRY (priv->entry_user_name));
2086         email_address = gtk_entry_get_text (GTK_ENTRY (priv->entry_user_email));
2087         modest_account_settings_set_fullname (priv->settings, fullname);
2088         modest_account_settings_set_email_address (priv->settings, email_address);
2089         /* we don't set retrieve type to preserve advanced settings if
2090            any. By default account settings are set to headers only */
2091         
2092         /* Save the connection-specific SMTP server accounts. */
2093         modest_account_settings_set_use_connection_specific_smtp 
2094                 (priv->settings, 
2095                  gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(priv->checkbox_outgoing_smtp_specific)));
2096
2097         display_name = get_entered_account_title (self);
2098         modest_account_settings_set_display_name (priv->settings, display_name);
2099         g_free (display_name);
2100 }
2101