check folder item and its path for NULL on
[claws.git] / src / main.c
index 67e6903d1d94c37e73c3e49488b7e53a898994f7..ebd242a3d850d5ff2afab0baee35e5d93c669d8f 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
- * Copyright (C) 1999-2001 Hiroyuki Yamamoto
+ * Copyright (C) 1999-2002 Hiroyuki Yamamoto
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
 
 #if USE_GPGME
 #  include <gpgme.h>
-#endif
-
-#if USE_SSL
-#  include "ssl.h"
+#  include "passphrase.h"
 #endif
 
 #include "intl.h"
@@ -61,6 +58,7 @@
 #include "prefs_common.h"
 #include "prefs_filter.h"
 #include "prefs_account.h"
+#include "prefs_actions.h"
 #include "scoring.h"
 #include "prefs_display_header.h"
 #include "account.h"
@@ -69,6 +67,7 @@
 #include "import.h"
 #include "manage_window.h"
 #include "alertpanel.h"
+#include "statusbar.h"
 #include "addressbook.h"
 #include "compose.h"
 #include "folder.h"
 #if USE_GPGME
 #  include "rfc2015.h"
 #endif
+#if USE_SSL
+#  include "ssl.h"
+#endif
+
+#include "version.h"
 
 gchar *prog_version;
 gchar *startup_dir;
@@ -92,6 +96,9 @@ static struct Cmd {
        gboolean receive_all;
        gboolean compose;
        const gchar *compose_mailto;
+       GPtrArray *attach_files;
+       gboolean status;
+       gboolean send;
 } cmd;
 
 static void parse_cmd_opt(int argc, char *argv[]);
@@ -106,7 +113,11 @@ static void lock_socket_input_cb   (gpointer          data,
                                         GdkInputCondition condition);
 static gchar *get_socket_name          (void);
 
-static void open_compose_new_with_recipient    (const gchar    *address);
+static void open_compose_new           (const gchar    *address,
+                                        GPtrArray      *attach_files);
+
+static void send_queue                 (void);
+static void initial_processing         (FolderItem *item, gpointer data);
 
 #if 0
 /* for gettext */
@@ -124,12 +135,8 @@ _("File `%s' already exists.\n"
                                 dir); \
                        return 1; \
                } \
-               if (mkdir(dir, S_IRWXU) < 0) { \
-                       FILE_OP_ERROR(dir, "mkdir"); \
+               if (make_dir(dir) < 0) \
                        return 1; \
-               } \
-               if (chmod(dir, S_IRWXU) < 0) \
-                       FILE_OP_ERROR(dir, "chmod"); \
        } \
 }
 
@@ -143,12 +150,15 @@ int main(int argc, char *argv[])
        bindtextdomain(PACKAGE, LOCALEDIR);
        textdomain(PACKAGE);
 
+       prog_version = PROG_VERSION;
+       startup_dir = g_get_current_dir();
+
        parse_cmd_opt(argc, argv);
 
        gtk_set_locale();
        gtk_init(&argc, &argv);
 
-#if USE_THREADS
+#if USE_THREADS || USE_LDAP
        g_thread_init(NULL);
        if (!g_thread_supported())
                g_error(_("g_thread is not supported by glib.\n"));
@@ -160,6 +170,10 @@ int main(int argc, char *argv[])
        gtk_widget_push_colormap(gdk_imlib_get_colormap());
 #endif
 
+#if USE_SSL
+       ssl_init();
+#endif
+
        srandom((gint)time(NULL));
 
        /* parse gtkrc files */
@@ -181,15 +195,17 @@ int main(int argc, char *argv[])
        gtk_item_factory_parse_rc(userrc);
        g_free(userrc);
 
-       prog_version = PROG_VERSION;
-       startup_dir = g_get_current_dir();
-
        CHDIR_RETURN_VAL_IF_FAIL(get_home_dir(), 1);
 
        /* check and create unix domain socket */
        lock_socket = prohibit_duplicate_launch();
        if (lock_socket < 0) return 0;
