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