* add some error error checking when trying to retrieve the device name
[modest] / src / modest-init.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 <config.h>
31 #include <glib.h>
32 #include <glib-object.h>
33 #include <glib/gstdio.h>
34 #include <modest-runtime.h>
35 #include <modest-runtime-priv.h>
36 #include <modest-init.h>
37 #include <modest-defs.h>
38 #include <modest-singletons.h>
39 #include <widgets/modest-header-view.h>
40 #include <widgets/modest-folder-view.h>
41 #include <modest-tny-platform-factory.h>
42 #include <modest-platform.h>
43 #include <modest-widget-memory.h>
44 #include <modest-widget-memory-priv.h>
45 #include <modest-local-folder-info.h>
46 #include <modest-account-mgr.h>
47 #include <modest-account-mgr-helpers.h>
48 #include <modest-icon-names.h>
49 #include "widgets/modest-global-settings-dialog.h"
50 #include "modest-tny-msg.h"
51
52 static gboolean init_header_columns (ModestConf *conf, gboolean overwrite);
53 static gboolean init_local_folders  (void);
54 static gboolean init_default_account_maybe  (ModestAccountMgr *acc_mgr);
55 static void     init_i18n (void);
56 static void     init_stock_icons (void);
57 static void     init_debug_g_type (void);
58 static void     init_debug_logging (void);
59 static void     init_default_settings (ModestConf *conf);
60 static void     init_device_name (ModestConf *conf);
61
62 /*
63  * defaults for the column headers
64  */
65 typedef struct {
66         ModestHeaderViewColumn col;
67         guint                  width;
68         gint                  sort;
69 } FolderCols;
70
71 static const FolderCols INBOX_COLUMNS_DETAILS[] = {
72         {MODEST_HEADER_VIEW_COLUMN_MSGTYPE, 40, 0},
73         {MODEST_HEADER_VIEW_COLUMN_ATTACH,  40, 0},
74         {MODEST_HEADER_VIEW_COLUMN_FROM,    80, 0},
75         {MODEST_HEADER_VIEW_COLUMN_SUBJECT, 80, 0},
76         {MODEST_HEADER_VIEW_COLUMN_RECEIVED_DATE, 60, 0},
77         {MODEST_HEADER_VIEW_COLUMN_SIZE, 50, 0}
78 };
79
80 static const FolderCols INBOX_COLUMNS_TWOLINES[] = {
81         {MODEST_HEADER_VIEW_COLUMN_COMPACT_FLAG, 40, 0},
82         {MODEST_HEADER_VIEW_COLUMN_COMPACT_HEADER_IN, 180, 0},
83         {MODEST_HEADER_VIEW_COLUMN_COMPACT_RECEIVED_DATE, 240, -1}
84 };
85
86 static const FolderCols OUTBOX_COLUMNS_DETAILS[] = {
87         {MODEST_HEADER_VIEW_COLUMN_MSGTYPE, 40, 0},
88         {MODEST_HEADER_VIEW_COLUMN_ATTACH,  40, 0},
89         {MODEST_HEADER_VIEW_COLUMN_TO,    80, 0},
90         {MODEST_HEADER_VIEW_COLUMN_SUBJECT, 80, 0},
91         {MODEST_HEADER_VIEW_COLUMN_SENT_DATE, 80, 0},
92         {MODEST_HEADER_VIEW_COLUMN_SIZE, 50, 0}
93 };
94
95 static const FolderCols OUTBOX_COLUMNS_TWOLINES[] = {
96         {MODEST_HEADER_VIEW_COLUMN_COMPACT_FLAG, 40, 0},
97         {MODEST_HEADER_VIEW_COLUMN_COMPACT_HEADER_OUT,180, 0},
98         {MODEST_HEADER_VIEW_COLUMN_STATUS, 240, 0}
99 };
100
101 static const FolderCols SENT_COLUMNS_TWOLINES[] = {
102         {MODEST_HEADER_VIEW_COLUMN_COMPACT_FLAG, 40, 0},
103         {MODEST_HEADER_VIEW_COLUMN_COMPACT_HEADER_OUT,180, 0},
104         {MODEST_HEADER_VIEW_COLUMN_COMPACT_SENT_DATE, 240, -1}
105 };
106
107 #ifdef MODEST_PLATFORM_MAEMO
108 static const TnyFolderType LOCAL_FOLDERS[] = {
109         TNY_FOLDER_TYPE_OUTBOX,
110         TNY_FOLDER_TYPE_DRAFTS,
111         TNY_FOLDER_TYPE_SENT
112 };
113 #else
114 static const TnyFolderType LOCAL_FOLDERS[] = {
115         TNY_FOLDER_TYPE_OUTBOX,
116         TNY_FOLDER_TYPE_DRAFTS,
117         TNY_FOLDER_TYPE_SENT,
118         TNY_FOLDER_TYPE_TRASH,
119         TNY_FOLDER_TYPE_ARCHIVE 
120 };
121 #endif /* MODEST_PLATFORM_MAEMO */
122
123
124 gboolean
125 modest_init_init_core (void)
126 {
127         gboolean reset;
128         static gboolean invoked = FALSE;
129
130         if (invoked) {
131                 g_printerr ("modest: modest_init_init_core may only be invoked once\n");
132                 g_assert (!invoked); /* abort */
133                 return FALSE;
134         } else
135                 invoked = TRUE;
136         
137         init_i18n();
138         init_debug_g_type();
139         init_debug_logging();
140
141         if (!g_thread_supported())
142                 g_thread_init(NULL);
143         
144         gdk_threads_init ();
145         
146         if (!modest_runtime_init()) {
147                 modest_init_uninit ();
148                 g_printerr ("modest: failed to initialize the modest runtime\n");
149                 return FALSE;
150         }
151
152
153         /* do an initial guess for the device name */
154         init_device_name (modest_runtime_get_conf());
155
156         if (!modest_platform_init()) {
157                 modest_init_uninit ();
158                 g_printerr ("modest: failed to run platform-specific initialization\n");
159                 return FALSE;
160         }
161
162         /* based on the debug settings, we decide whether to overwrite old settings */
163         reset = modest_runtime_get_debug_flags () & MODEST_RUNTIME_DEBUG_FACTORY_SETTINGS;
164         if (!init_header_columns(modest_runtime_get_conf(), reset)) {
165                 modest_init_uninit ();
166                 g_printerr ("modest: failed to init header columns\n");
167                 return FALSE;
168         }
169
170         init_default_settings (modest_runtime_get_conf ());
171         
172         if (!init_local_folders()) {
173                 modest_init_uninit ();
174                 g_printerr ("modest: failed to init local folders\n");
175                 return FALSE;
176         }
177         
178         if (!init_default_account_maybe(modest_runtime_get_account_mgr ())) {
179                 modest_init_uninit ();
180                 g_printerr ("modest: failed to init default account\n");
181                 return FALSE;
182         }
183         
184         return TRUE;
185 }
186
187
188 gboolean
189 modest_init_init_ui (gint argc, gchar** argv)
190 {
191         if (!gtk_init_check(&argc, &argv)) {
192                 g_printerr ("modest: failed to initialize graphical ui\n");
193                 return FALSE;
194         }
195
196         /* Set application name */
197         g_set_application_name (modest_platform_get_app_name());
198         /* g_message (modest_platform_get_app_name()); */
199
200         init_stock_icons ();
201         return TRUE;
202 }
203
204
205 gboolean
206 modest_init_uninit (void)
207 {
208         if (!modest_runtime_uninit())
209                 g_printerr ("modest: failed to uninit runtime\n");
210                 
211         return TRUE;
212 }
213
214
215
216
217 /* NOTE: the exact details of this format are important, as they
218  * are also used in modest-widget-memory. FIXME: make a shared function
219  * for this with widget-memory
220  */
221 static gboolean
222 save_header_settings (ModestConf *conf, TnyFolderType type,
223                       ModestHeaderViewStyle style,  const FolderCols* cols,
224                       guint col_num, gboolean overwrite)
225 {
226         int i;
227         gchar *key;
228         GString *str;
229
230         g_return_val_if_fail (cols, FALSE);
231
232         key = _modest_widget_memory_get_keyname_with_double_type ("header-view",
233                                                                   type, style,
234                                                                   MODEST_WIDGET_MEMORY_PARAM_COLUMN_WIDTH);
235         /* if we're not in overwrite mode, only write stuff it
236          * there was nothing before */
237         if (!overwrite &&  modest_conf_key_exists(conf, key, NULL)) {
238                 g_free (key);
239                 return TRUE;
240         }
241
242         /* the format is necessarily the same as the one in modest-widget-memory */
243         str = g_string_new (NULL);
244         for (i = 0; i != col_num; ++i) 
245                 g_string_append_printf (str, "%d:%d:%d ",
246                                         cols[i].col, cols[i].width, cols[i].sort); 
247
248         modest_conf_set_string (conf, key, str->str, NULL);
249         g_free (key);
250         g_string_free (str, TRUE);
251         
252         return TRUE;
253 }
254
255 /**
256  * modest_init_header_columns:
257  * @overwrite: write the setting, even if it already exists
258  * 
259  * will set defaults for the columns to show for folder,
260  * if there are no such settings yet (in ModestWidgetMemory)
261  * 
262  * Returns: TRUE if succeeded, FALSE in case of error
263  */
264 static gboolean
265 init_header_columns (ModestConf *conf, gboolean overwrite)
266 {
267         int folder_type;
268         
269         for (folder_type = TNY_FOLDER_TYPE_UNKNOWN;
270              folder_type <= TNY_FOLDER_TYPE_CALENDAR; ++folder_type) {          
271                 
272                 switch (folder_type) {
273                 case TNY_FOLDER_TYPE_SENT:
274                 case TNY_FOLDER_TYPE_DRAFTS:
275                 save_header_settings (conf, folder_type,
276                                       MODEST_HEADER_VIEW_STYLE_DETAILS,
277                                       OUTBOX_COLUMNS_DETAILS,
278                                       G_N_ELEMENTS(OUTBOX_COLUMNS_DETAILS),
279                                       overwrite);
280                 save_header_settings (conf, folder_type,
281                                       MODEST_HEADER_VIEW_STYLE_TWOLINES,
282                                       SENT_COLUMNS_TWOLINES,
283                                       G_N_ELEMENTS(SENT_COLUMNS_TWOLINES),
284                                       overwrite);
285                 break;
286                 case TNY_FOLDER_TYPE_OUTBOX:
287                 save_header_settings (conf, folder_type,
288                                       MODEST_HEADER_VIEW_STYLE_TWOLINES,
289                                       OUTBOX_COLUMNS_TWOLINES,
290                                       G_N_ELEMENTS(OUTBOX_COLUMNS_TWOLINES),
291                                       overwrite);
292                 break;
293
294                 default:
295                 save_header_settings (conf, folder_type,
296                                       MODEST_HEADER_VIEW_STYLE_DETAILS,
297                                       INBOX_COLUMNS_DETAILS,
298                                       G_N_ELEMENTS(INBOX_COLUMNS_DETAILS),
299                                       overwrite);
300                 save_header_settings (conf, folder_type,
301                                       MODEST_HEADER_VIEW_STYLE_TWOLINES,
302                                       INBOX_COLUMNS_TWOLINES,
303                                       G_N_ELEMENTS(INBOX_COLUMNS_TWOLINES),
304                                       overwrite);
305                 };
306         }
307         return TRUE;
308 }
309
310 /**
311  * init_local_folders:
312  * 
313  * create the Local Folders folder under cache, if they
314  * do not exist yet.
315  * 
316  * Returns: TRUE if the folder were already there, or
317  * they were created, FALSE otherwise
318  */
319 static gboolean
320 init_local_folders  (void)
321 {
322         int i;
323         gchar *maildir_path;
324         static const gchar* maildirs[] = {
325                 "cur", "new", "tmp"
326         };
327         
328         maildir_path = modest_local_folder_info_get_maildir_path ();
329
330         for (i = 0; i != G_N_ELEMENTS(LOCAL_FOLDERS); ++i) {
331                 int j;
332                 for (j = 0; j != G_N_ELEMENTS(maildirs); ++j) {
333                         gchar *dir;
334                         dir = g_build_filename (maildir_path,
335                                                 modest_local_folder_info_get_type_name(LOCAL_FOLDERS[i]),
336                                                 maildirs[j],
337                                                 NULL);
338                         if (g_mkdir_with_parents (dir, 0755) < 0) {
339                                 g_printerr ("modest: failed to create %s\n", dir);
340                                 g_free (dir);
341                                 g_free (maildir_path);
342                                 return FALSE;
343                         }
344                         g_free(dir);
345                 }
346         }
347         
348         g_free (maildir_path);
349         return TRUE;
350 }
351
352
353
354 static void
355 free_element (gpointer data, gpointer user_data)
356 {
357         g_free (data);
358 }
359
360
361 /* TODO: This is a duplicate of modest_account_mgr_set_first_account_as_default(). */
362 /**
363  * init_default_account_maybe:
364  *
365  * if there are accounts defined, but there is no default account,
366  * it will be defined.
367  * 
368  * Returns: TRUE if there was a default account already,
369  *  or one has been created or there are no accounts yet,
370  *  returns FALSE in case of error
371  */
372 static gboolean
373 init_default_account_maybe  (ModestAccountMgr *acc_mgr)
374 {
375         GSList *all_accounts = NULL;
376         gchar *default_account;
377         gboolean retval = TRUE;
378         
379         all_accounts = modest_account_mgr_account_names (acc_mgr, TRUE /* enabled accounts only */);
380         if (all_accounts) { /* if there are any accounts, there should be a default one */
381                 default_account = 
382                         modest_account_mgr_get_default_account (acc_mgr);
383                 if (!default_account) {
384                         gchar *first_account;
385                         g_printerr ("modest: no default account defined\n");
386                         first_account = (gchar*)all_accounts->data;
387                         if ((retval = modest_account_mgr_set_default_account (acc_mgr, first_account)))
388                                 g_printerr ("modest: set '%s' as the default account\n",
389                                             first_account);
390                         else
391                                 g_printerr ("modest: failed to set '%s' as the default account\n",
392                                             first_account);
393                         g_free (default_account);
394                 }
395                 g_slist_foreach (all_accounts, free_element, NULL);
396                 g_slist_free    (all_accounts);
397         }
398         return retval;
399 }
400
401
402
403 static void
404 init_debug_g_type (void)
405 {
406         GTypeDebugFlags gflags;
407         ModestRuntimeDebugFlags mflags;
408         
409         gflags = 0;
410         mflags = modest_runtime_get_debug_flags ();
411
412         if (mflags & MODEST_RUNTIME_DEBUG_DEBUG_OBJECTS)
413                 gflags |= G_TYPE_DEBUG_OBJECTS;
414         if (mflags & MODEST_RUNTIME_DEBUG_DEBUG_SIGNALS)
415                 gflags |= G_TYPE_DEBUG_SIGNALS;
416
417         g_type_init_with_debug_flags (gflags);
418 }
419
420 static void
421 init_debug_logging (void)
422 {
423         ModestRuntimeDebugFlags mflags;
424         mflags = modest_runtime_get_debug_flags ();
425         
426         if (mflags & MODEST_RUNTIME_DEBUG_ABORT_ON_WARNING)
427                 g_log_set_always_fatal (G_LOG_LEVEL_ERROR |
428                                         G_LOG_LEVEL_CRITICAL |
429                                         G_LOG_LEVEL_WARNING);
430 }
431
432
433 static void
434 init_i18n (void)
435 {
436         const gchar* gettext_package;
437         /* Setup gettext, to use our .po files: */
438         /* GETTEXT_PACKAGE and MODEST_LOCALE_DIR are defined in config.h */
439 #ifdef MODEST_HILDON_VERSION_0
440         gettext_package = GETTEXT_PACKAGE;
441         bindtextdomain (gettext_package, MODEST_LOCALE_DIR);
442 #else
443         gettext_package = "osso-email"; /* HACK to use the localizations */
444         bindtextdomain (gettext_package, "/usr/share/locale");
445 #endif /*MODEST_HILDON_VERSION_0*/
446         
447         bind_textdomain_codeset (gettext_package, "UTF-8");
448         textdomain (gettext_package);
449 }
450
451
452 /* 
453  *  This function registers our custom toolbar icons, so they can be
454  *  themed. The idea of this function was taken from the gtk-demo
455  */
456 static void
457 init_stock_icons (void)
458 {
459         static gboolean registered = FALSE;
460   
461         if (!registered) {
462                 GtkIconTheme *current_theme;
463                 GdkPixbuf *pixbuf;
464                 GtkIconFactory *factory;
465                 gint i;
466
467                 static GtkStockItem items[] = {
468 #ifdef MODEST_PLATFORM_MAEMO
469                         { MODEST_STOCK_SPLIT_VIEW, "split view", 0, 0, NULL },
470                         { MODEST_STOCK_SORT, "sort mail", 0, 0, NULL },
471                         { MODEST_STOCK_REFRESH, "refresh mail", 0, 0, NULL },
472 #endif /*MODEST_PLATFORM_MAEMO*/
473                         { MODEST_STOCK_MAIL_SEND, "send mail", 0, 0, NULL },
474                         { MODEST_STOCK_NEW_MAIL, "new mail", 0, 0, NULL },
475 /*                      { MODEST_STOCK_SEND_RECEIVE, "send receive", 0, 0, NULL },  */
476                         { MODEST_STOCK_REPLY, "reply", 0, 0, NULL },
477                         { MODEST_STOCK_REPLY_ALL, "reply all", 0, 0, NULL },
478                         { MODEST_STOCK_FORWARD, "forward", 0, 0, NULL },
479                         { MODEST_STOCK_DELETE, "delete", 0, 0, NULL }, 
480 /*                      { MODEST_STOCK_NEXT, "next", 0, 0, NULL }, */
481 /*                      { MODEST_STOCK_PREV, "prev", 0, 0, NULL }, */
482 /*                      { MODEST_STOCK_STOP, "stop", 0, 0, NULL } */
483                 };
484       
485                 static gchar *items_names [] = {
486 #ifdef MODEST_PLATFORM_MAEMO
487                         MODEST_TOOLBAR_ICON_SPLIT_VIEW,
488                         MODEST_TOOLBAR_ICON_SORT,
489                         MODEST_TOOLBAR_ICON_REFRESH,
490 #endif /*MODEST_PLATFORM_MAEMO*/
491                         MODEST_TOOLBAR_ICON_MAIL_SEND,
492                         MODEST_TOOLBAR_ICON_NEW_MAIL,
493 /*                      MODEST_TOOLBAR_ICON_SEND_RECEIVE,  */
494                         MODEST_TOOLBAR_ICON_REPLY,      
495                         MODEST_TOOLBAR_ICON_REPLY_ALL,
496                         MODEST_TOOLBAR_ICON_FORWARD,
497                         MODEST_TOOLBAR_ICON_DELETE, 
498 /*                      MODEST_TOOLBAR_ICON_NEXT, */
499 /*                      MODEST_TOOLBAR_ICON_PREV, */
500 /*                      MODEST_TOOLBAR_ICON_STOP */
501                         MODEST_TOOLBAR_ICON_FORMAT_BULLETS,
502                 };
503
504                 registered = TRUE;
505
506                 /* Register our stock items */
507                 gtk_stock_add (items, G_N_ELEMENTS (items));
508       
509                 /* Add our custom icon factory to the list of defaults */
510                 factory = gtk_icon_factory_new ();
511                 gtk_icon_factory_add_default (factory);
512
513                 current_theme = gtk_icon_theme_get_default ();
514
515                 /* Register icons to accompany stock items */
516                 for (i = 0; i < G_N_ELEMENTS (items); i++) {
517
518 #ifdef MODEST_PLATFORM_MAEMO  /* MODES_PLATFORM_ID: 1 ==> gnome, 2==> maemo */ 
519                         pixbuf = gtk_icon_theme_load_icon (current_theme,
520                                                            items_names[i],
521                                                            26,
522                                                            GTK_ICON_LOOKUP_NO_SVG,
523                                                            NULL);
524 #else
525                         pixbuf = gdk_pixbuf_new_from_file (items_names[i], NULL);
526 #endif
527
528                         if (pixbuf != NULL) {
529                                 GtkIconSet *icon_set;
530                                 GdkPixbuf *transparent;
531
532                                 transparent = gdk_pixbuf_add_alpha (pixbuf, TRUE, 0xff, 0xff, 0xff);
533                                 icon_set = gtk_icon_set_new_from_pixbuf (transparent);
534                                 gtk_icon_factory_add (factory, items[i].stock_id, icon_set);
535                                 gtk_icon_set_unref (icon_set);
536                                 g_object_unref (pixbuf);
537                                 g_object_unref (transparent);
538                         }
539                         else
540                                 g_warning ("failed to load %s icon", items_names[i]);
541                 }
542                 /* Drop our reference to the factory, GTK will hold a reference. */
543                 g_object_unref (factory);
544         }
545 }
546
547
548 static void
549 init_default_settings (ModestConf *conf)
550 {
551         if (!modest_conf_key_exists (conf, MODEST_CONF_SHOW_TOOLBAR, NULL))
552                 modest_conf_set_bool (conf, MODEST_CONF_SHOW_TOOLBAR, TRUE, NULL);
553
554         if (!modest_conf_key_exists (conf, MODEST_CONF_SHOW_TOOLBAR_FULLSCREEN, NULL))
555                 modest_conf_set_bool (conf, MODEST_CONF_SHOW_TOOLBAR_FULLSCREEN, TRUE, NULL);
556         
557         if (!modest_conf_key_exists (conf, MODEST_CONF_SHOW_CC, NULL))
558                 modest_conf_set_bool (conf, MODEST_CONF_SHOW_CC, TRUE, NULL);
559
560         if (!modest_conf_key_exists (conf, MODEST_CONF_SHOW_BCC, NULL))
561                 modest_conf_set_bool (conf, MODEST_CONF_SHOW_BCC, FALSE, NULL);
562
563         if (!modest_conf_key_exists (conf, MODEST_CONF_CONNECT_AT_STARTUP, NULL))
564                 modest_conf_set_bool (conf, MODEST_CONF_CONNECT_AT_STARTUP, TRUE, NULL);
565
566         /* Global settings */
567         if (!modest_conf_key_exists (conf, MODEST_CONF_AUTO_UPDATE, NULL))
568                 modest_conf_set_bool (conf, MODEST_CONF_AUTO_UPDATE, TRUE, NULL);
569
570         if (!modest_conf_key_exists (conf, MODEST_CONF_UPDATE_WHEN_CONNECTED_BY, NULL))
571                 modest_conf_set_int (conf, MODEST_CONF_UPDATE_WHEN_CONNECTED_BY, MODEST_CONNECTED_VIA_WLAN, NULL);
572
573         if (!modest_conf_key_exists (conf, MODEST_CONF_UPDATE_INTERVAL, NULL))
574                 modest_conf_set_int (conf, MODEST_CONF_UPDATE_INTERVAL, MODEST_UPDATE_INTERVAL_15_MIN, NULL);
575
576         if (!modest_conf_key_exists (conf, MODEST_CONF_MSG_SIZE_LIMIT, NULL))
577                 modest_conf_set_int (conf, MODEST_CONF_MSG_SIZE_LIMIT, 1000, NULL);
578
579         if (!modest_conf_key_exists (conf, MODEST_CONF_PLAY_SOUND_MSG_ARRIVE, NULL))
580                 modest_conf_set_bool (conf, MODEST_CONF_PLAY_SOUND_MSG_ARRIVE, FALSE, NULL);
581
582         if (!modest_conf_key_exists (conf, MODEST_CONF_PREFER_FORMATTED_TEXT, NULL))
583                 modest_conf_set_bool (conf, MODEST_CONF_PREFER_FORMATTED_TEXT, TRUE, NULL);
584
585         if (!modest_conf_key_exists (conf, MODEST_CONF_REPLY_TYPE, NULL))
586                 modest_conf_set_int (conf, MODEST_CONF_REPLY_TYPE, MODEST_TNY_MSG_REPLY_TYPE_QUOTE, NULL);
587 }
588
589
590 /* set the device name -- note this is an initial guess from /etc/hostname
591  * on maemo-device it will most probably be replaced with the Bluetooth device
592  * name later during starting (see maemo/modest-maemo-utils.[ch])
593  */
594 static void
595 init_device_name (ModestConf *conf)
596 {
597         int len = 255; /* max len */
598         gchar *devname = NULL;
599         
600         if (!g_file_get_contents("/etc/hostname", &devname, &len, NULL) || len < 2 || len > 254) {
601                 g_printerr ("modest: failed to read hostname\n");
602                 modest_conf_set_string (conf, MODEST_CONF_DEVICE_NAME,
603                                         MODEST_LOCAL_FOLDERS_DEFAULT_DISPLAY_NAME,
604                                         NULL);
605         } else {
606                 /* remove the \n at the end */
607                 if (devname[len-1] == '\n')
608                         devname[len-1] = '\0';
609                 else
610                         devname[len] = '\0';
611
612                 GError *err = NULL;
613                 if (!modest_conf_set_string (conf, MODEST_CONF_DEVICE_NAME,devname, &err)) {
614                         g_printerr ("modest: error setting device name '%s': %s",
615                                     devname, err ? err->message: "?");
616                         g_error_free (err);
617                 }
618         }
619         
620         g_free (devname);
621 }