-    
+
+       if (cmd.status) {
+               puts("0 Sylpheed not running.");
+               return 0;
+       }
+
        /* backup if old rc file exists */
        if (is_file_exist(RC_DIR)) {
                if (rename(RC_DIR, RC_DIR ".bak") < 0)
@@ -199,6 +215,7 @@ int main(int argc, char *argv[])
        MAKE_DIR_IF_NOT_EXIST(get_imap_cache_dir());
        MAKE_DIR_IF_NOT_EXIST(get_news_cache_dir());
        MAKE_DIR_IF_NOT_EXIST(get_mime_tmp_dir());
+       MAKE_DIR_IF_NOT_EXIST(RC_DIR G_DIR_SEPARATOR_S "uidl");
 
        if (is_file_exist(RC_DIR G_DIR_SEPARATOR_S "sylpheed.log")) {
                if (rename(RC_DIR G_DIR_SEPARATOR_S "sylpheed.log",
@@ -215,6 +232,7 @@ int main(int argc, char *argv[])
                                      "rename");
        }
 
+       prefs_common_init();
        prefs_common_read_config();
 
 #if USE_GPGME
@@ -237,16 +255,21 @@ int main(int argc, char *argv[])
        gpgme_register_idle(idle_function_for_gpgme);
 #endif
 
-#if USE_SSL
-       ssl_init();
+#if USE_PSPELL
+       gtkpspellcheckers = gtkpspell_checkers_new();
 #endif
+       
 
        prefs_common_save_config();
        prefs_filter_read_config();
        prefs_filter_write_config();
+       prefs_actions_read_config();
+       prefs_actions_write_config();
        prefs_display_header_read_config();
        prefs_display_header_write_config();
-       prefs_filtering_read_config();
+       /* prefs_filtering_read_config(); */
+       addressbook_read_file();
+       renderer_read_config();
 
        gtkut_widget_init();
 
@@ -267,30 +290,51 @@ int main(int argc, char *argv[])
                setup(mainwin);
                folder_write_list();
        }
+       if (!account_get_list()) {
+               account_edit_open();
+               account_add();
+       }
+
        account_set_missing_folder();
+       folder_set_missing_folders();
        folderview_set(folderview);
 
-       prefs_scoring_read_config();
+       /* prefs_scoring_read_config(); */
+       prefs_matcher_read_config();
+
+       /* make one all-folder processing before using sylpheed */
+       folder_func_to_all_folders(initial_processing, (gpointer *)mainwin);
+
+       addressbook_read_file();
 
        inc_autocheck_timer_init(mainwin);
 
+       /* ignore SIGPIPE signal for preventing sudden death of program */
+       signal(SIGPIPE, SIG_IGN);
+
        if (cmd.receive_all || prefs_common.chk_on_startup)
-               inc_all_account_mail(mainwin);
+               inc_all_account_mail(mainwin, prefs_common.newmail_notify_manu);
        else if (cmd.receive)
-               inc_mail(mainwin);
+               inc_mail(mainwin, prefs_common.newmail_notify_manu);
        else
                gtk_widget_grab_focus(folderview->ctree);
 
        if (cmd.compose)
-               open_compose_new_with_recipient(cmd.compose_mailto);
-
-       /* ignore SIGPIPE signal for preventing sudden death of program */
-       signal(SIGPIPE, SIG_IGN);
+               open_compose_new(cmd.compose_mailto, cmd.attach_files);
+       if (cmd.attach_files) {
+               ptr_array_free_strings(cmd.attach_files);
+               g_ptr_array_free(cmd.attach_files, TRUE);
+               cmd.attach_files = NULL;
+       }
+       if (cmd.send)
+               send_queue();
 
        gtk_main();
 
-#if USE_SSL
-       ssl_done();
+       addressbook_destroy();
+
+#if USE_PSPELL       
+       gtkpspell_checkers_delete();
 #endif
 
        return 0;
@@ -319,16 +363,42 @@ static void parse_cmd_opt(int argc, char *argv[])
                                        cmd.compose_mailto = p;
                                i++;
                        }
