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