enable storing of GnuPG passphrase
[claws.git] / src / main.c
index 67e6903d1d94c37e73c3e49488b7e53a898994f7..c74b21ebe7ba22013742aa56c2a6bfa5121973cd 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"
@@ -69,6 +66,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 +95,8 @@ static struct Cmd {
        gboolean receive_all;
        gboolean compose;
        const gchar *compose_mailto;
+       gboolean status;
+       gboolean send;
 } cmd;
 
 static void parse_cmd_opt(int argc, char *argv[]);
@@ -108,6 +113,8 @@ static gchar *get_socket_name               (void);
 
 static void open_compose_new_with_recipient    (const gchar    *address);
 
+static void send_queue                 (void);
+
 #if 0
 /* for gettext */
 _("File `%s' already exists.\n"
@@ -148,7 +155,7 @@ int main(int argc, char *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 +167,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 */
@@ -189,7 +200,12 @@ int main(int argc, char *argv[])
        /* 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)
@@ -215,6 +231,7 @@ int main(int argc, char *argv[])
                                      "rename");
        }
 
+       prefs_common_init();
        prefs_common_read_config();
 
 #if USE_GPGME
@@ -237,16 +254,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 +289,45 @@ 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 */
+       processing_apply(mainwin->summaryview);
+
+       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);
+       if (cmd.send)
+               send_queue();
 
        gtk_main();
 
-#if USE_SSL
-       ssl_done();
+       addressbook_destroy();
+
+#if USE_PSPELL       
+       gtkpspell_checkers_delete();
 #endif
 
        return 0;
@@ -319,9 +356,13 @@ static void parse_cmd_opt(int argc, char *argv[])
                                        cmd.compose_mailto = p;
                                i++;
                        }
+               } 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]));
@@ -329,6 +370,8 @@ static void parse_cmd_opt(int argc, char *argv[])
                        puts(_("  --compose [address]    open composition window"));
                        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"));
@@ -343,7 +386,7 @@ 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;
@@ -370,6 +413,12 @@ 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);
 
@@ -399,6 +448,10 @@ void app_will_exit(GtkWidget *widget, gpointer data)
        filename = get_socket_name();
        unlink(filename);
 
+#if USE_SSL
+       ssl_done();
+#endif
+
        gtk_main_quit();
 }
 
@@ -453,6 +506,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,19 +531,28 @@ 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)){
                main_window_popup(mainwin);
        } else if (!strncmp(buf, "receive_all", 11)){
                main_window_popup(mainwin);
-               inc_all_account_mail(mainwin);
+               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", 7)) {
                open_compose_new_with_recipient(buf + strlen("compose") + 1);
+       } 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)
@@ -499,3 +569,32 @@ static void open_compose_new_with_recipient(const gchar *address)
        else
                compose_new(NULL);
 }
+
+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);
+}