2007-02-21 [colin] 2.7.2cvs60
[claws.git] / src / main.c
1 /*
2  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 1999-2007 Hiroyuki Yamamoto and the Claws Mail team
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18  */
19
20 #ifdef HAVE_CONFIG_H
21 #  include "config.h"
22 #endif
23
24 #include "defs.h"
25
26 #include <glib.h>
27 #include <glib/gi18n.h>
28 #include <gtk/gtkmain.h>
29 #include <gtk/gtkrc.h>
30
31 #include <stdio.h>
32 #include <stdlib.h>
33 #include <string.h>
34 #include <ctype.h>
35 #include <unistd.h>
36 #include <time.h>
37 #include <sys/stat.h>
38 #include <sys/types.h>
39 #ifdef G_OS_UNIX
40 #  include <signal.h>
41 #endif
42 #ifdef HAVE_LIBSM
43 #include <X11/SM/SMlib.h>
44 #include <fcntl.h>
45 #endif
46
47 #include "wizard.h"
48 #ifdef HAVE_STARTUP_NOTIFICATION
49 # define SN_API_NOT_YET_FROZEN
50 # include <libsn/sn-launchee.h>
51 # include <gdk/gdkx.h>
52 #endif
53
54 #include "claws.h"
55 #include "main.h"
56 #include "mainwindow.h"
57 #include "folderview.h"
58 #include "image_viewer.h"
59 #include "summaryview.h"
60 #include "prefs_common.h"
61 #include "prefs_account.h"
62 #include "prefs_actions.h"
63 #include "prefs_ext_prog.h"
64 #include "prefs_fonts.h"
65 #include "prefs_image_viewer.h"
66 #include "prefs_message.h"
67 #include "prefs_receive.h"
68 #include "prefs_msg_colors.h"
69 #include "prefs_quote.h"
70 #include "prefs_spelling.h"
71 #include "prefs_summaries.h"
72 #include "prefs_themes.h"
73 #include "prefs_other.h"
74 #include "prefs_send.h"
75 #include "prefs_wrapping.h"
76 #include "prefs_compose_writing.h"
77 #include "prefs_display_header.h"
78 #include "account.h"
79 #include "procmsg.h"
80 #include "inc.h"
81 #include "import.h"
82 #include "manage_window.h"
83 #include "alertpanel.h"
84 #include "statusbar.h"
85 #include "addressbook.h"
86 #include "compose.h"
87 #include "folder.h"
88 #include "setup.h"
89 #include "utils.h"
90 #include "gtkutils.h"
91 #include "socket.h"
92 #include "log.h"
93 #include "prefs_toolbar.h"
94 #include "plugin.h"
95 #include "mh_gtk.h"
96 #include "imap_gtk.h"
97 #include "news_gtk.h"
98 #include "matcher.h"
99 #ifdef HAVE_LIBETPAN
100 #include "imap-thread.h"
101 #endif
102 #include "stock_pixmap.h"
103
104 #if USE_OPENSSL
105 #  include "ssl.h"
106 #endif
107
108 #include "version.h"
109
110 #include "crash.h"
111
112 #include "timing.h"
113
114 gchar *prog_version;
115 gchar *argv0;
116
117 #ifdef HAVE_STARTUP_NOTIFICATION
118 static SnLauncheeContext *sn_context = NULL;
119 static SnDisplay *sn_display = NULL;
120 #endif
121
122 static gint lock_socket = -1;
123 static gint lock_socket_tag = 0;
124
125 typedef enum 
126 {
127         ONLINE_MODE_DONT_CHANGE,
128         ONLINE_MODE_ONLINE,
129         ONLINE_MODE_OFFLINE
130 } OnlineMode;
131
132 static struct RemoteCmd {
133         gboolean receive;
134         gboolean receive_all;
135         gboolean compose;
136         const gchar *compose_mailto;
137         GPtrArray *attach_files;
138         gboolean status;
139         gboolean status_full;
140         GPtrArray *status_folders;
141         GPtrArray *status_full_folders;
142         gboolean send;
143         gboolean crash;
144         int online_mode;
145         gchar   *crash_params;
146         gboolean exit;
147         gboolean subscribe;
148         const gchar *subscribe_uri;
149         const gchar *target;
150 } cmd;
151
152 static void parse_cmd_opt(int argc, char *argv[]);
153
154 static gint prohibit_duplicate_launch   (void);
155 static gchar * get_crashfile_name       (void);
156 static gint lock_socket_remove          (void);
157 static void lock_socket_input_cb        (gpointer          data,
158                                          gint              source,
159                                          GdkInputCondition condition);
160
161 static void open_compose_new            (const gchar    *address,
162                                          GPtrArray      *attach_files);
163
164 static void send_queue                  (void);
165 static void initial_processing          (FolderItem *item, gpointer data);
166 static void quit_signal_handler         (int sig);
167 static void install_basic_sighandlers   (void);
168 static void exit_claws                  (MainWindow *mainwin);
169
170 #define MAKE_DIR_IF_NOT_EXIST(dir) \
171 { \
172         if (!is_dir_exist(dir)) { \
173                 if (is_file_exist(dir)) { \
174                         alertpanel_warning \
175                                 (_("File '%s' already exists.\n" \
176                                    "Can't create folder."), \
177                                  dir); \
178                         return 1; \
179                 } \
180                 if (make_dir(dir) < 0) \
181                         return 1; \
182         } \
183 }
184
185 static MainWindow *static_mainwindow;
186 static gboolean emergency_exit = FALSE;
187
188 #ifdef HAVE_STARTUP_NOTIFICATION
189 static void sn_error_trap_push(SnDisplay *display, Display *xdisplay)
190 {
191         gdk_error_trap_push();
192 }
193
194 static void sn_error_trap_pop(SnDisplay *display, Display *xdisplay)
195 {
196         gdk_error_trap_pop();
197 }
198
199 static void startup_notification_complete(gboolean with_window)
200 {
201         Display *xdisplay;
202         GtkWidget *hack = NULL;
203
204         if (with_window) {
205                 /* this is needed to make the startup notification leave,
206                  * if we have been launched from a menu.
207                  * We have to display a window, so let it be very little */
208                 hack = gtk_window_new(GTK_WINDOW_POPUP);
209                 gtk_widget_set_uposition(hack, 0, 0);
210                 gtk_widget_set_size_request(hack, 1, 1);
211                 gtk_widget_show(hack);
212         }
213
214         xdisplay = GDK_DISPLAY();
215         sn_display = sn_display_new(xdisplay,
216                                 sn_error_trap_push,
217                                 sn_error_trap_pop);
218         sn_context = sn_launchee_context_new_from_environment(sn_display,
219                                                  DefaultScreen(xdisplay));
220
221         if (sn_context != NULL) {
222                 sn_launchee_context_complete(sn_context);
223                 sn_launchee_context_unref(sn_context);
224                 sn_display_unref(sn_display);
225         }
226         if (with_window) {
227                 gtk_widget_destroy(hack);
228         }
229 }
230 #endif /* HAVE_STARTUP_NOTIFICATION */
231
232 static void claws_gtk_idle(void) 
233 {
234         while(gtk_events_pending()) {
235                 gtk_main_iteration();
236         }
237         g_usleep(50000);
238 }
239
240 static gboolean defer_check_all(void *data)
241 {
242         gboolean autochk = GPOINTER_TO_INT(data);
243
244         inc_all_account_mail(static_mainwindow, autochk, 
245                         prefs_common.newmail_notify_manu);
246
247         return FALSE;
248 }
249
250 static gboolean defer_check(void *data)
251 {
252         inc_mail(static_mainwindow, prefs_common.newmail_notify_manu);
253
254         return FALSE;
255 }
256
257 static gboolean defer_jump(void *data)
258 {
259         mainwindow_jump_to(data);
260         return FALSE;
261 }
262
263 static void chk_update_val(GtkWidget *widget, gpointer data)
264 {
265         gboolean *val = (gboolean *)data;
266         *val = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(widget));
267 }
268
269 static gboolean migrate_old_config(const gchar *old_cfg_dir, const gchar *new_cfg_dir, const gchar *oldversion)
270 {
271         gchar *message = g_strdup_printf(_("Configuration for %s (or previous) found.\n"
272                          "Do you want to migrate this configuration?"), oldversion);
273         gint r = 0;
274         GtkWidget *window = NULL;
275         GtkWidget *keep_backup_chk;
276         GtkTooltips *tips = gtk_tooltips_new();
277         gboolean backup = TRUE;
278
279         keep_backup_chk = gtk_check_button_new_with_label (_("Keep old configuration"));
280         gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(keep_backup_chk), TRUE);
281         gtk_tooltips_set_tip(GTK_TOOLTIPS(tips), keep_backup_chk,
282                              _("Keeping a backup will allow you to go back to an "
283                                "older version, but may take a while if you have "
284                                "cached IMAP or News data, and will take some extra "
285                                "room on your disk."),
286                              NULL);
287
288         g_signal_connect(G_OBJECT(keep_backup_chk), "toggled", 
289                         G_CALLBACK(chk_update_val), &backup);
290
291         if (alertpanel_full(_("Migration of configuration"), message,
292                         GTK_STOCK_NO, "+" GTK_STOCK_YES, NULL, FALSE,
293                         keep_backup_chk, ALERT_QUESTION, G_ALERTDEFAULT) != G_ALERTALTERNATE) {
294                 return FALSE;
295         }
296         
297         /* we can either do a fast migration requiring not any extra disk
298          * space, or a slow one that copies the old configuration and leaves
299          * it in place. */
300         if (backup) {
301 backup_mode:
302                 window = label_window_create(_("Copying configuration... This may take a while..."));
303                 GTK_EVENTS_FLUSH();
304                 
305                 r = copy_dir(old_cfg_dir, new_cfg_dir);
306                 gtk_widget_destroy(window);
307                 
308                 /* if copy failed, we'll remove the partially copied
309                  * new directory */
310                 if (r != 0) {
311                         alertpanel_error(_("Migration failed!"));
312                         remove_dir_recursive(new_cfg_dir);
313                 } else {
314                         if (!backup) {
315                                 /* fast mode failed, but we don't want backup */
316                                 remove_dir_recursive(old_cfg_dir);
317                         }
318                 }
319         } else {
320                 window = label_window_create(_("Migrating configuration..."));
321                 GTK_EVENTS_FLUSH();
322                 
323                 r = g_rename(old_cfg_dir, new_cfg_dir);
324                 gtk_widget_destroy(window);
325                 
326                 /* if g_rename failed, we'll try to copy */
327                 if (r != 0) {
328                         FILE_OP_ERROR(new_cfg_dir, "g_rename failed, trying copy\n");
329                         goto backup_mode;
330                 }
331         }
332         return (r == 0);
333 }
334
335 static void migrate_common_rc(const gchar *old_rc, const gchar *new_rc)
336 {
337         FILE *oldfp, *newfp;
338         gchar *plugin_path, *old_plugin_path, *new_plugin_path;
339         gchar buf[BUFFSIZE];
340         oldfp = g_fopen(old_rc, "r");
341         if (!oldfp)
342                 return;
343         newfp = g_fopen(new_rc, "w");
344         if (!newfp) {
345                 fclose(oldfp);
346                 return;
347         }
348         
349         plugin_path = g_strdup(get_plugin_dir());
350         new_plugin_path = g_strdup(plugin_path);
351         
352         if (strstr(plugin_path, "/claws-mail/")) {
353                 gchar *end = g_strdup(strstr(plugin_path, "/claws-mail/")+strlen("/claws-mail/"));
354                 *(strstr(plugin_path, "/claws-mail/")) = '\0';
355                 old_plugin_path = g_strconcat(plugin_path, "/sylpheed-claws/", end, NULL);
356                 g_free(end);
357         } else {
358                 old_plugin_path = g_strdup(new_plugin_path);
359         }
360         debug_print("replacing %s with %s\n", old_plugin_path, new_plugin_path);
361         while (fgets(buf, sizeof(buf), oldfp)) {
362                 if (strncmp(buf, old_plugin_path, strlen(old_plugin_path))) {
363                         fputs(buf, newfp);
364                 } else {
365                         debug_print("->replacing %s", buf);
366                         debug_print("  with %s%s", new_plugin_path, buf+strlen(old_plugin_path));
367                         fputs(new_plugin_path, newfp);
368                         fputs(buf+strlen(old_plugin_path), newfp);
369                 }
370         }
371         g_free(plugin_path);
372         g_free(new_plugin_path);
373         g_free(old_plugin_path);
374         fclose(oldfp);
375         fclose(newfp);
376 }
377
378 #ifdef HAVE_LIBSM
379 static void
380 sc_client_set_value (MainWindow *mainwin,
381                   gchar       *name,
382                   char        *type,
383                   int          num_vals,
384                   SmPropValue *vals)
385 {
386         SmProp *proplist[1];
387         SmProp prop;
388
389         prop.name = name;
390         prop.type = type;
391         prop.num_vals = num_vals;
392         prop.vals = vals;
393
394         proplist[0]= &prop;
395         if (mainwin->smc_conn)
396                 SmcSetProperties ((SmcConn) mainwin->smc_conn, 1, proplist);
397 }
398
399 static void sc_die_callback (SmcConn smc_conn, SmPointer client_data)
400 {
401         clean_quit(NULL);
402 }
403
404 static void sc_save_complete_callback(SmcConn smc_conn, SmPointer client_data)
405 {
406 }
407
408 static void sc_shutdown_cancelled_callback (SmcConn smc_conn, SmPointer client_data)
409 {
410         MainWindow *mainwin = (MainWindow *)client_data;
411         if (mainwin->smc_conn)
412                 SmcSaveYourselfDone ((SmcConn) mainwin->smc_conn, TRUE);
413 }
414
415 static void sc_save_yourself_callback (SmcConn   smc_conn,
416                                SmPointer client_data,
417                                int       save_style,
418                                gboolean  shutdown,
419                                int       interact_style,
420                                gboolean  fast) {
421
422         MainWindow *mainwin = (MainWindow *)client_data;
423         if (mainwin->smc_conn)
424                 SmcSaveYourselfDone ((SmcConn) mainwin->smc_conn, TRUE);
425 }
426
427 static IceIOErrorHandler sc_ice_installed_handler;
428
429 static void sc_ice_io_error_handler (IceConn connection)
430 {
431         if (sc_ice_installed_handler)
432                 (*sc_ice_installed_handler) (connection);
433 }
434 static gboolean sc_process_ice_messages (GIOChannel   *source,
435                       GIOCondition  condition,
436                       gpointer      data)
437 {
438         IceConn connection = (IceConn) data;
439         IceProcessMessagesStatus status;
440
441         status = IceProcessMessages (connection, NULL, NULL);
442
443         if (status == IceProcessMessagesIOError) {
444                 IcePointer context = IceGetConnectionContext (connection);
445
446                 if (context && GTK_IS_OBJECT (context)) {
447                 guint disconnect_id = g_signal_lookup ("disconnect", G_OBJECT_TYPE (context));
448
449                 if (disconnect_id > 0)
450                         g_signal_emit (context, disconnect_id, 0);
451                 } else {
452                         IceSetShutdownNegotiation (connection, False);
453                         IceCloseConnection (connection);
454                 }
455         }
456
457         return TRUE;
458 }
459
460 static void new_ice_connection (IceConn connection, IcePointer client_data, Bool opening,
461                     IcePointer *watch_data)
462 {
463         guint input_id;
464
465         if (opening) {
466                 GIOChannel *channel;
467                 /* Make sure we don't pass on these file descriptors to any
468                 exec'ed children */
469                 fcntl(IceConnectionNumber(connection),F_SETFD,
470                 fcntl(IceConnectionNumber(connection),F_GETFD,0) | FD_CLOEXEC);
471
472                 channel = g_io_channel_unix_new (IceConnectionNumber (connection));
473                 input_id = g_io_add_watch (channel,
474                 G_IO_IN | G_IO_HUP | G_IO_ERR | G_IO_PRI,
475                 sc_process_ice_messages,
476                 connection);
477                 g_io_channel_unref (channel);
478
479                 *watch_data = (IcePointer) GUINT_TO_POINTER (input_id);
480         } else {
481                 input_id = GPOINTER_TO_UINT ((gpointer) *watch_data);
482                 g_source_remove (input_id);
483         }
484 }
485
486 static void sc_session_manager_connect(MainWindow *mainwin)
487 {
488         static gboolean connected = FALSE;
489         SmcCallbacks      callbacks;
490         gchar            *client_id;
491         IceIOErrorHandler default_handler;
492
493         if (connected)
494                 return;
495         connected = TRUE;
496
497
498         sc_ice_installed_handler = IceSetIOErrorHandler (NULL);
499         default_handler = IceSetIOErrorHandler (sc_ice_io_error_handler);
500
501         if (sc_ice_installed_handler == default_handler)
502                 sc_ice_installed_handler = NULL;
503
504         IceAddConnectionWatch (new_ice_connection, NULL);
505       
506       
507         callbacks.save_yourself.callback      = sc_save_yourself_callback;
508         callbacks.die.callback                = sc_die_callback;
509         callbacks.save_complete.callback      = sc_save_complete_callback;
510         callbacks.shutdown_cancelled.callback = sc_shutdown_cancelled_callback;
511
512         callbacks.save_yourself.client_data =
513                 callbacks.die.client_data =
514                 callbacks.save_complete.client_data =
515                 callbacks.shutdown_cancelled.client_data = (SmPointer) mainwin;
516         if (g_getenv ("SESSION_MANAGER")) {
517                 gchar error_string_ret[256] = "";
518
519                 mainwin->smc_conn = (gpointer)
520                         SmcOpenConnection (NULL, mainwin,
521                                 SmProtoMajor, SmProtoMinor,
522                                 SmcSaveYourselfProcMask | SmcDieProcMask |
523                                 SmcSaveCompleteProcMask |
524                                 SmcShutdownCancelledProcMask,
525                                 &callbacks,
526                                 NULL, &client_id,
527                                 256, error_string_ret);
528
529                 if (error_string_ret[0] || mainwin->smc_conn == NULL)
530                         g_warning ("While connecting to session manager:\n%s.",
531                                 error_string_ret);
532                 else {
533                         SmPropValue *vals;
534                         vals = g_new (SmPropValue, 1);
535                         vals[0].length = strlen(argv0);
536                         vals[0].value = argv0;
537                         sc_client_set_value (mainwin, SmCloneCommand, SmLISTofARRAY8, 1, vals);
538                         sc_client_set_value (mainwin, SmRestartCommand, SmLISTofARRAY8, 1, vals);
539                         sc_client_set_value (mainwin, SmProgram, SmARRAY8, 1, vals);
540
541                         vals[0].length = strlen(g_get_user_name()?g_get_user_name():"");
542                         vals[0].value = g_strdup(g_get_user_name()?g_get_user_name():"");
543                         sc_client_set_value (mainwin, SmUserID, SmARRAY8, 1, vals);
544                 }
545         }
546 }
547 #endif
548
549 static gboolean sc_exiting = FALSE;
550 static gboolean sc_starting = FALSE;
551
552 int main(int argc, char *argv[])
553 {
554         gchar *userrc;
555         MainWindow *mainwin;
556         FolderView *folderview;
557         GdkPixbuf *icon;
558         gboolean crash_file_present = FALSE;
559         gint num_folder_class = 0;
560         gboolean asked_for_migration = FALSE;
561
562         START_TIMING("startup");
563         
564         sc_starting = TRUE;
565
566         if (!claws_init(&argc, &argv)) {
567                 return 0;
568         }
569
570         prefs_prepare_cache();
571         prog_version = PROG_VERSION;
572         argv0 = g_strdup(argv[0]);
573
574         parse_cmd_opt(argc, argv);
575
576 #ifdef CRASH_DIALOG
577         if (cmd.crash) {
578                 gtk_set_locale();
579                 gtk_init(&argc, &argv);
580                 crash_main(cmd.crash_params);
581                 return 0;
582         }
583         crash_install_handlers();
584 #endif
585         install_basic_sighandlers();
586         sock_init();
587
588         /* check and create unix domain socket for remote operation */
589 #ifdef G_OS_UNIX
590         lock_socket = prohibit_duplicate_launch();
591         if (lock_socket < 0) {
592 #ifdef HAVE_STARTUP_NOTIFICATION
593                 if(gtk_init_check(&argc, &argv))
594                         startup_notification_complete(TRUE);
595 #endif
596                 return 0;
597         }
598
599         if (cmd.status || cmd.status_full) {
600                 puts("0 Claws Mail not running.");
601                 lock_socket_remove();
602                 return 0;
603         }
604         
605         if (cmd.exit)
606                 return 0;
607 #endif
608         if (!g_thread_supported())
609                 g_thread_init(NULL);
610
611         gtk_set_locale();
612         gtk_init(&argc, &argv);
613
614         gdk_rgb_init();
615         gtk_widget_set_default_colormap(gdk_rgb_get_colormap());
616         gtk_widget_set_default_visual(gdk_rgb_get_visual());
617
618         if (!g_thread_supported()) {
619                 g_error(_("g_thread is not supported by glib.\n"));
620         }
621
622         /* check that we're not on a too recent/old gtk+ */
623 #if GTK_CHECK_VERSION(2, 9, 0)
624         if (gtk_check_version(2, 9, 0) != NULL) {
625                 alertpanel_error(_("Claws Mail has been compiled with "
626                                    "a more recent GTK+ library than is "
627                                    "currently available. This will cause "
628                                    "crashes. You need to upgrade GTK+ or "
629                                    "recompile Claws Mail."));
630                 exit(1);
631         }
632 #else
633         if (gtk_check_version(2, 9, 0) == NULL) {
634                 alertpanel_error(_("Claws Mail has been compiled with "
635                                    "an older GTK+ library than is "
636                                    "currently available. This will cause "
637                                    "crashes. You need to recompile "
638                                    "Claws Mail."));
639                 exit(1);
640         }
641 #endif  
642         /* parse gtkrc files */
643         userrc = g_strconcat(get_home_dir(), G_DIR_SEPARATOR_S, ".gtkrc-2.0",
644                              NULL);
645         gtk_rc_parse(userrc);
646         g_free(userrc);
647         userrc = g_strconcat(get_home_dir(), G_DIR_SEPARATOR_S, ".gtk",
648                              G_DIR_SEPARATOR_S, "gtkrc-2.0", NULL);
649         gtk_rc_parse(userrc);
650         g_free(userrc);
651
652         CHDIR_RETURN_VAL_IF_FAIL(get_home_dir(), 1);
653         
654         /* no config dir exists. See if we can migrate an old config. */
655         if (!is_dir_exist(RC_DIR)) {
656                 prefs_destroy_cache();
657                 gboolean r = FALSE;
658                 
659                 /* if one of the old dirs exist, we'll ask if the user 
660                  * want to migrates, and r will be TRUE if he said yes
661                  * and migration succeeded, and FALSE otherwise.
662                  */
663                 if (is_dir_exist(OLD_GTK2_RC_DIR)) {
664                         r = migrate_old_config(OLD_GTK2_RC_DIR, RC_DIR, "Sylpheed-Claws 2.6.0");
665                         asked_for_migration = TRUE;
666                 } else if (is_dir_exist(OLDER_GTK2_RC_DIR)) {
667                         r = migrate_old_config(OLDER_GTK2_RC_DIR, RC_DIR, "Sylpheed-Claws 1.9.15");
668                         asked_for_migration = TRUE;
669                 } else if (is_dir_exist(OLD_GTK1_RC_DIR)) {
670                         r = migrate_old_config(OLD_GTK1_RC_DIR, RC_DIR, "Sylpheed-Claws 1.0.5");
671                         asked_for_migration = TRUE;
672                 }
673                 
674                 /* If migration failed or the user didn't want to do it,
675                  * we create a new one (and we'll hit wizard later). 
676                  */
677                 if (r == FALSE && !is_dir_exist(RC_DIR) && make_dir(RC_DIR) < 0)
678                         exit(1);
679         }
680         
681
682         if (!is_file_exist(RC_DIR G_DIR_SEPARATOR_S COMMON_RC) &&
683             is_file_exist(RC_DIR G_DIR_SEPARATOR_S OLD_COMMON_RC)) {
684                 /* post 2.6 name change */
685                 migrate_common_rc(RC_DIR G_DIR_SEPARATOR_S OLD_COMMON_RC,
686                           RC_DIR G_DIR_SEPARATOR_S COMMON_RC);
687         }
688
689         if (!cmd.exit)
690                 plugin_load_all("Common");
691
692         userrc = g_strconcat(get_rc_dir(), G_DIR_SEPARATOR_S, "gtkrc-2.0", NULL);
693         gtk_rc_parse(userrc);
694         g_free(userrc);
695
696         userrc = g_strconcat(get_rc_dir(), G_DIR_SEPARATOR_S, MENU_RC, NULL);
697         gtk_accel_map_load (userrc);
698         g_free(userrc);
699
700         CHDIR_RETURN_VAL_IF_FAIL(get_rc_dir(), 1);
701
702         MAKE_DIR_IF_NOT_EXIST(get_mail_base_dir());
703         MAKE_DIR_IF_NOT_EXIST(get_imap_cache_dir());
704         MAKE_DIR_IF_NOT_EXIST(get_news_cache_dir());
705         MAKE_DIR_IF_NOT_EXIST(get_mime_tmp_dir());
706         MAKE_DIR_IF_NOT_EXIST(get_tmp_dir());
707         MAKE_DIR_IF_NOT_EXIST(UIDL_DIR);
708
709         crash_file_present = is_file_exist(get_crashfile_name());
710         /* remove temporary files */
711         remove_all_files(get_tmp_dir());
712         remove_all_files(get_mime_tmp_dir());
713
714         if (is_file_exist("claws.log")) {
715                 if (rename_force("claws.log", "claws.log.bak") < 0)
716                         FILE_OP_ERROR("claws.log", "rename");
717         }
718         set_log_file("claws.log");
719
720         CHDIR_RETURN_VAL_IF_FAIL(get_home_dir(), 1);
721
722         folder_system_init();
723         prefs_common_read_config();
724
725         prefs_themes_init();
726         prefs_fonts_init();
727         prefs_ext_prog_init();
728         prefs_wrapping_init();
729         prefs_compose_writing_init();
730         prefs_msg_colors_init();
731         image_viewer_init();
732         prefs_image_viewer_init();
733         prefs_quote_init();
734         prefs_summaries_init();
735         prefs_message_init();
736         prefs_other_init();
737         prefs_receive_init();
738         prefs_send_init();
739 #ifdef USE_ASPELL
740         gtkaspell_checkers_init();
741         prefs_spelling_init();
742 #endif
743
744         sock_set_io_timeout(prefs_common.io_timeout_secs);
745 #ifdef HAVE_LIBETPAN
746         imap_main_set_timeout(prefs_common.io_timeout_secs);
747 #endif
748         prefs_actions_read_config();
749         prefs_display_header_read_config();
750         /* prefs_filtering_read_config(); */
751         addressbook_read_file();
752         renderer_read_config();
753
754         gtkut_widget_init();
755         stock_pixbuf_gdk(NULL, STOCK_PIXMAP_CLAWS_MAIL_ICON, &icon);
756         gtk_window_set_default_icon(icon);
757
758         folderview_initialize();
759
760         mh_gtk_init();
761         imap_gtk_init();
762         news_gtk_init();
763
764         mainwin = main_window_create();
765
766         manage_window_focus_in(mainwin->window, NULL, NULL);
767         folderview = mainwin->folderview;
768
769         gtk_clist_freeze(GTK_CLIST(mainwin->folderview->ctree));
770         folder_item_update_freeze();
771
772         /* register the callback of unix domain socket input */
773 #ifdef G_OS_UNIX
774         lock_socket_tag = gdk_input_add(lock_socket,
775                                         GDK_INPUT_READ | GDK_INPUT_EXCEPTION,
776                                         lock_socket_input_cb,
777                                         mainwin);
778 #endif
779
780         prefs_account_init();
781         account_read_config_all();
782
783         /* If we can't read a folder list or don't have accounts,
784          * it means the configuration's not done. Either this is
785          * a brand new install, either a failed/refused migration.
786          * So we'll start the wizard.
787          */
788         if (folder_read_list() < 0) {
789                 prefs_destroy_cache();
790                 
791                 /* if run_wizard returns FALSE it's because it's
792                  * been cancelled. We can't do much but exit.
793                  * however, if the user was asked for a migration,
794                  * we remove the newly created directory so that
795                  * he's asked again for migration on next launch.*/
796                 if (!run_wizard(mainwin, TRUE)) {
797                         if (asked_for_migration)
798                                 remove_dir_recursive(RC_DIR);
799                         exit(1);
800                 }
801                 main_window_reflect_prefs_all_now();
802                 folder_write_list();
803         }
804
805         if (!account_get_list()) {
806                 prefs_destroy_cache();
807                 if (!run_wizard(mainwin, FALSE)) {
808                         if (asked_for_migration)
809                                 remove_dir_recursive(RC_DIR);
810                         exit(1);
811                 }
812                 account_read_config_all();
813                 if(!account_get_list()) {
814                         exit_claws(mainwin);
815                         exit(1);
816                 }
817         }
818
819         
820         toolbar_main_set_sensitive(mainwin);
821         main_window_set_menu_sensitive(mainwin);
822
823         main_window_popup(mainwin);
824
825 #ifdef HAVE_LIBETPAN
826         imap_main_init(prefs_common.skip_ssl_cert_check);
827 #endif  
828         account_set_missing_folder();
829         folder_set_missing_folders();
830         folderview_set(folderview);
831
832         prefs_matcher_read_config();
833
834         /* make one all-folder processing before using claws */
835         main_window_cursor_wait(mainwin);
836         folder_func_to_all_folders(initial_processing, (gpointer *)mainwin);
837
838         /* if claws crashed, rebuild caches */
839         if (!cmd.crash && crash_file_present) {
840                 GTK_EVENTS_FLUSH();
841                 debug_print("Claws Mail crashed, checking for new messages in local folders\n");
842                 folder_item_update_thaw();
843                 folderview_check_new(NULL);
844                 folder_clean_cache_memory_force();
845                 folder_item_update_freeze();
846         }
847         /* make the crash-indicator file */
848         str_write_to_file("foo", get_crashfile_name());
849
850         inc_autocheck_timer_init(mainwin);
851
852         /* ignore SIGPIPE signal for preventing sudden death of program */
853 #ifdef G_OS_UNIX
854         signal(SIGPIPE, SIG_IGN);
855 #endif
856         if (cmd.online_mode == ONLINE_MODE_OFFLINE) {
857                 main_window_toggle_work_offline(mainwin, TRUE, FALSE);
858         }
859         if (cmd.online_mode == ONLINE_MODE_ONLINE) {
860                 main_window_toggle_work_offline(mainwin, FALSE, FALSE);
861         }
862
863         if (cmd.status_folders) {
864                 g_ptr_array_free(cmd.status_folders, TRUE);
865                 cmd.status_folders = NULL;
866         }
867         if (cmd.status_full_folders) {
868                 g_ptr_array_free(cmd.status_full_folders, TRUE);
869                 cmd.status_full_folders = NULL;
870         }
871
872         claws_register_idle_function(claws_gtk_idle);
873
874         prefs_toolbar_init();
875
876         num_folder_class = g_list_length(folder_get_list());
877
878         plugin_load_all("GTK2");
879
880         if (g_list_length(folder_get_list()) != num_folder_class) {
881                 debug_print("new folders loaded, reloading processing rules\n");
882                 prefs_matcher_read_config();
883         }
884         
885         if (plugin_get_unloaded_list() != NULL) {
886                 main_window_cursor_normal(mainwin);
887                 alertpanel_warning(_("Some plugin(s) failed to load. "
888                                      "Check the Plugins configuration "
889                                      "for more information."));
890                 main_window_cursor_wait(mainwin);
891         }
892
893         plugin_load_standard_plugins ();
894        
895         if (!folder_have_mailbox()) {
896                 prefs_destroy_cache();
897                 main_window_cursor_normal(mainwin);
898                 if (folder_get_list() != NULL) {
899                         alertpanel_error(_("Claws Mail has detected a configured "
900                                    "mailbox, but is it incomplete. It is "
901                                    "possibly due to a failing IMAP account. Use "
902                                    "\"Rebuild folder tree\" on the mailbox's folder "
903                                    "to try to fix it."));
904                 } else {
905                         alertpanel_error(_("Claws Mail has detected a configured "
906                                    "mailbox, but could not load it. It is "
907                                    "probably provided by an out-of-date "
908                                    "external plugin. Please reinstall the "
909                                    "plugin and try again."));
910                         exit_claws(mainwin);
911                         exit(1);
912                 }
913         }
914         
915         static_mainwindow = mainwin;
916
917 #ifdef HAVE_STARTUP_NOTIFICATION
918         startup_notification_complete(FALSE);
919 #endif
920 #ifdef HAVE_LIBSM
921         sc_session_manager_connect(mainwin);
922 #endif
923         folder_item_update_thaw();
924         gtk_clist_thaw(GTK_CLIST(mainwin->folderview->ctree));
925         main_window_cursor_normal(mainwin);
926
927         if (cmd.receive_all) {
928                 g_timeout_add(1000, defer_check_all, GINT_TO_POINTER(FALSE));
929         } else if (prefs_common.chk_on_startup) {
930                 g_timeout_add(1000, defer_check_all, GINT_TO_POINTER(TRUE));
931         } else if (cmd.receive) {
932                 g_timeout_add(1000, defer_check, NULL);
933         } else {
934                 gtk_widget_grab_focus(folderview->ctree);
935         }
936
937         if (cmd.compose) {
938                 open_compose_new(cmd.compose_mailto, cmd.attach_files);
939         }
940         if (cmd.attach_files) {
941                 ptr_array_free_strings(cmd.attach_files);
942                 g_ptr_array_free(cmd.attach_files, TRUE);
943                 cmd.attach_files = NULL;
944         }
945         if (cmd.subscribe) {
946                 folder_subscribe(cmd.subscribe_uri);
947         }
948
949         if (cmd.send) {
950                 send_queue();
951         }
952         
953         if (cmd.target) {
954                 g_timeout_add(500, defer_jump, (gpointer)cmd.target);
955         }
956
957         prefs_destroy_cache();
958         
959         compose_reopen_exit_drafts();
960
961         sc_starting = FALSE;
962         END_TIMING();
963
964         gtk_main();
965
966         exit_claws(mainwin);
967
968         return 0;
969 }
970
971 static void save_all_caches(FolderItem *item, gpointer data)
972 {
973         if (!item->cache) {
974                 return;
975         }
976
977         if (item->opened)
978                 folder_item_close(item);
979         
980         folder_item_free_cache(item, TRUE);
981 }
982
983 static void exit_claws(MainWindow *mainwin)
984 {
985         gchar *filename;
986
987         sc_exiting = TRUE;
988
989         debug_print("shutting down\n");
990         inc_autocheck_timer_remove();
991
992         if (prefs_common.clean_on_exit && !emergency_exit) {
993                 main_window_empty_trash(mainwin, prefs_common.ask_on_clean);
994         }
995
996         /* save prefs for opened folder */
997         if(mainwin->folderview->opened) {
998                 FolderItem *item;
999
1000                 item = gtk_ctree_node_get_row_data(GTK_CTREE(mainwin->folderview->ctree), mainwin->folderview->opened);
1001                 summary_save_prefs_to_folderitem(mainwin->folderview->summaryview, item);
1002         }
1003
1004         /* save all state before exiting */
1005         folder_func_to_all_folders(save_all_caches, NULL);
1006         folder_write_list();
1007
1008         main_window_get_size(mainwin);
1009         main_window_get_position(mainwin);
1010
1011         prefs_common_write_config();
1012         account_write_config_all();
1013         addressbook_export_to_file();
1014
1015         filename = g_strconcat(get_rc_dir(), G_DIR_SEPARATOR_S, MENU_RC, NULL);
1016         gtk_accel_map_save(filename);
1017         g_free(filename);
1018
1019         /* delete temporary files */
1020         remove_all_files(get_tmp_dir());
1021         remove_all_files(get_mime_tmp_dir());
1022
1023         close_log_file();
1024
1025 #ifdef HAVE_LIBETPAN
1026         imap_main_done();
1027 #endif
1028         /* delete crashfile */
1029         if (!cmd.crash)
1030                 g_unlink(get_crashfile_name());
1031
1032         lock_socket_remove();
1033
1034 #ifdef HAVE_LIBSM
1035         if (mainwin->smc_conn)
1036                 SmcCloseConnection ((SmcConn)mainwin->smc_conn, 0, NULL);
1037         mainwin->smc_conn = NULL;
1038 #endif
1039
1040         main_window_destroy_all();
1041         
1042         plugin_unload_all("GTK2");
1043
1044         prefs_toolbar_done();
1045
1046         addressbook_destroy();
1047
1048         prefs_themes_done();
1049         prefs_fonts_done();
1050         prefs_ext_prog_done();
1051         prefs_wrapping_done();
1052         prefs_compose_writing_done();
1053         prefs_msg_colors_done();
1054         prefs_image_viewer_done();
1055         image_viewer_done();
1056         prefs_quote_done();
1057         prefs_summaries_done();
1058         prefs_message_done();
1059         prefs_other_done();
1060         prefs_receive_done();
1061         prefs_send_done();
1062 #ifdef USE_ASPELL       
1063         prefs_spelling_done();
1064         gtkaspell_checkers_quit();
1065 #endif
1066         plugin_unload_all("Common");
1067         claws_done();
1068 }
1069
1070 static void parse_cmd_opt(int argc, char *argv[])
1071 {
1072         gint i;
1073
1074         for (i = 1; i < argc; i++) {
1075                 if (!strncmp(argv[i], "--receive-all", 13)) {
1076                         cmd.receive_all = TRUE;
1077                 } else if (!strncmp(argv[i], "--receive", 9)) {
1078                         cmd.receive = TRUE;
1079                 } else if (!strncmp(argv[i], "--compose", 9)) {
1080                         const gchar *p = argv[i + 1];
1081
1082                         cmd.compose = TRUE;
1083                         cmd.compose_mailto = NULL;
1084                         if (p && *p != '\0' && *p != '-') {
1085                                 if (!strncmp(p, "mailto:", 7)) {
1086                                         cmd.compose_mailto = p + 7;
1087                                 } else {
1088                                         cmd.compose_mailto = p;
1089                                 }
1090                                 i++;
1091                         }
1092                 } else if (!strncmp(argv[i], "--subscribe", 11)) {
1093                         const gchar *p = argv[i + 1];
1094                         if (p && *p != '\0' && *p != '-') {
1095                                 cmd.subscribe = TRUE;
1096                                 cmd.subscribe_uri = p;
1097                         }
1098                 } else if (!strncmp(argv[i], "--attach", 8)) {
1099                         const gchar *p = argv[i + 1];
1100                         gchar *file = NULL;
1101
1102                         while (p && *p != '\0' && *p != '-') {
1103                                 if (!cmd.attach_files) {
1104                                         cmd.attach_files = g_ptr_array_new();
1105                                 }
1106                                 if ((file = g_filename_from_uri(p, NULL, NULL)) != NULL) {
1107                                         if (!is_file_exist(file)) {
1108                                                 g_free(file);
1109                                                 file = NULL;
1110                                         }
1111                                 }
1112                                 if (file == NULL && *p != G_DIR_SEPARATOR) {
1113                                         file = g_strconcat(claws_get_startup_dir(),
1114                                                            G_DIR_SEPARATOR_S,
1115                                                            p, NULL);
1116                                 } else if (file == NULL) {
1117                                         file = g_strdup(p);
1118                                 }
1119                                 g_ptr_array_add(cmd.attach_files, file);
1120                                 i++;
1121                                 p = argv[i + 1];
1122                         }
1123                 } else if (!strncmp(argv[i], "--send", 6)) {
1124                         cmd.send = TRUE;
1125                 } else if (!strncmp(argv[i], "--version", 9) ||
1126                            !strncmp(argv[i], "-v", 2)) {
1127                         puts("Claws Mail version " VERSION);
1128                         exit(0);
1129                 } else if (!strncmp(argv[i], "--status-full", 13)) {
1130                         const gchar *p = argv[i + 1];
1131  
1132                         cmd.status_full = TRUE;
1133                         while (p && *p != '\0' && *p != '-') {
1134                                 if (!cmd.status_full_folders) {
1135                                         cmd.status_full_folders =
1136                                                 g_ptr_array_new();
1137                                 }
1138                                 g_ptr_array_add(cmd.status_full_folders,
1139                                                 g_strdup(p));
1140                                 i++;
1141                                 p = argv[i + 1];
1142                         }
1143                 } else if (!strncmp(argv[i], "--status", 8)) {
1144                         const gchar *p = argv[i + 1];
1145  
1146                         cmd.status = TRUE;
1147                         while (p && *p != '\0' && *p != '-') {
1148                                 if (!cmd.status_folders)
1149                                         cmd.status_folders = g_ptr_array_new();
1150                                 g_ptr_array_add(cmd.status_folders,
1151                                                 g_strdup(p));
1152                                 i++;
1153                                 p = argv[i + 1];
1154                         }
1155                 } else if (!strncmp(argv[i], "--online", 8)) {
1156                         cmd.online_mode = ONLINE_MODE_ONLINE;
1157                 } else if (!strncmp(argv[i], "--offline", 9)) {
1158                         cmd.online_mode = ONLINE_MODE_OFFLINE;
1159                 } else if (!strncmp(argv[i], "--help", 6) ||
1160                            !strncmp(argv[i], "-h", 2)) {
1161                         gchar *base = g_path_get_basename(argv[0]);
1162                         g_print(_("Usage: %s [OPTION]...\n"), base);
1163
1164                         g_print("%s\n", _("  --compose [address]    open composition window"));
1165                         g_print("%s\n", _("  --subscribe [uri]      subscribe to the given URI if possible"));
1166                         g_print("%s\n", _("  --attach file1 [file2]...\n"
1167                                   "                         open composition window with specified files\n"
1168                                   "                         attached"));
1169                         g_print("%s\n", _("  --receive              receive new messages"));
1170                         g_print("%s\n", _("  --receive-all          receive new messages of all accounts"));
1171                         g_print("%s\n", _("  --send                 send all queued messages"));
1172                         g_print("%s\n", _("  --status [folder]...   show the total number of messages"));
1173                         g_print("%s\n", _("  --status-full [folder]...\n"
1174                                "                         show the status of each folder"));
1175                         g_print("%s\n", _("  --select folder[/msg]  jumps to the specified folder/message\n" 
1176                                           "                         folder is a folder id like 'folder/sub_folder'"));
1177                         g_print("%s\n", _("  --online               switch to online mode"));
1178                         g_print("%s\n", _("  --offline              switch to offline mode"));
1179                         g_print("%s\n", _("  --exit --quit -q       exit Claws Mail"));
1180                         g_print("%s\n", _("  --debug                debug mode"));
1181                         g_print("%s\n", _("  --help -h              display this help and exit"));
1182                         g_print("%s\n", _("  --version -v           output version information and exit"));
1183                         g_print("%s\n", _("  --config-dir           output configuration directory"));
1184
1185                         g_free(base);
1186                         exit(1);
1187                 } else if (!strncmp(argv[i], "--crash", 7)) {
1188                         cmd.crash = TRUE;
1189                         cmd.crash_params = g_strdup(argv[i + 1]);
1190                         i++;
1191                 } else if (!strncmp(argv[i], "--config-dir", sizeof "--config-dir" - 1)) {
1192                         puts(RC_DIR);
1193                         exit(0);
1194                 } else if (!strncmp(argv[i], "--exit", 6) ||
1195                            !strncmp(argv[i], "--quit", 6) ||
1196                            !strncmp(argv[i], "-q", 2)) {
1197                         cmd.exit = TRUE;
1198                 } else if (!strncmp(argv[i], "--select", 8) && i+1 < argc) {
1199                         cmd.target = argv[i+1];
1200                 } else if (i == 1 && argc == 2) {
1201                         /* only one parameter. Do something intelligent about it */
1202                         if (strstr(argv[i], "@") && !strstr(argv[i], "://")) {
1203                                 const gchar *p = argv[i];
1204
1205                                 cmd.compose = TRUE;
1206                                 cmd.compose_mailto = NULL;
1207                                 if (p && *p != '\0' && *p != '-') {
1208                                         if (!strncmp(p, "mailto:", 7)) {
1209                                                 cmd.compose_mailto = p + 7;
1210                                         } else {
1211                                                 cmd.compose_mailto = p;
1212                                         }
1213                                 }
1214                         } else if (strstr(argv[i], "://")) {
1215                                 const gchar *p = argv[i];
1216                                 if (p && *p != '\0' && *p != '-') {
1217                                         cmd.subscribe = TRUE;
1218                                         cmd.subscribe_uri = p;
1219                                 }
1220                         } else if (!strcmp(argv[i], "--sync")) {
1221                                 /* gtk debug */
1222                         } else {
1223                                 g_print(_("Unknown option\n"));
1224                                 exit(1);
1225                         }
1226                 }
1227         }
1228
1229         if (cmd.attach_files && cmd.compose == FALSE) {
1230                 cmd.compose = TRUE;
1231                 cmd.compose_mailto = NULL;
1232         }
1233 }
1234
1235 static void initial_processing(FolderItem *item, gpointer data)
1236 {
1237         MainWindow *mainwin = (MainWindow *)data;
1238         gchar *buf;
1239
1240         g_return_if_fail(item);
1241         buf = g_strdup_printf(_("Processing (%s)..."), 
1242                               item->path 
1243                               ? item->path 
1244                               : _("top level folder"));
1245         g_free(buf);
1246
1247         
1248         if (item->prefs->enable_processing) {
1249                 folder_item_apply_processing(item);
1250         }
1251
1252         STATUSBAR_POP(mainwin);
1253 }
1254
1255 static void draft_all_messages(void)
1256 {
1257         GList *compose_list = NULL;
1258         
1259         compose_clear_exit_drafts();
1260         while ((compose_list = compose_get_compose_list()) != NULL) {
1261                 Compose *c = (Compose*)compose_list->data;
1262                 compose_draft(c, COMPOSE_DRAFT_FOR_EXIT);
1263         }       
1264 }
1265 gboolean clean_quit(gpointer data)
1266 {
1267         static gboolean firstrun = TRUE;
1268
1269         if (!firstrun) {
1270                 return FALSE;
1271         }
1272         firstrun = FALSE;
1273
1274         /*!< Good idea to have the main window stored in a 
1275          *   static variable so we can check that variable
1276          *   to see if we're really allowed to do things
1277          *   that actually the spawner is supposed to 
1278          *   do (like: sending mail, composing messages).
1279          *   Because, really, if we're the spawnee, and
1280          *   we touch GTK stuff, we're hosed. See the 
1281          *   next fixme. */
1282
1283         /* FIXME: Use something else to signal that we're
1284          * in the original spawner, and not in a spawned
1285          * child. */
1286         if (!static_mainwindow) {
1287                 return FALSE;
1288         }
1289                 
1290         draft_all_messages();
1291         emergency_exit = TRUE;
1292         exit_claws(static_mainwindow);
1293         exit(0);
1294
1295         return FALSE;
1296 }
1297
1298 void app_will_exit(GtkWidget *widget, gpointer data)
1299 {
1300         MainWindow *mainwin = data;
1301         
1302         if (sc_exiting == TRUE) {
1303                 debug_print("exit pending\n");
1304                 return;
1305         }
1306         sc_exiting = TRUE;
1307         debug_print("exiting\n");
1308         if (compose_get_compose_list()) {
1309                 draft_all_messages();
1310         }
1311
1312         if (prefs_common.warn_queued_on_exit && procmsg_have_queued_mails_fast()) {
1313                 if (alertpanel(_("Queued messages"),
1314                                _("Some unsent messages are queued. Exit now?"),
1315                                GTK_STOCK_CANCEL, GTK_STOCK_OK, NULL)
1316                     != G_ALERTALTERNATE) {
1317                         main_window_popup(mainwin);
1318                         sc_exiting = FALSE;
1319                         return;
1320                 }
1321                 manage_window_focus_in(mainwin->window, NULL, NULL);
1322         }
1323
1324         sock_cleanup();
1325         summary_clear_list(mainwin->summaryview);
1326         if (folderview_get_selected_item(mainwin->folderview))
1327                 folder_item_close(folderview_get_selected_item(mainwin->folderview));
1328         gtk_main_quit();
1329 }
1330
1331 gboolean claws_is_exiting(void)
1332 {
1333         return sc_exiting;
1334 }
1335
1336 gboolean claws_is_starting(void)
1337 {
1338         return sc_starting;
1339 }
1340
1341 /*
1342  * CLAWS: want this public so crash dialog can delete the
1343  * lock file too
1344  */
1345 gchar *claws_get_socket_name(void)
1346 {
1347         static gchar *filename = NULL;
1348
1349         if (filename == NULL) {
1350                 filename = g_strdup_printf("%s%cclaws-mail-%d",
1351                                            g_get_tmp_dir(), G_DIR_SEPARATOR,
1352 #if HAVE_GETUID
1353                                            getuid());
1354 #else
1355                                            0);                                          
1356 #endif
1357         }
1358
1359         return filename;
1360 }
1361
1362 static gchar *get_crashfile_name(void)
1363 {
1364         static gchar *filename = NULL;
1365
1366         if (filename == NULL) {
1367                 filename = g_strdup_printf("%s%cclaws-crashed",
1368                                            get_tmp_dir(), G_DIR_SEPARATOR);
1369         }
1370
1371         return filename;
1372 }
1373
1374 static gint prohibit_duplicate_launch(void)
1375 {
1376         gint uxsock;
1377         gchar *path;
1378
1379         path = claws_get_socket_name();
1380         uxsock = fd_connect_unix(path);
1381         if (uxsock < 0) {
1382                 g_unlink(path);
1383                 return fd_open_unix(path);
1384         }
1385
1386         /* remote command mode */
1387
1388         debug_print("another Claws Mail instance is already running.\n");
1389
1390         if (cmd.receive_all) {
1391                 fd_write_all(uxsock, "receive_all\n", 12);
1392         } else if (cmd.receive) {
1393                 fd_write_all(uxsock, "receive\n", 8);
1394         } else if (cmd.compose && cmd.attach_files) {
1395                 gchar *str, *compose_str;
1396                 gint i;
1397
1398                 if (cmd.compose_mailto) {
1399                         compose_str = g_strdup_printf("compose_attach %s\n",
1400                                                       cmd.compose_mailto);
1401                 } else {
1402                         compose_str = g_strdup("compose_attach\n");
1403                 }
1404
1405                 fd_write_all(uxsock, compose_str, strlen(compose_str));
1406                 g_free(compose_str);
1407
1408                 for (i = 0; i < cmd.attach_files->len; i++) {
1409                         str = g_ptr_array_index(cmd.attach_files, i);
1410                         fd_write_all(uxsock, str, strlen(str));
1411                         fd_write_all(uxsock, "\n", 1);
1412                 }
1413
1414                 fd_write_all(uxsock, ".\n", 2);
1415         } else if (cmd.compose) {
1416                 gchar *compose_str;
1417
1418                 if (cmd.compose_mailto) {
1419                         compose_str = g_strdup_printf
1420                                 ("compose %s\n", cmd.compose_mailto);
1421                 } else {
1422                         compose_str = g_strdup("compose\n");
1423                 }
1424
1425                 fd_write_all(uxsock, compose_str, strlen(compose_str));
1426                 g_free(compose_str);
1427         } else if (cmd.subscribe) {
1428                 gchar *str = g_strdup_printf("subscribe %s\n", cmd.subscribe_uri);
1429                 fd_write_all(uxsock, str, strlen(str));
1430                 g_free(str);
1431         } else if (cmd.send) {
1432                 fd_write_all(uxsock, "send\n", 5);
1433         } else if (cmd.online_mode == ONLINE_MODE_ONLINE) {
1434                 fd_write(uxsock, "online\n", 6);
1435         } else if (cmd.online_mode == ONLINE_MODE_OFFLINE) {
1436                 fd_write(uxsock, "offline\n", 7);
1437         } else if (cmd.status || cmd.status_full) {
1438                 gchar buf[BUFFSIZE];
1439                 gint i;
1440                 const gchar *command;
1441                 GPtrArray *folders;
1442                 gchar *folder;
1443  
1444                 command = cmd.status_full ? "status-full\n" : "status\n";
1445                 folders = cmd.status_full ? cmd.status_full_folders :
1446                         cmd.status_folders;
1447  
1448                 fd_write_all(uxsock, command, strlen(command));
1449                 for (i = 0; folders && i < folders->len; ++i) {
1450                         folder = g_ptr_array_index(folders, i);
1451                         fd_write_all(uxsock, folder, strlen(folder));
1452                         fd_write_all(uxsock, "\n", 1);
1453                 }
1454                 fd_write_all(uxsock, ".\n", 2);
1455                 for (;;) {
1456                         fd_gets(uxsock, buf, sizeof(buf));
1457                         if (!strncmp(buf, ".\n", 2)) break;
1458                         fputs(buf, stdout);
1459                 }
1460         } else if (cmd.exit) {
1461                 fd_write_all(uxsock, "exit\n", 5);
1462         } else if (cmd.target) {
1463                 gchar *str = g_strdup_printf("select %s\n", cmd.target);
1464                 fd_write_all(uxsock, str, strlen(str));
1465                 g_free(str);
1466         } else
1467                 fd_write_all(uxsock, "popup\n", 6);
1468
1469         fd_close(uxsock);
1470         return -1;
1471 }
1472
1473 static gint lock_socket_remove(void)
1474 {
1475 #ifdef G_OS_UNIX
1476         gchar *filename;
1477
1478         if (lock_socket < 0) {
1479                 return -1;
1480         }
1481
1482         if (lock_socket_tag > 0) {
1483                 gdk_input_remove(lock_socket_tag);
1484         }
1485         fd_close(lock_socket);
1486         filename = claws_get_socket_name();
1487         g_unlink(filename);
1488 #endif
1489
1490         return 0;
1491 }
1492
1493 static GPtrArray *get_folder_item_list(gint sock)
1494 {
1495         gchar buf[BUFFSIZE];
1496         FolderItem *item;
1497         GPtrArray *folders = NULL;
1498
1499         for (;;) {
1500                 fd_gets(sock, buf, sizeof(buf));
1501                 if (!strncmp(buf, ".\n", 2)) {
1502                         break;
1503                 }
1504                 strretchomp(buf);
1505                 if (!folders) {
1506                         folders = g_ptr_array_new();
1507                 }
1508                 item = folder_find_item_from_identifier(buf);
1509                 if (item) {
1510                         g_ptr_array_add(folders, item);
1511                 } else {
1512                         g_warning("no such folder: %s\n", buf);
1513                 }
1514         }
1515
1516         return folders;
1517 }
1518
1519 static void lock_socket_input_cb(gpointer data,
1520                                  gint source,
1521                                  GdkInputCondition condition)
1522 {
1523         MainWindow *mainwin = (MainWindow *)data;
1524         gint sock;
1525         gchar buf[BUFFSIZE];
1526
1527         sock = fd_accept(source);
1528         fd_gets(sock, buf, sizeof(buf));
1529
1530         if (!strncmp(buf, "popup", 5)) {
1531                 main_window_popup(mainwin);
1532         } else if (!strncmp(buf, "receive_all", 11)) {
1533                 inc_all_account_mail(mainwin, FALSE,
1534                                      prefs_common.newmail_notify_manu);
1535         } else if (!strncmp(buf, "receive", 7)) {
1536                 inc_mail(mainwin, prefs_common.newmail_notify_manu);
1537         } else if (!strncmp(buf, "compose_attach", 14)) {
1538                 GPtrArray *files;
1539                 gchar *mailto;
1540
1541                 mailto = g_strdup(buf + strlen("compose_attach") + 1);
1542                 files = g_ptr_array_new();
1543                 while (fd_gets(sock, buf, sizeof(buf)) > 0) {
1544                         if (buf[0] == '.' && buf[1] == '\n') {
1545                                 break;
1546                         }
1547                         strretchomp(buf);
1548                         g_ptr_array_add(files, g_strdup(buf));
1549                 }
1550                 open_compose_new(mailto, files);
1551                 ptr_array_free_strings(files);
1552                 g_ptr_array_free(files, TRUE);
1553                 g_free(mailto);
1554         } else if (!strncmp(buf, "compose", 7)) {
1555                 open_compose_new(buf + strlen("compose") + 1, NULL);
1556         } else if (!strncmp(buf, "subscribe", 9)) {
1557                 main_window_popup(mainwin);
1558                 folder_subscribe(buf + strlen("subscribe") + 1);
1559         } else if (!strncmp(buf, "send", 4)) {
1560                 send_queue();
1561         } else if (!strncmp(buf, "online", 6)) {
1562                 main_window_toggle_work_offline(mainwin, FALSE, FALSE);
1563         } else if (!strncmp(buf, "offline", 7)) {
1564                 main_window_toggle_work_offline(mainwin, TRUE, FALSE);
1565         } else if (!strncmp(buf, "status-full", 11) ||
1566                    !strncmp(buf, "status", 6)) {
1567                 gchar *status;
1568                 GPtrArray *folders;
1569  
1570                 folders = get_folder_item_list(sock);
1571                 status = folder_get_status
1572                         (folders, !strncmp(buf, "status-full", 11));
1573                 fd_write_all(sock, status, strlen(status));
1574                 fd_write_all(sock, ".\n", 2);
1575                 g_free(status);
1576                 if (folders) g_ptr_array_free(folders, TRUE);
1577         } else if (!strncmp(buf, "select ", 7)) {
1578                 const gchar *target = buf+7;
1579                 mainwindow_jump_to(target);
1580         } else if (!strncmp(buf, "exit", 4)) {
1581                 app_will_exit(NULL, mainwin);
1582         }
1583
1584         fd_close(sock);
1585 }
1586
1587 static void open_compose_new(const gchar *address, GPtrArray *attach_files)
1588 {
1589         gchar *addr = NULL;
1590
1591         if (address) {
1592                 Xstrdup_a(addr, address, return);
1593                 g_strstrip(addr);
1594         }
1595
1596         compose_new(NULL, addr, attach_files);
1597 }
1598
1599 static void send_queue(void)
1600 {
1601         GList *list;
1602         gchar *errstr = NULL;
1603         for (list = folder_get_list(); list != NULL; list = list->next) {
1604                 Folder *folder = list->data;
1605
1606                 if (folder->queue) {
1607                         gint res = procmsg_send_queue
1608                                 (folder->queue, prefs_common.savemsg,
1609                                 &errstr);
1610
1611                         if (res) {
1612                                 folder_item_scan(folder->queue);
1613                         }
1614                 }
1615         }
1616         if (errstr) {
1617                 gchar *tmp = g_strdup_printf(_("Some errors occurred "
1618                                 "while sending queued messages:\n%s"), errstr);
1619                 g_free(errstr);
1620                 alertpanel_error_log(tmp);
1621                 g_free(tmp);
1622         } else {
1623                 alertpanel_error_log("Some errors occurred "
1624                                 "while sending queued messages.");
1625         }
1626 }
1627
1628 static void quit_signal_handler(int sig)
1629 {
1630         debug_print("Quitting on signal %d\n", sig);
1631
1632         g_timeout_add(0, clean_quit, NULL);
1633 }
1634
1635 static void install_basic_sighandlers()
1636 {
1637 #ifndef G_OS_WIN32
1638         sigset_t    mask;
1639         struct sigaction act;
1640
1641         sigemptyset(&mask);
1642
1643 #ifdef SIGTERM
1644         sigaddset(&mask, SIGTERM);
1645 #endif
1646 #ifdef SIGINT
1647         sigaddset(&mask, SIGINT);
1648 #endif
1649 #ifdef SIGHUP
1650         sigaddset(&mask, SIGHUP);
1651 #endif
1652
1653         act.sa_handler = quit_signal_handler;
1654         act.sa_mask    = mask;
1655         act.sa_flags   = 0;
1656
1657 #ifdef SIGTERM
1658         sigaction(SIGTERM, &act, 0);
1659 #endif
1660 #ifdef SIGINT
1661         sigaction(SIGINT, &act, 0);
1662 #endif  
1663 #ifdef SIGHUP
1664         sigaction(SIGHUP, &act, 0);
1665 #endif  
1666
1667         sigprocmask(SIG_UNBLOCK, &mask, 0);
1668 #endif /* !G_OS_WIN32 */
1669 }