+               } else if (!strncmp(argv[i], "--attach", 8)) {
+                       const gchar *p = argv[i + 1];
+                       gchar *file;
+
+                       while (p && *p != '\0' && *p != '-') {
+                               if (!cmd.attach_files)
+                                       cmd.attach_files = g_ptr_array_new();
+                               if (*p != G_DIR_SEPARATOR)
+                                       file = g_strconcat(startup_dir,
+                                                          G_DIR_SEPARATOR_S,
+                                                          p, NULL);
+                               else
+                                       file = g_strdup(p);
+                               g_ptr_array_add(cmd.attach_files, file);
+                               i++;
+                               p = argv[i + 1];
+                       }
+               } else if (!strncmp(argv[i], "--send", 6)) {
+                       cmd.send = TRUE;
                } else if (!strncmp(argv[i], "--version", 9)) {
                        puts("Sylpheed version " VERSION);
                        exit(0);
+               } else if (!strncmp(argv[i], "--status", 8)) {
+                       cmd.status = TRUE;
                } else if (!strncmp(argv[i], "--help", 6)) {
                        g_print(_("Usage: %s [OPTION]...\n"),
                                g_basename(argv[0]));
 
                        puts(_("  --compose [address]    open composition window"));
+                       puts(_("  --attach file1 [file2]...\n"
+                              "                         open composition window with specified files\n"
+                              "                         attached"));
                        puts(_("  --receive              receive new messages"));
                        puts(_("  --receive-all          receive new messages of all accounts"));
+                       puts(_("  --send                 send all queued messages"));
+                       puts(_("  --status               show the total number of messages"));
                        puts(_("  --debug                debug mode"));
                        puts(_("  --help                 display this help and exit"));
                        puts(_("  --version              output version information and exit"));
@@ -336,6 +406,11 @@ static void parse_cmd_opt(int argc, char *argv[])
                        exit(1);
                }
        }
+
+       if (cmd.attach_files && cmd.compose == FALSE) {
+               cmd.compose = TRUE;
+               cmd.compose_mailto = NULL;
+       }
 }
 
 static gint get_queued_message_num(void)
@@ -343,12 +418,43 @@ static gint get_queued_message_num(void)
        FolderItem *queue;
 
        queue = folder_get_default_queue();
-       g_return_val_if_fail(queue != NULL, -1);
+       if (!queue) return -1;
 
        folder_item_scan(queue);
        return queue->total;
 }
 
+static void save_all_caches(FolderItem *item, gpointer data)
+{
+       if(!item->cache)
+               return;
+               
+       folder_item_write_cache(item);
+}
+
+static void initial_processing(FolderItem *item, gpointer data)
+{
+       MainWindow *mainwin = (MainWindow *)data;
+       gchar *buf;
+
+       g_return_if_fail(item);
+       buf = g_strdup_printf(_("Processing (%s)..."), 
+                             item->path 
+                             ? item->path 
+                             : _("top level folder"));
+       debug_print("%s\n", buf);
+       STATUSBAR_PUSH(mainwin, buf);
+       g_free(buf);
+
+       main_window_cursor_wait(mainwin);
+       
+       folder_item_apply_processing(item);
+
+       debug_print(_("done.\n"));
+       STATUSBAR_POP(mainwin);
+       main_window_cursor_normal(mainwin);
+}
+
 void app_will_exit(GtkWidget *widget, gpointer data)
 {
        MainWindow *mainwin = data;
@@ -370,12 +476,18 @@ void app_will_exit(GtkWidget *widget, gpointer data)
                manage_window_focus_in(mainwin->window, NULL, NULL);
        }
 
+       inc_autocheck_timer_remove();
+
+#if USE_GPGME
+        gpgmegtk_free_passphrase();
+#endif
+
        if (prefs_common.clean_on_exit)
                main_window_empty_trash(mainwin, prefs_common.ask_on_clean);
 
        /* save all state before exiting */
        folder_write_list();
-       summary_write_cache(mainwin->summaryview);
+       folder_func_to_all_folders(save_all_caches, NULL);
 
        main_window_get_size(mainwin);
        main_window_get_position(mainwin);
@@ -399,6 +511,10 @@ void app_will_exit(GtkWidget *widget, gpointer data)
        filename = get_socket_name();
        unlink(filename);
 
+#if USE_SSL
+       ssl_done();
+#endif
+
        gtk_main_quit();
 }
 
@@ -443,7 +559,27 @@ static gint prohibit_duplicate_launch(void)
                fd_write(uxsock, "receive_all\n", 12);
        else if (cmd.receive)
                fd_write(uxsock, "receive\n", 8);
