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