2006-01-15 [colin] 1.9.100cvs153
[claws.git] / src / main.c
1 /*
2  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 1999-2006 Hiroyuki Yamamoto and the Sylpheed-Claws 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 #include "wizard.h"
43 #ifdef HAVE_STARTUP_NOTIFICATION
44 # define SN_API_NOT_YET_FROZEN
45 # include <libsn/sn-launchee.h>
46 # include <gdk/gdkx.h>
47 #endif
48
49 #include "sylpheed.h"
50 #include "main.h"
51 #include "mainwindow.h"
52 #include "folderview.h"
53 #include "image_viewer.h"
54 #include "summaryview.h"
55 #include "prefs_common.h"
56 #include "prefs_account.h"
57 #include "prefs_actions.h"
58 #include "prefs_ext_prog.h"
59 #include "prefs_fonts.h"
60 #include "prefs_image_viewer.h"
61 #include "prefs_message.h"
62 #include "prefs_receive.h"
63 #include "prefs_msg_colors.h"
64 #include "prefs_quote.h"
65 #include "prefs_spelling.h"
66 #include "prefs_summaries.h"
67 #include "prefs_themes.h"
68 #include "prefs_other.h"
69 #include "prefs_send.h"
70 #include "prefs_wrapping.h"
71 #include "prefs_compose_writing.h"
72 #include "prefs_display_header.h"
73 #include "account.h"
74 #include "procmsg.h"
75 #include "inc.h"
76 #include "import.h"
77 #include "manage_window.h"
78 #include "alertpanel.h"
79 #include "statusbar.h"
80 #include "addressbook.h"
81 #include "compose.h"
82 #include "folder.h"
83 #include "setup.h"
84 #include "utils.h"
85 #include "gtkutils.h"
86 #include "socket.h"
87 #include "log.h"
88 #include "prefs_toolbar.h"
89 #include "plugin.h"
90 #include "mh_gtk.h"
91 #include "imap_gtk.h"
92 #include "news_gtk.h"
93 #include "matcher.h"
94 #ifdef HAVE_LIBETPAN
95 #include "imap-thread.h"
96 #endif
97 #include "stock_pixmap.h"
98
99 #if USE_OPENSSL
100 #  include "ssl.h"
101 #endif
102
103 #include "version.h"
104
105 #include "crash.h"
106
107 gchar *prog_version;
108 #ifdef CRASH_DIALOG
109 gchar *argv0;
110 #endif
111
112 #ifdef HAVE_STARTUP_NOTIFICATION
113 static SnLauncheeContext *sn_context = NULL;
114 static SnDisplay *sn_display = NULL;
115 #endif
116
117 static gint lock_socket = -1;
118 static gint lock_socket_tag = 0;
119
120 typedef enum 
121 {
122         ONLINE_MODE_DONT_CHANGE,
123         ONLINE_MODE_ONLINE,
124         ONLINE_MODE_OFFLINE
125 } OnlineMode;
126
127 static struct RemoteCmd {
128         gboolean receive;
129         gboolean receive_all;
130         gboolean compose;
131         const gchar *compose_mailto;
132         GPtrArray *attach_files;
133         gboolean status;
134         gboolean status_full;
135         GPtrArray *status_folders;
136         GPtrArray *status_full_folders;
137         gboolean send;
138         gboolean crash;
139         int online_mode;
140         gchar   *crash_params;
141         gboolean exit;
142         gboolean subscribe;
143         const gchar *subscribe_uri;
144 } cmd;
145
146 static void parse_cmd_opt(int argc, char *argv[]);
147
148 static gint prohibit_duplicate_launch   (void);
149 static gchar * get_crashfile_name       (void);
150 static gint lock_socket_remove          (void);
151 static void lock_socket_input_cb        (gpointer          data,
152                                          gint              source,
153                                          GdkInputCondition condition);
154 #ifndef CLAWS                                    
155 static 
156 #endif
157 gchar *get_socket_name          (void);
158
159
160 static void open_compose_new            (const gchar    *address,
161                                          GPtrArray      *attach_files);
162
163 static void send_queue                  (void);
164 static void initial_processing          (FolderItem *item, gpointer data);
165 static void quit_signal_handler         (int sig);
166 static void install_basic_sighandlers   (void);
167 static void exit_sylpheed               (MainWindow *mainwin);
168
169 #define MAKE_DIR_IF_NOT_EXIST(dir) \
170 { \
171         if (!is_dir_exist(dir)) { \
172                 if (is_file_exist(dir)) { \
173                         alertpanel_warning \
174                                 (_("File '%s' already exists.\n" \
175                                    "Can't create folder."), \
176                                  dir); \
177                         return 1; \
178                 } \
179                 if (make_dir(dir) < 0) \
180                         return 1; \
181         } \
182 }
183
184 static MainWindow *static_mainwindow;
185
186 #ifdef HAVE_STARTUP_NOTIFICATION
187 static void sn_error_trap_push(SnDisplay *display, Display *xdisplay)
188 {
189         gdk_error_trap_push();
190 }
191
192 static void sn_error_trap_pop(SnDisplay *display, Display *xdisplay)
193 {
194         gdk_error_trap_pop();
195 }
196
197 static void startup_notification_complete(gboolean with_window)
198 {
199         Display *xdisplay;
200         GtkWidget *hack = NULL;
201
202         if (with_window) {
203                 /* this is needed to make the startup notification leave,
204                  * if we have been launched from a menu.
205                  * We have to display a window, so let it be very little */
206                 hack = gtk_window_new(GTK_WINDOW_POPUP);
207                 gtk_widget_set_uposition(hack, 0, 0);
208                 gtk_widget_set_size_request(hack, 1, 1);
209                 gtk_widget_show(hack);
210         }
211
212         xdisplay = GDK_DISPLAY();
213         sn_display = sn_display_new(xdisplay,
214                                 sn_error_trap_push,
215                                 sn_error_trap_pop);
216         sn_context = sn_launchee_context_new_from_environment(sn_display,
217                                                  DefaultScreen(xdisplay));
218
219         if (sn_context != NULL)
220         {
221                 sn_launchee_context_complete(sn_context);
222                 sn_launchee_context_unref(sn_context);
223                 sn_display_unref(sn_display);
224         }
225         if (with_window)
226                 gtk_widget_destroy(hack);
227 }
228 #endif /* HAVE_STARTUP_NOTIFICATION */
229
230 void sylpheed_gtk_idle(void) 
231 {
232         while(gtk_events_pending())
233                 gtk_main_iteration();
234         g_usleep(50000);
235 }
236
237 gboolean defer_check_all(void *data)
238 {
239         gboolean autochk = GPOINTER_TO_INT(data);
240
241         inc_all_account_mail(static_mainwindow, autochk, 
242                         prefs_common.newmail_notify_manu);
243
244         return FALSE;
245 }
246
247 gboolean defer_check(void *data)
248 {
249         inc_mail(static_mainwindow, prefs_common.newmail_notify_manu);
250
251         return FALSE;
252 }
253
254 static gboolean migrate_old_config(const gchar *old_cfg_dir, const gchar *new_cfg_dir)
255 {
256         gchar *message = g_strdup_printf(_("Configuration for Sylpheed-Claws %s found.\n"
257                          "Do you want to migrate this configuration?"),
258                          !strcmp(old_cfg_dir, OLD_GTK1_RC_DIR)?
259                                 _("1.0.5 or previous"):_("1.9.15 or previous"));
260         gint r = 0;
261         GtkWidget *window = NULL;
262         if (alertpanel(_("Migration of configuration"),
263                        message,
264                        GTK_STOCK_NO, GTK_STOCK_YES, NULL) != G_ALERTALTERNATE)
265                 return FALSE;
266         
267         window = label_window_create(_("Copying configuration..."));
268         GTK_EVENTS_FLUSH();
269         r = copy_dir(old_cfg_dir, new_cfg_dir);
270         gtk_widget_destroy(window);
271         if (r != 0) {
272                 alertpanel_error(_("Migration failed!"));
273         }
274         return (r == 0);
275 }
276
277 int main(int argc, char *argv[])
278 {
279         gchar *userrc;
280         MainWindow *mainwin;
281         FolderView *folderview;
282         GdkPixbuf *icon;
283         gboolean crash_file_present = FALSE;
284
285         if (!sylpheed_init(&argc, &argv)) {
286                 return 0;
287         }
288
289         prog_version = PROG_VERSION;
290 #ifdef CRASH_DIALOG
291         argv0 = g_strdup(argv[0]);
292 #endif
293
294         parse_cmd_opt(argc, argv);
295
296 #ifdef CRASH_DIALOG
297         if (cmd.crash) {
298                 gtk_set_locale();
299                 gtk_init(&argc, &argv);
300                 crash_main(cmd.crash_params);
301                 return 0;
302         }
303         crash_install_handlers();
304 #endif
305         install_basic_sighandlers();
306         sock_init();
307
308         /* check and create unix domain socket for remote operation */
309 #ifdef G_OS_UNIX
310         lock_socket = prohibit_duplicate_launch();
311         if (lock_socket < 0) {
312 #ifdef HAVE_STARTUP_NOTIFICATION
313                 if(gtk_init_check(&argc, &argv))
314                         startup_notification_complete(TRUE);
315 #endif
316                 return 0;
317         }
318
319         if (cmd.status || cmd.status_full) {
320                 puts("0 Sylpheed-Claws not running.");
321                 lock_socket_remove();
322                 return 0;
323         }
324         
325         if (cmd.exit)
326                 return 0;
327 #endif
328         g_thread_init(NULL);
329         /* gdk_threads_init(); */
330
331         gtk_set_locale();
332         gtk_init(&argc, &argv);
333
334         gdk_rgb_init();
335         gtk_widget_set_default_colormap(gdk_rgb_get_colormap());
336         gtk_widget_set_default_visual(gdk_rgb_get_visual());
337
338         if (!g_thread_supported())
339                 g_error(_("g_thread is not supported by glib.\n"));
340
341         /* parse gtkrc files */
342         userrc = g_strconcat(get_home_dir(), G_DIR_SEPARATOR_S, ".gtkrc-2.0",
343                              NULL);
344         gtk_rc_parse(userrc);
345         g_free(userrc);
346         userrc = g_strconcat(get_home_dir(), G_DIR_SEPARATOR_S, ".gtk",
347                              G_DIR_SEPARATOR_S, "gtkrc-2.0", NULL);
348         gtk_rc_parse(userrc);
349         g_free(userrc);
350
351         CHDIR_RETURN_VAL_IF_FAIL(get_home_dir(), 1);
352         if (!is_dir_exist(RC_DIR)) {
353                 gboolean r = FALSE;
354                 if (is_dir_exist(OLD_GTK2_RC_DIR))
355                         r = migrate_old_config(OLD_GTK2_RC_DIR, RC_DIR);
356                 else if (is_dir_exist(OLD_GTK1_RC_DIR))
357                         r = migrate_old_config(OLD_GTK1_RC_DIR, RC_DIR);
358                 if (r == FALSE && !is_dir_exist(RC_DIR) && make_dir(RC_DIR) < 0)
359                         exit(1);
360         }
361
362         userrc = g_strconcat(get_rc_dir(), G_DIR_SEPARATOR_S, "gtkrc-2.0", NULL);
363         gtk_rc_parse(userrc);
364         g_free(userrc);
365
366         userrc = g_strconcat(get_rc_dir(), G_DIR_SEPARATOR_S, MENU_RC, NULL);
367         gtk_accel_map_load (userrc);
368         g_free(userrc);
369
370         gtk_settings_set_long_property(gtk_settings_get_default(), 
371                                        "gtk-can-change-accels",
372                                        (glong)TRUE, "XProperty");
373
374         CHDIR_RETURN_VAL_IF_FAIL(get_rc_dir(), 1);
375
376         MAKE_DIR_IF_NOT_EXIST(get_mail_base_dir());
377         MAKE_DIR_IF_NOT_EXIST(get_imap_cache_dir());
378         MAKE_DIR_IF_NOT_EXIST(get_news_cache_dir());
379         MAKE_DIR_IF_NOT_EXIST(get_mime_tmp_dir());
380         MAKE_DIR_IF_NOT_EXIST(get_tmp_dir());
381         MAKE_DIR_IF_NOT_EXIST(UIDL_DIR);
382
383         crash_file_present = is_file_exist(get_crashfile_name());
384         /* remove temporary files */
385         remove_all_files(get_tmp_dir());
386         remove_all_files(get_mime_tmp_dir());
387
388         if (is_file_exist("sylpheed.log")) {
389                 if (rename_force("sylpheed.log", "sylpheed.log.bak") < 0)
390                         FILE_OP_ERROR("sylpheed.log", "rename");
391         }
392         set_log_file("sylpheed.log");
393
394         CHDIR_RETURN_VAL_IF_FAIL(get_home_dir(), 1);
395
396         folder_system_init();
397         prefs_common_read_config();
398
399         prefs_themes_init();
400         prefs_fonts_init();
401         prefs_ext_prog_init();
402         prefs_wrapping_init();
403         prefs_compose_writing_init();
404         prefs_msg_colors_init();
405         image_viewer_init();
406         prefs_image_viewer_init();
407         prefs_quote_init();
408         prefs_summaries_init();
409         prefs_message_init();
410         prefs_other_init();
411         prefs_receive_init();
412         prefs_send_init();
413 #ifdef USE_ASPELL
414         gtkaspell_checkers_init();
415         prefs_spelling_init();
416 #endif
417         
418         sock_set_io_timeout(prefs_common.io_timeout_secs);
419 #ifdef HAVE_LIBETPAN
420         imap_main_set_timeout(prefs_common.io_timeout_secs);
421 #endif
422         prefs_actions_read_config();
423         prefs_display_header_read_config();
424         /* prefs_filtering_read_config(); */
425         addressbook_read_file();
426         renderer_read_config();
427
428         gtkut_widget_init();
429         stock_pixbuf_gdk(NULL, STOCK_PIXMAP_SYLPHEED_ICON, &icon);
430         gtk_window_set_default_icon(icon);
431
432         folderview_initialize();
433
434         mh_gtk_init();
435         imap_gtk_init();
436         news_gtk_init();
437                 
438         mainwin = main_window_create
439                 (prefs_common.sep_folder | prefs_common.sep_msg << 1);
440         folderview = mainwin->folderview;
441
442         gtk_clist_freeze(GTK_CLIST(mainwin->folderview->ctree));
443         folder_item_update_freeze();
444
445         /* register the callback of unix domain socket input */
446 #ifdef G_OS_UNIX
447         lock_socket_tag = gdk_input_add(lock_socket,
448                                         GDK_INPUT_READ | GDK_INPUT_EXCEPTION,
449                                         lock_socket_input_cb,
450                                         mainwin);
451 #endif
452
453         prefs_account_init();
454         account_read_config_all();
455
456         if (folder_read_list() < 0) {
457                 if (!run_wizard(mainwin, TRUE))
458                         exit(1);
459                 folder_write_list();
460         }
461
462         if (!account_get_list()) {
463                 if (!run_wizard(mainwin, FALSE))
464                         exit(1);
465                 account_read_config_all();
466                 if(!account_get_list())
467                         exit_sylpheed(mainwin);
468         }
469
470         main_window_popup(mainwin);
471
472 #ifdef HAVE_LIBETPAN
473         imap_main_init();
474 #endif  
475         account_set_missing_folder();
476         folder_set_missing_folders();
477         folderview_set(folderview);
478
479         prefs_matcher_read_config();
480
481         /* make one all-folder processing before using sylpheed */
482         main_window_cursor_wait(mainwin);
483         folder_func_to_all_folders(initial_processing, (gpointer *)mainwin);
484
485         /* if Sylpheed crashed, rebuild caches */
486         if (!cmd.crash && crash_file_present) {
487                 debug_print("Sylpheed-Claws crashed, checking for new messages in local folders\n");
488                 folder_item_update_thaw();
489                 folderview_check_new(NULL);
490                 folder_clean_cache_memory_force();
491                 folder_item_update_freeze();
492         }
493         /* make the crash-indicator file */
494         str_write_to_file("foo", get_crashfile_name());
495
496         addressbook_read_file();
497
498         inc_autocheck_timer_init(mainwin);
499
500         /* ignore SIGPIPE signal for preventing sudden death of program */
501 #ifdef G_OS_UNIX
502         signal(SIGPIPE, SIG_IGN);
503 #endif
504         if (cmd.online_mode == ONLINE_MODE_OFFLINE)
505                 main_window_toggle_work_offline(mainwin, TRUE, FALSE);
506         if (cmd.online_mode == ONLINE_MODE_ONLINE)
507                 main_window_toggle_work_offline(mainwin, FALSE, FALSE);
508
509         if (cmd.status_folders) {
510                 g_ptr_array_free(cmd.status_folders, TRUE);
511                 cmd.status_folders = NULL;
512         }
513         if (cmd.status_full_folders) {
514                 g_ptr_array_free(cmd.status_full_folders, TRUE);
515                 cmd.status_full_folders = NULL;
516         }
517
518         sylpheed_register_idle_function(sylpheed_gtk_idle);
519
520         prefs_toolbar_init();
521
522         plugin_load_all("GTK2");
523         
524         if (!folder_have_mailbox()) {
525                 alertpanel_error(_("Sylpheed-Claws has detected a configured "
526                                    "mailbox, but could not load it. It is "
527                                    "probably provided by an out-of-date "
528                                    "external plugin. Please reinstall the "
529                                    "plugin and try again."));
530                 exit(1);
531         }
532         
533         static_mainwindow = mainwin;
534
535 #ifdef HAVE_STARTUP_NOTIFICATION
536         startup_notification_complete(FALSE);
537 #endif
538         folder_item_update_thaw();
539         gtk_clist_thaw(GTK_CLIST(mainwin->folderview->ctree));
540         main_window_cursor_normal(mainwin);
541
542         if (cmd.receive_all)
543                 g_timeout_add(1000, defer_check_all, GINT_TO_POINTER(FALSE));
544         else if (prefs_common.chk_on_startup)
545                 g_timeout_add(1000, defer_check_all, GINT_TO_POINTER(TRUE));
546         else if (cmd.receive)
547                 g_timeout_add(1000, defer_check, NULL);
548         else
549                 gtk_widget_grab_focus(folderview->ctree);
550
551         if (cmd.compose)
552                 open_compose_new(cmd.compose_mailto, cmd.attach_files);
553         if (cmd.attach_files) {
554                 ptr_array_free_strings(cmd.attach_files);
555                 g_ptr_array_free(cmd.attach_files, TRUE);
556                 cmd.attach_files = NULL;
557         }
558         if (cmd.subscribe)
559                 folder_subscribe(cmd.subscribe_uri);
560
561         if (cmd.send)
562                 send_queue();
563         
564         gtk_main();
565
566         exit_sylpheed(mainwin);
567
568         return 0;
569 }
570
571 static void save_all_caches(FolderItem *item, gpointer data)
572 {
573         if (!item->cache)
574                 return;
575         folder_item_write_cache(item);
576 }
577
578 static void exit_sylpheed(MainWindow *mainwin)
579 {
580         gchar *filename;
581
582         debug_print("shutting down\n");
583         inc_autocheck_timer_remove();
584
585         if (prefs_common.clean_on_exit)
586                 main_window_empty_trash(mainwin, prefs_common.ask_on_clean);
587
588         /* save prefs for opened folder */
589         if(mainwin->folderview->opened)
590         {
591                 FolderItem *item;
592
593                 item = gtk_ctree_node_get_row_data(GTK_CTREE(mainwin->folderview->ctree), mainwin->folderview->opened);
594                 summary_save_prefs_to_folderitem(mainwin->folderview->summaryview, item);
595         }
596
597         /* save all state before exiting */
598         folder_write_list();
599         folder_func_to_all_folders(save_all_caches, NULL);
600
601         main_window_get_size(mainwin);
602         main_window_get_position(mainwin);
603         prefs_common_write_config();
604         account_write_config_all();
605         addressbook_export_to_file();
606
607         filename = g_strconcat(get_rc_dir(), G_DIR_SEPARATOR_S, MENU_RC, NULL);
608         gtk_accel_map_save(filename);
609         g_free(filename);
610
611         /* delete temporary files */
612         remove_all_files(get_tmp_dir());
613         remove_all_files(get_mime_tmp_dir());
614
615         close_log_file();
616
617 #ifdef HAVE_LIBETPAN
618         imap_main_done();
619 #endif
620         /* delete crashfile */
621         if (!cmd.crash)
622                 g_unlink(get_crashfile_name());
623
624         lock_socket_remove();
625
626         main_window_destroy(mainwin);
627         
628         plugin_unload_all("GTK2");
629
630         prefs_toolbar_done();
631
632         addressbook_destroy();
633
634         prefs_themes_done();
635         prefs_fonts_done();
636         prefs_ext_prog_done();
637         prefs_wrapping_done();
638         prefs_compose_writing_done();
639         prefs_msg_colors_done();
640         prefs_image_viewer_done();
641         image_viewer_done();
642         prefs_quote_done();
643         prefs_summaries_done();
644         prefs_message_done();
645         prefs_other_done();
646         prefs_receive_done();
647         prefs_send_done();
648 #ifdef USE_ASPELL       
649         prefs_spelling_done();
650         gtkaspell_checkers_quit();
651 #endif
652         sylpheed_done();
653
654 }
655
656 static void parse_cmd_opt(int argc, char *argv[])
657 {
658         gint i;
659
660         for (i = 1; i < argc; i++) {
661                 if (!strncmp(argv[i], "--receive-all", 13))
662                         cmd.receive_all = TRUE;
663                 else if (!strncmp(argv[i], "--receive", 9))
664                         cmd.receive = TRUE;
665                 else if (!strncmp(argv[i], "--compose", 9)) {
666                         const gchar *p = argv[i + 1];
667
668                         cmd.compose = TRUE;
669                         cmd.compose_mailto = NULL;
670                         if (p && *p != '\0' && *p != '-') {
671                                 if (!strncmp(p, "mailto:", 7))
672                                         cmd.compose_mailto = p + 7;
673                                 else
674                                         cmd.compose_mailto = p;
675                                 i++;
676                         }
677                 } else if (!strncmp(argv[i], "--subscribe", 11)) {
678                         const gchar *p = argv[i + 1];
679                         if (p && *p != '\0' && *p != '-') {
680                                 cmd.subscribe = TRUE;
681                                 cmd.subscribe_uri = p;
682                         }
683                 } else if (!strncmp(argv[i], "--attach", 8)) {
684                         const gchar *p = argv[i + 1];
685                         gchar *file;
686
687                         while (p && *p != '\0' && *p != '-') {
688                                 if (!cmd.attach_files)
689                                         cmd.attach_files = g_ptr_array_new();
690                                 if (*p != G_DIR_SEPARATOR)
691                                         file = g_strconcat(sylpheed_get_startup_dir(),
692                                                            G_DIR_SEPARATOR_S,
693                                                            p, NULL);
694                                 else
695                                         file = g_strdup(p);
696                                 g_ptr_array_add(cmd.attach_files, file);
697                                 i++;
698                                 p = argv[i + 1];
699                         }
700                 } else if (!strncmp(argv[i], "--send", 6)) {
701                         cmd.send = TRUE;
702                 } else if (!strncmp(argv[i], "--version", 9)) {
703                         puts("Sylpheed-Claws version " VERSION);
704                         exit(0);
705                 } else if (!strncmp(argv[i], "--status-full", 13)) {
706                         const gchar *p = argv[i + 1];
707  
708                         cmd.status_full = TRUE;
709                         while (p && *p != '\0' && *p != '-') {
710                                 if (!cmd.status_full_folders)
711                                         cmd.status_full_folders =
712                                                 g_ptr_array_new();
713                                 g_ptr_array_add(cmd.status_full_folders,
714                                                 g_strdup(p));
715                                 i++;
716                                 p = argv[i + 1];
717                         }
718                 } else if (!strncmp(argv[i], "--status", 8)) {
719                         const gchar *p = argv[i + 1];
720  
721                         cmd.status = TRUE;
722                         while (p && *p != '\0' && *p != '-') {
723                                 if (!cmd.status_folders)
724                                         cmd.status_folders = g_ptr_array_new();
725                                 g_ptr_array_add(cmd.status_folders,
726                                                 g_strdup(p));
727                                 i++;
728                                 p = argv[i + 1];
729                         }
730                 } else if (!strncmp(argv[i], "--online", 8)) {
731                         cmd.online_mode = ONLINE_MODE_ONLINE;
732                 } else if (!strncmp(argv[i], "--offline", 9)) {
733                         cmd.online_mode = ONLINE_MODE_OFFLINE;
734                 } else if (!strncmp(argv[i], "--help", 6)) {
735                         gchar *base = g_path_get_basename(argv[0]);
736                         g_print(_("Usage: %s [OPTION]...\n"), base);
737
738                         g_print("%s\n", _("  --compose [address]    open composition window"));
739                         g_print("%s\n", _("  --subscribe [uri]      subscribe to the given URI if possible"));
740                         g_print("%s\n", _("  --attach file1 [file2]...\n"
741                                   "                         open composition window with specified files\n"
742                                   "                         attached"));
743                         g_print("%s\n", _("  --receive              receive new messages"));
744                         g_print("%s\n", _("  --receive-all          receive new messages of all accounts"));
745                         g_print("%s\n", _("  --send                 send all queued messages"));
746                         g_print("%s\n", _("  --status [folder]...   show the total number of messages"));
747                         g_print("%s\n", _("  --status-full [folder]...\n"
748                                "                         show the status of each folder"));
749                         g_print("%s\n", _("  --online               switch to online mode"));
750                         g_print("%s\n", _("  --offline              switch to offline mode"));
751                         g_print("%s\n", _("  --exit                 exit Sylpheed-Claws"));
752                         g_print("%s\n", _("  --debug                debug mode"));
753                         g_print("%s\n", _("  --help                 display this help and exit"));
754                         g_print("%s\n", _("  --version              output version information and exit"));
755                         g_print("%s\n", _("  --config-dir           output configuration directory"));
756
757                         g_free(base);
758                         exit(1);
759                 } else if (!strncmp(argv[i], "--crash", 7)) {
760                         cmd.crash = TRUE;
761                         cmd.crash_params = g_strdup(argv[i + 1]);
762                         i++;
763                 } else if (!strncmp(argv[i], "--config-dir", sizeof "--config-dir" - 1)) {
764                         puts(RC_DIR);
765                         exit(0);
766                 } else if (!strncmp(argv[i], "--exit", 6)) {
767                         cmd.exit = TRUE;
768                 } else if (i == 1 && argc == 2) {
769                         /* only one parameter. Do something intelligent about it */
770                         if (strstr(argv[i], "@") && !strstr(argv[i], "://")) {
771                                 const gchar *p = argv[i];
772
773                                 cmd.compose = TRUE;
774                                 cmd.compose_mailto = NULL;
775                                 if (p && *p != '\0' && *p != '-') {
776                                         if (!strncmp(p, "mailto:", 7))
777                                                 cmd.compose_mailto = p + 7;
778                                         else
779                                                 cmd.compose_mailto = p;
780                                 }
781                         } else if (strstr(argv[i], "://")) {
782                                 const gchar *p = argv[i];
783                                 if (p && *p != '\0' && *p != '-') {
784                                         cmd.subscribe = TRUE;
785                                         cmd.subscribe_uri = p;
786                                 }
787                         }
788                 }
789                 
790         }
791
792         if (cmd.attach_files && cmd.compose == FALSE) {
793                 cmd.compose = TRUE;
794                 cmd.compose_mailto = NULL;
795         }
796 }
797
798 static gint get_queued_message_num(void)
799 {
800         FolderItem *queue;
801
802         queue = folder_get_default_queue();
803         if (!queue) return -1;
804
805         folder_item_scan(queue);
806         return queue->total_msgs;
807 }
808
809 static void initial_processing(FolderItem *item, gpointer data)
810 {
811         MainWindow *mainwin = (MainWindow *)data;
812         gchar *buf;
813
814         g_return_if_fail(item);
815         buf = g_strdup_printf(_("Processing (%s)..."), 
816                               item->path 
817                               ? item->path 
818                               : _("top level folder"));
819         debug_print("%s\n", buf);
820         g_free(buf);
821
822         
823         if (item->prefs->enable_processing)
824                 folder_item_apply_processing(item);
825
826         debug_print("done.\n");
827         STATUSBAR_POP(mainwin);
828 }
829
830 static void draft_all_messages(void)
831 {
832         GList *compose_list = NULL;
833         
834         while ((compose_list = compose_get_compose_list()) != NULL) {
835                 Compose *c = (Compose*)compose_list->data;
836                 compose_draft(c);
837         }       
838 }
839
840 gboolean clean_quit(gpointer data)
841 {
842         static gboolean firstrun = TRUE;
843
844         if (!firstrun)
845                 return FALSE;
846         firstrun = FALSE;
847
848         /*!< Good idea to have the main window stored in a 
849          *   static variable so we can check that variable
850          *   to see if we're really allowed to do things
851          *   that actually the spawner is supposed to 
852          *   do (like: sending mail, composing messages).
853          *   Because, really, if we're the spawnee, and
854          *   we touch GTK stuff, we're hosed. See the 
855          *   next fixme. */
856
857         /* FIXME: Use something else to signal that we're
858          * in the original spawner, and not in a spawned
859          * child. */
860         if (!static_mainwindow) 
861                 return FALSE;
862                 
863         draft_all_messages();
864
865         exit_sylpheed(static_mainwindow);
866         exit(0);
867
868         return FALSE;
869 }
870
871 void app_will_exit(GtkWidget *widget, gpointer data)
872 {
873         MainWindow *mainwin = data;
874
875         if (compose_get_compose_list()) {
876                 gint val = alertpanel(_("Really quit?"),
877                                _("Composing message exists."),
878                                _("_Save to Draft"), _("_Discard them"), _("Do_n't quit"));
879                 switch (val) {
880                         case G_ALERTOTHER:
881                                 return;
882                         case G_ALERTALTERNATE:
883                                 break;
884                         default:
885                                 draft_all_messages();
886                 }
887
888                 manage_window_focus_in(mainwin->window, NULL, NULL);
889         }
890
891         if (prefs_common.warn_queued_on_exit && get_queued_message_num() > 0) {
892                 if (alertpanel(_("Queued messages"),
893                                _("Some unsent messages are queued. Exit now?"),
894                                GTK_STOCK_CANCEL, GTK_STOCK_OK, NULL)
895                     != G_ALERTALTERNATE)
896                         return;
897                 manage_window_focus_in(mainwin->window, NULL, NULL);
898         }
899
900         sock_cleanup();
901
902         gtk_main_quit();
903 }
904
905 /*
906  * CLAWS: want this public so crash dialog can delete the
907  * lock file too
908  */
909 #ifndef CLAWS
910 static
911 #endif
912 gchar *get_socket_name(void)
913 {
914         static gchar *filename = NULL;
915
916         if (filename == NULL) {
917                 filename = g_strdup_printf("%s%csylpheed-claws-%d",
918                                            g_get_tmp_dir(), G_DIR_SEPARATOR,
919 #if HAVE_GETUID
920                                            getuid());
921 #else
922                                            0);                                          
923 #endif
924         }
925
926         return filename;
927 }
928
929 static gchar *get_crashfile_name(void)
930 {
931         static gchar *filename = NULL;
932
933         if (filename == NULL) {
934                 filename = g_strdup_printf("%s%csylpheed-crashed",
935                                            get_tmp_dir(), G_DIR_SEPARATOR);
936         }
937
938         return filename;
939 }
940
941 static gint prohibit_duplicate_launch(void)
942 {
943         gint uxsock;
944         gchar *path;
945
946         path = get_socket_name();
947         uxsock = fd_connect_unix(path);
948         if (uxsock < 0) {
949                 g_unlink(path);
950                 return fd_open_unix(path);
951         }
952
953         /* remote command mode */
954
955         debug_print("another Sylpheed-Claws instance is already running.\n");
956
957         if (cmd.receive_all)
958                 fd_write_all(uxsock, "receive_all\n", 12);
959         else if (cmd.receive)
960                 fd_write_all(uxsock, "receive\n", 8);
961         else if (cmd.compose && cmd.attach_files) {
962                 gchar *str, *compose_str;
963                 gint i;
964
965                 if (cmd.compose_mailto)
966                         compose_str = g_strdup_printf("compose_attach %s\n",
967                                                       cmd.compose_mailto);
968                 else
969                         compose_str = g_strdup("compose_attach\n");
970
971                 fd_write_all(uxsock, compose_str, strlen(compose_str));
972                 g_free(compose_str);
973
974                 for (i = 0; i < cmd.attach_files->len; i++) {
975                         str = g_ptr_array_index(cmd.attach_files, i);
976                         fd_write_all(uxsock, str, strlen(str));
977                         fd_write_all(uxsock, "\n", 1);
978                 }
979
980                 fd_write_all(uxsock, ".\n", 2);
981         } else if (cmd.compose) {
982                 gchar *compose_str;
983
984                 if (cmd.compose_mailto)
985                         compose_str = g_strdup_printf
986                                 ("compose %s\n", cmd.compose_mailto);
987                 else
988                         compose_str = g_strdup("compose\n");
989
990                 fd_write_all(uxsock, compose_str, strlen(compose_str));
991                 g_free(compose_str);
992         } else if (cmd.subscribe) {
993                 gchar *str = g_strdup_printf("subscribe %s\n", cmd.subscribe_uri);
994                 fd_write_all(uxsock, str, strlen(str));
995                 g_free(str);
996         } else if (cmd.send) {
997                 fd_write_all(uxsock, "send\n", 5);
998         } else if (cmd.online_mode == ONLINE_MODE_ONLINE) {
999                 fd_write(uxsock, "online\n", 6);
1000         } else if (cmd.online_mode == ONLINE_MODE_OFFLINE) {
1001                 fd_write(uxsock, "offline\n", 7);
1002         } else if (cmd.status || cmd.status_full) {
1003                 gchar buf[BUFFSIZE];
1004                 gint i;
1005                 const gchar *command;
1006                 GPtrArray *folders;
1007                 gchar *folder;
1008  
1009                 command = cmd.status_full ? "status-full\n" : "status\n";
1010                 folders = cmd.status_full ? cmd.status_full_folders :
1011                         cmd.status_folders;
1012  
1013                 fd_write_all(uxsock, command, strlen(command));
1014                 for (i = 0; folders && i < folders->len; ++i) {
1015                         folder = g_ptr_array_index(folders, i);
1016                         fd_write_all(uxsock, folder, strlen(folder));
1017                         fd_write_all(uxsock, "\n", 1);
1018                 }
1019                 fd_write_all(uxsock, ".\n", 2);
1020                 for (;;) {
1021                         fd_gets(uxsock, buf, sizeof(buf));
1022                         if (!strncmp(buf, ".\n", 2)) break;
1023                         fputs(buf, stdout);
1024                 }
1025         } else if (cmd.exit) {
1026                 fd_write_all(uxsock, "exit\n", 5);
1027         } else
1028                 fd_write_all(uxsock, "popup\n", 6);
1029
1030         fd_close(uxsock);
1031         return -1;
1032 }
1033
1034 static gint lock_socket_remove(void)
1035 {
1036 #ifdef G_OS_UNIX
1037         gchar *filename;
1038
1039         if (lock_socket < 0) return -1;
1040
1041         if (lock_socket_tag > 0)
1042                 gdk_input_remove(lock_socket_tag);
1043         fd_close(lock_socket);
1044         filename = get_socket_name();
1045         g_unlink(filename);
1046 #endif
1047
1048         return 0;
1049 }
1050
1051 static GPtrArray *get_folder_item_list(gint sock)
1052 {
1053         gchar buf[BUFFSIZE];
1054         FolderItem *item;
1055         GPtrArray *folders = NULL;
1056
1057         for (;;) {
1058                 fd_gets(sock, buf, sizeof(buf));
1059                 if (!strncmp(buf, ".\n", 2)) break;
1060                 strretchomp(buf);
1061                 if (!folders) folders = g_ptr_array_new();
1062                 item = folder_find_item_from_identifier(buf);
1063                 if (item)
1064                         g_ptr_array_add(folders, item);
1065                 else
1066                         g_warning("no such folder: %s\n", buf);
1067         }
1068
1069         return folders;
1070 }
1071
1072 static void lock_socket_input_cb(gpointer data,
1073                                  gint source,
1074                                  GdkInputCondition condition)
1075 {
1076         MainWindow *mainwin = (MainWindow *)data;
1077         gint sock;
1078         gchar buf[BUFFSIZE];
1079
1080         sock = fd_accept(source);
1081         fd_gets(sock, buf, sizeof(buf));
1082
1083         if (!strncmp(buf, "popup", 5)) {
1084                 main_window_popup(mainwin);
1085         } else if (!strncmp(buf, "receive_all", 11)) {
1086                 inc_all_account_mail(mainwin, FALSE,
1087                                      prefs_common.newmail_notify_manu);
1088         } else if (!strncmp(buf, "receive", 7)) {
1089                 inc_mail(mainwin, prefs_common.newmail_notify_manu);
1090         } else if (!strncmp(buf, "compose_attach", 14)) {
1091                 GPtrArray *files;
1092                 gchar *mailto;
1093
1094                 mailto = g_strdup(buf + strlen("compose_attach") + 1);
1095                 files = g_ptr_array_new();
1096                 while (fd_gets(sock, buf, sizeof(buf)) > 0) {
1097                         if (buf[0] == '.' && buf[1] == '\n') break;
1098                         strretchomp(buf);
1099                         g_ptr_array_add(files, g_strdup(buf));
1100                 }
1101                 open_compose_new(mailto, files);
1102                 ptr_array_free_strings(files);
1103                 g_ptr_array_free(files, TRUE);
1104                 g_free(mailto);
1105         } else if (!strncmp(buf, "compose", 7)) {
1106                 open_compose_new(buf + strlen("compose") + 1, NULL);
1107         } else if (!strncmp(buf, "subscribe", 9)) {
1108                 main_window_popup(mainwin);
1109                 folder_subscribe(buf + strlen("subscribe") + 1);
1110         } else if (!strncmp(buf, "send", 4)) {
1111                 send_queue();
1112         } else if (!strncmp(buf, "online", 6)) {
1113                 main_window_toggle_work_offline(mainwin, FALSE, FALSE);
1114         } else if (!strncmp(buf, "offline", 7)) {
1115                 main_window_toggle_work_offline(mainwin, TRUE, FALSE);
1116         } else if (!strncmp(buf, "status-full", 11) ||
1117                    !strncmp(buf, "status", 6)) {
1118                 gchar *status;
1119                 GPtrArray *folders;
1120  
1121                 folders = get_folder_item_list(sock);
1122                 status = folder_get_status
1123                         (folders, !strncmp(buf, "status-full", 11));
1124                 fd_write_all(sock, status, strlen(status));
1125                 fd_write_all(sock, ".\n", 2);
1126                 g_free(status);
1127                 if (folders) g_ptr_array_free(folders, TRUE);
1128         } else if (!strncmp(buf, "exit", 4)) {
1129                 app_will_exit(NULL, mainwin);
1130         }
1131
1132         fd_close(sock);
1133 }
1134
1135 static void open_compose_new(const gchar *address, GPtrArray *attach_files)
1136 {
1137         gchar *addr = NULL;
1138
1139         if (address) {
1140                 Xstrdup_a(addr, address, return);
1141                 g_strstrip(addr);
1142         }
1143
1144         compose_new(NULL, addr, attach_files);
1145 }
1146
1147 static void send_queue(void)
1148 {
1149         GList *list;
1150
1151         for (list = folder_get_list(); list != NULL; list = list->next) {
1152                 Folder *folder = list->data;
1153
1154                 if (folder->queue) {
1155                         gint res = procmsg_send_queue
1156                                 (folder->queue, prefs_common.savemsg);
1157
1158                         if (res < 0)    
1159                                 alertpanel_error(_("Some errors occurred while sending queued messages."));
1160                         if (res)        
1161                                 folder_item_scan(folder->queue);
1162                 }
1163         }
1164 }
1165
1166 static void quit_signal_handler(int sig)
1167 {
1168         debug_print("Quitting on signal %d\n", sig);
1169
1170         g_timeout_add(0, clean_quit, NULL);
1171 }
1172
1173 static void install_basic_sighandlers()
1174 {
1175 #ifndef G_OS_WIN32
1176         sigset_t    mask;
1177         struct sigaction act;
1178
1179         sigemptyset(&mask);
1180
1181 #ifdef SIGTERM
1182         sigaddset(&mask, SIGTERM);
1183 #endif
1184 #ifdef SIGINT
1185         sigaddset(&mask, SIGINT);
1186 #endif
1187 #ifdef SIGHUP
1188         sigaddset(&mask, SIGHUP);
1189 #endif
1190
1191         act.sa_handler = quit_signal_handler;
1192         act.sa_mask    = mask;
1193         act.sa_flags   = 0;
1194
1195 #ifdef SIGTERM
1196         sigaction(SIGTERM, &act, 0);
1197 #endif
1198 #ifdef SIGINT
1199         sigaction(SIGINT, &act, 0);
1200 #endif  
1201 #ifdef SIGHUP
1202         sigaction(SIGHUP, &act, 0);
1203 #endif  
1204
1205         sigprocmask(SIG_UNBLOCK, &mask, 0);
1206 #endif /* !G_OS_WIN32 */
1207 }