-       else if (cmd.compose) {
+       else if (cmd.compose && cmd.attach_files) {
+               gchar *str, *compose_str;
+               gint i;
+
+               if (cmd.compose_mailto)
+                       compose_str = g_strdup_printf("compose_attach %s\n",
+                                                     cmd.compose_mailto);
+               else
+                       compose_str = g_strdup("compose_attach\n");
+
+               fd_write(uxsock, compose_str, strlen(compose_str));
+               g_free(compose_str);
+
+               for (i = 0; i < cmd.attach_files->len; i++) {
+                       str = g_ptr_array_index(cmd.attach_files, i);
+                       fd_write(uxsock, str, strlen(str));
+                       fd_write(uxsock, "\n", 1);
+               }
+
+               fd_write(uxsock, ".\n", 2);
+       } else if (cmd.compose) {
                gchar *compose_str;
 
                if (cmd.compose_mailto)
@@ -453,6 +589,14 @@ static gint prohibit_duplicate_launch(void)
 
                fd_write(uxsock, compose_str, strlen(compose_str));
                g_free(compose_str);
+       } else if (cmd.send) {
+               fd_write(uxsock, "send\n", 5);
+       } else if (cmd.status) {
+               gchar buf[BUFFSIZE];
+
+               fd_write(uxsock, "status\n", 7);
+               fd_gets(uxsock, buf, sizeof(buf));
+               fputs(buf, stdout);
        } else
                fd_write(uxsock, "popup\n", 6);
 
@@ -470,22 +614,46 @@ static void lock_socket_input_cb(gpointer data,
 
        sock = fd_accept(source);
        fd_gets(sock, buf, sizeof(buf));
-       fd_close(sock);
 
-       if (!strncmp(buf, "popup", 5)){
+       if (!strncmp(buf, "popup", 5)) {
                main_window_popup(mainwin);
-       } else if (!strncmp(buf, "receive_all", 11)){
+       } else if (!strncmp(buf, "receive_all", 11)) {
                main_window_popup(mainwin);
-               inc_all_account_mail(mainwin);
-       } else if (!strncmp(buf, "receive", 7)){
+               inc_all_account_mail(mainwin, prefs_common.newmail_notify_manu);
+       } else if (!strncmp(buf, "receive", 7)) {
                main_window_popup(mainwin);
-               inc_mail(mainwin);
+               inc_mail(mainwin, prefs_common.newmail_notify_manu);
+       } else if (!strncmp(buf, "compose_attach", 14)) {
+               GPtrArray *files;
+               gchar *mailto;
+
+               mailto = g_strdup(buf + strlen("compose_attach") + 1);
+               files = g_ptr_array_new();
+               while (fd_gets(sock, buf, sizeof(buf)) > 0) {
+                       if (buf[0] == '.' && buf[1] == '\n') break;
+                       strretchomp(buf);
+                       g_ptr_array_add(files, g_strdup(buf));
+               }
+               open_compose_new(mailto, files);
+               ptr_array_free_strings(files);
+               g_ptr_array_free(files, TRUE);
+               g_free(mailto);
        } else if (!strncmp(buf, "compose", 7)) {
-               open_compose_new_with_recipient(buf + strlen("compose") + 1);
+               open_compose_new(buf + strlen("compose") + 1, NULL);
+       } else if (!strncmp(buf, "send", 4)) {
+               send_queue();
+       } else if (!strncmp(buf, "status", 6)) {
+               guint new, unread, total;
+
+               folder_count_total_msgs(&new, &unread, &total);
+               g_snprintf(buf, sizeof(buf), "%d %d %d\n", new, unread, total);
+               fd_write(sock, buf, strlen(buf));
        }
+
+       fd_close(sock);
 }
 
-static void open_compose_new_with_recipient(const gchar *address)
+static void open_compose_new(const gchar *address, GPtrArray *attach_files)
 {
        gchar *addr = NULL;
 
@@ -494,8 +662,34 @@ static void open_compose_new_with_recipient(const gchar *address)
                g_strstrip(addr);
        }
 
-       if (addr && *addr != '\0')
-               compose_new_with_recipient(NULL, addr);
-       else
-               compose_new(NULL);
+       compose_new(NULL, addr, attach_files);
+}
+
+static void send_queue(void)
+{
+       GList *list;
+       FolderItem *def_outbox;
+
+       def_outbox = folder_get_default_outbox();
+
+       for (list = folder_get_list(); list != NULL; list = list->next) {
+               Folder *folder = list->data;
+
+               if (folder->queue) {
+                       if (procmsg_send_queue
+                               (folder->queue, prefs_common.savemsg) < 0)
+                               alertpanel_error(_("Some errors occurred while sending queued messages."));
+                       statusbar_pop_all();
+                       folder_item_scan(folder->queue);
+                       folderview_update_item(folder->queue, TRUE);
+                       if (prefs_common.savemsg && folder->outbox) {
+                               folderview_update_item(folder->outbox, TRUE);
+                               if (folder->outbox == def_outbox)
+                                       def_outbox = NULL;
+                       }
+               }
+       }
+
+       if (prefs_common.savemsg && def_outbox)
+               folderview_update_item(def_outbox, TRUE);
 }