* Fixes NB#90887
[modest] / src / hildon2 / modest-connection-specific-smtp-edit-window.c
1 /* Copyright (c) 2006, Nokia Corporation
2  * All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions are
6  * met:
7  *
8  * * Redistributions of source code must retain the above copyright
9  *   notice, this list of conditions and the following disclaimer.
10  * * Redistributions in binary form must reproduce the above copyright
11  *   notice, this list of conditions and the following disclaimer in the
12  *   documentation and/or other materials provided with the distribution.
13  * * Neither the name of the Nokia Corporation nor the names of its
14  *   contributors may be used to endorse or promote products derived from
15  *   this software without specific prior written permission.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
18  * IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
19  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
20  * PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
21  * OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
22  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
23  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
24  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
25  * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
26  * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
27  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28  */
29
30 #include "modest-connection-specific-smtp-edit-window.h"
31 #include "widgets/modest-ui-constants.h"
32 #include "modest-hildon-includes.h"
33 #include "modest-runtime.h"
34
35 #include "modest-serversecurity-picker.h"
36 #include "modest-secureauth-picker.h"
37 #include "widgets/modest-validating-entry.h"
38 #include <hildon/hildon-pannable-area.h>
39 #include <gtk/gtkbutton.h>
40 #include <gtk/gtkhbox.h>
41 #include <gtk/gtkvbox.h>
42 #include <gtk/gtkstock.h>
43 #include "modest-text-utils.h"
44 #include "modest-maemo-utils.h"
45
46 #include <glib/gi18n.h>
47
48 #define PORT_RANGE_MIN 1
49 #define PORT_RANGE_MAX 65535
50
51 G_DEFINE_TYPE (ModestConnectionSpecificSmtpEditWindow, modest_connection_specific_smtp_edit_window, GTK_TYPE_DIALOG);
52
53 #define CONNECTION_SPECIFIC_SMTP_EDIT_WINDOW_GET_PRIVATE(o) \
54         (G_TYPE_INSTANCE_GET_PRIVATE ((o), MODEST_TYPE_CONNECTION_SPECIFIC_SMTP_EDIT_WINDOW, ModestConnectionSpecificSmtpEditWindowPrivate))
55
56 static void on_response (GtkDialog *dialog,
57                          gint arg1,
58                          gpointer user_data);
59
60 typedef struct _ModestConnectionSpecificSmtpEditWindowPrivate ModestConnectionSpecificSmtpEditWindowPrivate;
61
62 struct _ModestConnectionSpecificSmtpEditWindowPrivate
63 {
64         GtkWidget *entry_outgoingserver;
65         GtkWidget *outgoing_auth_picker;
66         GtkWidget *entry_user_username;
67         GtkWidget *entry_user_password;
68         GtkWidget *outgoing_security_picker;
69         GtkWidget *entry_port;
70         
71         GtkWidget *button_ok;
72         GtkWidget *button_cancel;
73
74         gchar     *account_name;
75         
76         gboolean is_dirty;
77         gboolean range_error_occured;
78 };
79
80 static void
81 modest_connection_specific_smtp_edit_window_get_property (GObject *object, guint property_id,
82                                                                                                                         GValue *value, GParamSpec *pspec)
83 {
84         switch (property_id) {
85         default:
86                 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
87         }
88 }
89
90 static void
91 modest_connection_specific_smtp_edit_window_set_property (GObject *object, guint property_id,
92                                                                                                                         const GValue *value, GParamSpec *pspec)
93 {
94         switch (property_id) {
95         default:
96                 G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
97         }
98 }
99
100 static void
101 modest_connection_specific_smtp_edit_window_dispose (GObject *object)
102 {
103
104         
105         if (G_OBJECT_CLASS (modest_connection_specific_smtp_edit_window_parent_class)->dispose)
106                 G_OBJECT_CLASS (modest_connection_specific_smtp_edit_window_parent_class)->dispose (object);
107 }
108
109 static void
110 modest_connection_specific_smtp_edit_window_finalize (GObject *object)
111 {
112         ModestConnectionSpecificSmtpEditWindow *self = (ModestConnectionSpecificSmtpEditWindow *) object;
113         ModestConnectionSpecificSmtpEditWindowPrivate *priv =
114                 CONNECTION_SPECIFIC_SMTP_EDIT_WINDOW_GET_PRIVATE (self);
115
116         if (priv->account_name) {
117                 g_free (priv->account_name);
118                 priv->account_name = NULL;
119         }
120         G_OBJECT_CLASS (modest_connection_specific_smtp_edit_window_parent_class)->finalize (object);
121 }
122
123 static void
124 modest_connection_specific_smtp_edit_window_class_init (ModestConnectionSpecificSmtpEditWindowClass *klass)
125 {
126         GObjectClass *object_class = G_OBJECT_CLASS (klass);
127
128         g_type_class_add_private (klass, sizeof (ModestConnectionSpecificSmtpEditWindowPrivate));
129
130         object_class->get_property = modest_connection_specific_smtp_edit_window_get_property;
131         object_class->set_property = modest_connection_specific_smtp_edit_window_set_property;
132         object_class->dispose = modest_connection_specific_smtp_edit_window_dispose;
133         object_class->finalize = modest_connection_specific_smtp_edit_window_finalize;
134 }
135
136 enum MODEL_COLS {
137         MODEL_COL_NAME = 0,
138         MODEL_COL_SERVER_NAME = 1,
139         MODEL_COL_ID = 2
140 };
141
142 static void
143 on_change(GtkWidget* widget, ModestConnectionSpecificSmtpEditWindow *self)
144 {
145         ModestConnectionSpecificSmtpEditWindowPrivate *priv = 
146                 CONNECTION_SPECIFIC_SMTP_EDIT_WINDOW_GET_PRIVATE (self);
147         priv->is_dirty = TRUE;
148 }
149
150 static void
151 on_value_changed(GtkWidget* widget, GValue* value, ModestConnectionSpecificSmtpEditWindow *self)
152 {
153         ModestConnectionSpecificSmtpEditWindowPrivate *priv =
154                 CONNECTION_SPECIFIC_SMTP_EDIT_WINDOW_GET_PRIVATE (self);
155
156         priv->range_error_occured = FALSE;
157         on_change(widget, self);
158 }
159
160 static gboolean
161 on_range_error (GtkWidget *widget, HildonNumberEditorErrorType type, gpointer user_data)
162 {
163         gchar *msg;
164         ModestConnectionSpecificSmtpEditWindow *self = user_data;
165         ModestConnectionSpecificSmtpEditWindowPrivate *priv =
166                 CONNECTION_SPECIFIC_SMTP_EDIT_WINDOW_GET_PRIVATE (self);
167
168         /* We want to prevent the closure of the dialog when a range error occured. The problem is that
169          * the hildon number editor already resets the value to the default value, so we have to
170          * remember that such an error occured. */
171         priv->range_error_occured = TRUE;
172
173         if (type == HILDON_NUMBER_EDITOR_ERROR_MAXIMUM_VALUE_EXCEED) {
174                 msg = g_strdup (_HL("ckct_ib_maximum_value"));
175         } else if (type == HILDON_NUMBER_EDITOR_ERROR_MINIMUM_VALUE_EXCEED) {
176                 msg = g_strdup (_HL("ckct_ib_minimum_value"));
177         } else {
178                 msg = g_strdup_printf (_HL("ckct_ib_set_a_value_within_range"), PORT_RANGE_MIN, PORT_RANGE_MAX);
179         }
180         modest_platform_information_banner (widget, NULL, msg);
181         g_free (msg);
182
183         /* Show error message by not returning TRUE */
184         return TRUE;
185 }
186
187 static void
188 on_response (GtkDialog *dialog, int response_id, gpointer user_data)
189 {
190         const gchar *hostname;
191         ModestConnectionSpecificSmtpEditWindow *self = user_data;
192         ModestConnectionSpecificSmtpEditWindowPrivate *priv =
193                 CONNECTION_SPECIFIC_SMTP_EDIT_WINDOW_GET_PRIVATE (self);
194
195         hostname = gtk_entry_get_text (GTK_ENTRY (priv->entry_outgoingserver));
196
197         /* Don't close the dialog if a range error occured */
198         if(response_id == GTK_RESPONSE_OK && priv->range_error_occured)
199         {
200                 priv->range_error_occured = FALSE;
201                 g_signal_stop_emission_by_name (dialog, "response");
202                 gtk_widget_grab_focus (priv->entry_port);
203                 return;
204         }
205
206         /* Don't close the dialog if a range error occured */
207         if(response_id == GTK_RESPONSE_OK) {
208                 if (hostname && (hostname[0] != '\0') &&
209                     (!modest_text_utils_validate_domain_name (hostname))) { 
210                         g_signal_stop_emission_by_name (dialog, "response");
211                         hildon_banner_show_information (NULL, NULL, _("mcen_ib_invalid_servername"));
212                         gtk_widget_grab_focus (priv->entry_outgoingserver);
213                         gtk_editable_select_region (GTK_EDITABLE (priv->entry_outgoingserver), 0, -1);
214                         return;
215                 }
216         } else {
217                 /* Ask user if they want to discard changes */
218                 if (priv->is_dirty) {
219                         gint response;
220                         response = modest_platform_run_confirmation_dialog (GTK_WINDOW (user_data), 
221                                                                             _("imum_nc_wizard_confirm_lose_changes"));
222                         if (response != GTK_RESPONSE_OK)
223                                 g_signal_stop_emission_by_name (dialog, "response");
224                 }
225         }
226 }
227
228 static void on_set_focus_child (GtkContainer *container, GtkWidget *widget, gpointer user_data)
229 {
230         ModestConnectionSpecificSmtpEditWindow *self = user_data;
231         ModestConnectionSpecificSmtpEditWindowPrivate *priv =
232                 CONNECTION_SPECIFIC_SMTP_EDIT_WINDOW_GET_PRIVATE (self);
233
234         /* Another child gained focus. Since the number editor already reset a
235          * possible range error to the default value, we allow closure of the
236          * dialog */
237         priv->range_error_occured = FALSE;
238 }
239
240 static void
241 on_security_picker_changed (HildonPickerButton *widget, gpointer user_data)
242 {
243         ModestConnectionSpecificSmtpEditWindow *self = 
244                 MODEST_CONNECTION_SPECIFIC_SMTP_EDIT_WINDOW (user_data);
245         ModestConnectionSpecificSmtpEditWindowPrivate *priv = 
246                 CONNECTION_SPECIFIC_SMTP_EDIT_WINDOW_GET_PRIVATE (self);
247         
248         on_change(GTK_WIDGET(widget), self);
249         
250         const gint port_number = 
251                 modest_serversecurity_picker_get_active_serversecurity_port (
252                         MODEST_SERVERSECURITY_PICKER (priv->outgoing_security_picker));
253
254         if(port_number != 0) {
255                 hildon_number_editor_set_value (
256                         HILDON_NUMBER_EDITOR (priv->entry_port), port_number);
257         }               
258 }
259
260 static void
261 modest_connection_specific_smtp_edit_window_init (ModestConnectionSpecificSmtpEditWindow *self)
262 {
263         ModestConnectionSpecificSmtpEditWindowPrivate *priv; 
264         GtkWidget *dialog_box;
265         GtkWidget *pannable, *vbox;
266
267         /* The title of this dialog is quite long, so make the window wide enough */
268         gtk_widget_set_size_request (GTK_WIDGET (self), 600, 320);
269
270         priv = CONNECTION_SPECIFIC_SMTP_EDIT_WINDOW_GET_PRIVATE (self);
271         dialog_box = GTK_DIALOG(self)->vbox; /* gtk_vbox_new (FALSE, MODEST_MARGIN_HALF); */
272         gtk_box_set_spacing (GTK_BOX (dialog_box), MODEST_MARGIN_NONE);
273         gtk_container_set_border_width (GTK_CONTAINER (dialog_box), MODEST_MARGIN_HALF);
274
275         vbox = gtk_vbox_new (FALSE, 0);
276         
277         /* Create a size group to be used by all captions.
278          * Note that HildonCaption does not create a default size group if we do not specify one.
279          * We use GTK_SIZE_GROUP_HORIZONTAL, so that the widths are the same. */
280         GtkSizeGroup *sizegroup = gtk_size_group_new(GTK_SIZE_GROUP_HORIZONTAL);
281          
282         /* The outgoing server widgets: */
283         if (!priv->entry_outgoingserver)
284                 priv->entry_outgoingserver = gtk_entry_new ();
285         /* Auto-capitalization is the default, so let's turn it off: */
286         hildon_gtk_entry_set_input_mode (GTK_ENTRY (priv->entry_outgoingserver), HILDON_GTK_INPUT_MODE_FULL);
287         g_signal_connect(G_OBJECT(priv->entry_outgoingserver), "changed", G_CALLBACK(on_change), self);
288         
289         GtkWidget *captioned = 
290           modest_maemo_utils_create_captioned (sizegroup, 
291                                                _("mcen_li_emailsetup_smtp"), 
292                                                priv->entry_outgoingserver);
293         gtk_widget_show (priv->entry_outgoingserver);
294         gtk_box_pack_start (GTK_BOX (vbox), captioned, FALSE, FALSE, MODEST_MARGIN_HALF);
295         gtk_widget_show (captioned);
296         
297         /* The secure authentication widgets: */
298         if (!priv->outgoing_auth_picker) {
299                 priv->outgoing_auth_picker = 
300                         GTK_WIDGET (modest_secureauth_picker_new (MODEST_EDITABLE_SIZE,
301                                                                   MODEST_EDITABLE_ARRANGEMENT));
302         }
303         modest_maemo_utils_create_picker_layout (sizegroup, 
304                                                  _("mcen_li_emailsetup_secure_authentication"),
305                                                  priv->outgoing_auth_picker);
306         g_signal_connect (G_OBJECT (priv->outgoing_auth_picker), "value-changed", G_CALLBACK(on_change), self);
307         gtk_widget_show (priv->outgoing_auth_picker);
308         gtk_box_pack_start (GTK_BOX (vbox), priv->outgoing_auth_picker, FALSE, FALSE, MODEST_MARGIN_HALF);
309         
310         /* The username widgets: */     
311         priv->entry_user_username = GTK_WIDGET (modest_validating_entry_new ());
312         /* Auto-capitalization is the default, so let's turn it off: */
313         hildon_gtk_entry_set_input_mode (GTK_ENTRY (priv->entry_user_username), HILDON_GTK_INPUT_MODE_FULL);
314         captioned = modest_maemo_utils_create_captioned (sizegroup, _("mail_fi_username"), 
315                                                          priv->entry_user_username);
316         g_signal_connect(G_OBJECT(priv->entry_user_username), "changed", G_CALLBACK(on_change), self);
317         gtk_widget_show (priv->entry_user_username);
318         gtk_box_pack_start (GTK_BOX (vbox), captioned, FALSE, FALSE, MODEST_MARGIN_HALF);
319         gtk_widget_show (captioned);
320         
321         /* Prevent the use of some characters in the username, 
322          * as required by our UI specification: */
323         modest_validating_entry_set_unallowed_characters_whitespace (
324                 MODEST_VALIDATING_ENTRY (priv->entry_user_username));
325         
326         /* Set max length as in the UI spec:
327          * TODO: The UI spec seems to want us to show a dialog if we hit the maximum. */
328         gtk_entry_set_max_length (GTK_ENTRY (priv->entry_user_username), 64);
329         
330         /* The password widgets: */     
331         priv->entry_user_password = gtk_entry_new ();
332         /* Auto-capitalization is the default, so let's turn it off: */
333         hildon_gtk_entry_set_input_mode (GTK_ENTRY (priv->entry_user_password), 
334                 HILDON_GTK_INPUT_MODE_FULL | HILDON_GTK_INPUT_MODE_INVISIBLE);
335         gtk_entry_set_visibility (GTK_ENTRY (priv->entry_user_password), FALSE);
336         /* gtk_entry_set_invisible_char (GTK_ENTRY (priv->entry_user_password), '*'); */
337         captioned = modest_maemo_utils_create_captioned (sizegroup, 
338                 _("mail_fi_password"), priv->entry_user_password);
339         g_signal_connect(G_OBJECT(priv->entry_user_password), "changed", G_CALLBACK(on_change), self);
340         gtk_widget_show (priv->entry_user_password);
341         gtk_box_pack_start (GTK_BOX (vbox), captioned, FALSE, FALSE, MODEST_MARGIN_HALF);
342         gtk_widget_show (captioned);
343         
344         /* The secure connection widgets: */    
345         if (!priv->outgoing_security_picker)
346                 priv->outgoing_security_picker = 
347                         GTK_WIDGET (modest_serversecurity_picker_new (MODEST_EDITABLE_SIZE,
348                                                                       MODEST_EDITABLE_ARRANGEMENT));
349         modest_serversecurity_picker_fill (
350                 MODEST_SERVERSECURITY_PICKER (priv->outgoing_security_picker), MODEST_PROTOCOLS_TRANSPORT_SMTP);
351         modest_serversecurity_picker_set_active_serversecurity (
352                 MODEST_SERVERSECURITY_PICKER (priv->outgoing_security_picker), MODEST_PROTOCOLS_CONNECTION_NONE);
353         modest_maemo_utils_create_picker_layout (sizegroup,  _("mcen_li_emailsetup_secure_connection"), priv->outgoing_security_picker);
354         gtk_widget_show (priv->outgoing_security_picker);
355         gtk_box_pack_start (GTK_BOX (vbox), priv->outgoing_security_picker, FALSE, FALSE, MODEST_MARGIN_HALF);
356         
357         /* The port number widgets: */
358         if (!priv->entry_port)
359                 priv->entry_port = GTK_WIDGET (hildon_number_editor_new (PORT_RANGE_MIN, PORT_RANGE_MAX));
360         captioned = modest_maemo_utils_create_captioned (sizegroup, 
361                 _("mcen_fi_emailsetup_port"), priv->entry_port);
362         gtk_widget_add_events(GTK_WIDGET(priv->entry_port), GDK_FOCUS_CHANGE_MASK);
363         g_signal_connect(G_OBJECT(priv->entry_port), "range-error", G_CALLBACK(on_range_error), self);
364         g_signal_connect(G_OBJECT(priv->entry_port), "notify::value", G_CALLBACK(on_value_changed), self);
365         gtk_widget_show (priv->entry_port);
366         gtk_box_pack_start (GTK_BOX (vbox), captioned, FALSE, FALSE, MODEST_MARGIN_HALF);
367         gtk_widget_show (captioned);
368         
369         /* Show a default port number when the security method changes, as per the UI spec: */
370         g_signal_connect (G_OBJECT (priv->outgoing_security_picker), "value-changed", (GCallback)on_security_picker_changed, self);
371         on_security_picker_changed (HILDON_PICKER_BUTTON (priv->outgoing_security_picker), self);
372         
373         /* Add the buttons: */
374         gtk_dialog_add_button (GTK_DIALOG (self), _("mcen_bd_dialog_ok"), GTK_RESPONSE_OK);
375         
376         priv->is_dirty = FALSE;
377         priv->range_error_occured = FALSE;
378         g_signal_connect(G_OBJECT(self), "response", G_CALLBACK(on_response), self);
379         g_signal_connect(G_OBJECT(vbox), "set-focus-child", G_CALLBACK(on_set_focus_child), self);
380
381         priv->account_name = NULL;
382
383         pannable = hildon_pannable_area_new ();
384         g_object_set (G_OBJECT (pannable), "initial-hint", TRUE, NULL);
385         hildon_pannable_area_add_with_viewport (HILDON_PANNABLE_AREA (pannable), vbox);
386         gtk_box_pack_start (GTK_BOX (dialog_box), pannable, TRUE, TRUE, 0);
387         
388         gtk_widget_show_all (dialog_box);
389         gtk_window_set_default_size (GTK_WINDOW (self), -1, 220);
390         
391         
392         /* When this window is shown, hibernation should not be possible, 
393          * because there is no sensible way to save the state: */
394         modest_window_mgr_prevent_hibernation_while_window_is_shown (
395                 modest_runtime_get_window_mgr (), GTK_WINDOW (self)); 
396         
397         hildon_help_dialog_help_enable (GTK_DIALOG(self),
398                                         "applications_email_connectionspecificsmtpconf",
399                                         modest_maemo_utils_get_osso_context());
400 }
401
402 ModestConnectionSpecificSmtpEditWindow*
403 modest_connection_specific_smtp_edit_window_new (void)
404 {
405         return g_object_new (MODEST_TYPE_CONNECTION_SPECIFIC_SMTP_EDIT_WINDOW, NULL);
406 }
407
408 void
409 modest_connection_specific_smtp_edit_window_set_connection (
410         ModestConnectionSpecificSmtpEditWindow *window, const gchar* iap_id, const gchar* iap_name,
411         ModestServerAccountSettings *server_settings)
412 {
413         ModestConnectionSpecificSmtpEditWindowPrivate *priv = 
414                 CONNECTION_SPECIFIC_SMTP_EDIT_WINDOW_GET_PRIVATE (window);
415
416         /* This causes a warning because of the %s in the translation, but not in the original string: */
417         gchar* title = g_strdup_printf (_("mcen_ti_connection_connection_name"), iap_name);
418         gtk_window_set_title (GTK_WINDOW (window), title);
419         g_free (title);
420
421         if (server_settings) 
422         {
423                 /* Setting known values */
424                 if (priv->account_name)
425                         g_free (priv->account_name);
426                 priv->account_name = g_strdup (modest_server_account_settings_get_account_name (server_settings));
427                 gtk_entry_set_text (GTK_ENTRY (priv->entry_outgoingserver), 
428                                     modest_server_account_settings_get_hostname (server_settings));
429                 gtk_entry_set_text (GTK_ENTRY (priv->entry_user_username),
430                                     modest_server_account_settings_get_username (server_settings));     
431                 gtk_entry_set_text (GTK_ENTRY (priv->entry_user_password), 
432                                     modest_server_account_settings_get_password (server_settings));
433         
434                 modest_serversecurity_picker_set_active_serversecurity (
435                 MODEST_SERVERSECURITY_PICKER (priv->outgoing_security_picker), 
436                 modest_server_account_settings_get_security_protocol (server_settings));
437         
438                 modest_secureauth_picker_set_active_secureauth (
439                 MODEST_SECUREAUTH_PICKER (priv->outgoing_auth_picker), 
440                 modest_server_account_settings_get_auth_protocol (server_settings));
441                 
442                 /* port: */
443                 hildon_number_editor_set_value (
444                         HILDON_NUMBER_EDITOR (priv->entry_port), 
445                         modest_server_account_settings_get_port (server_settings));
446                 
447                 
448                 /* This will cause changed signals so we set dirty back to FALSE */
449                 priv->is_dirty = FALSE;
450         }
451 }
452
453 ModestServerAccountSettings*
454 modest_connection_specific_smtp_edit_window_get_settings (ModestConnectionSpecificSmtpEditWindow *window)
455 {
456         ModestConnectionSpecificSmtpEditWindowPrivate *priv = NULL;
457         ModestServerAccountSettings *server_settings = NULL;
458         const gchar *outgoing_server = NULL;
459
460         priv =  CONNECTION_SPECIFIC_SMTP_EDIT_WINDOW_GET_PRIVATE (window);
461         outgoing_server = gtk_entry_get_text (GTK_ENTRY (priv->entry_outgoingserver));
462
463         /* If the outgoing server is NULL, we are removing the connection specific
464          * settings */
465         if ((outgoing_server == NULL) || (outgoing_server[0] == '\0')) {
466                 return NULL;
467         }
468         
469         server_settings = modest_server_account_settings_new ();
470         
471         modest_server_account_settings_set_hostname (server_settings, 
472                                                      gtk_entry_get_text (GTK_ENTRY (priv->entry_outgoingserver)));
473         modest_server_account_settings_set_protocol (server_settings,
474                                                      MODEST_PROTOCOLS_TRANSPORT_SMTP);
475         modest_server_account_settings_set_username (server_settings,
476                                                      gtk_entry_get_text (GTK_ENTRY (priv->entry_user_username)));
477         modest_server_account_settings_set_password (server_settings,
478                                                      gtk_entry_get_text (GTK_ENTRY (priv->entry_user_password)));
479         
480         modest_server_account_settings_set_security_protocol (server_settings, 
481                                                      modest_serversecurity_picker_get_active_serversecurity (
482                                                      MODEST_SERVERSECURITY_PICKER (priv->outgoing_security_picker)));
483         modest_server_account_settings_set_auth_protocol (server_settings,
484                                                           modest_secureauth_picker_get_active_secureauth (
485                                                           MODEST_SECUREAUTH_PICKER (priv->outgoing_auth_picker)));
486         modest_server_account_settings_set_account_name (server_settings,
487                                                          priv->account_name);
488         
489         /* port: */
490         modest_server_account_settings_set_port (server_settings,
491                                                  hildon_number_editor_get_value (HILDON_NUMBER_EDITOR (priv->entry_port)));
492                         
493         return server_settings;
494 }
495
496 gboolean 
497 modest_connection_specific_smtp_edit_window_is_dirty(ModestConnectionSpecificSmtpEditWindow *window)
498 {
499         ModestConnectionSpecificSmtpEditWindowPrivate *priv = 
500                 CONNECTION_SPECIFIC_SMTP_EDIT_WINDOW_GET_PRIVATE (window);
501         
502         return priv->is_dirty;
503 }