sync with sylpheed 0.4.99cvs3
[claws.git] / src / main.c
1 /*
2  * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3  * Copyright (C) 1999-2001 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, 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 <gtk/gtkmain.h>
28 #include <gtk/gtkrc.h>
29
30 #if HAVE_GDK_IMLIB
31 #  include <gdk_imlib.h>
32 #endif
33
34 #include <stdio.h>
35 #include <stdlib.h>
36 #include <string.h>
37 #include <ctype.h>
38 #include <unistd.h>
39 #include <time.h>
40 #include <sys/stat.h>
41 #include <sys/types.h>
42 #include <signal.h>
43
44 #if HAVE_LOCALE_H
45 #  include <locale.h>
46 #endif
47
48 #if USE_GPGME
49 #  include <gpgme.h>
50 #endif
51
52 #include "intl.h"
53 #include "main.h"
54 #include "mainwindow.h"
55 #include "folderview.h"
56 #include "summaryview.h"
57 #include "prefs_common.h"
58 #include "prefs_filter.h"
59 #include "prefs_account.h"
60 #include "scoring.h"
61 #include "prefs_display_header.h"
62 #include "account.h"
63 #include "procmsg.h"
64 #include "inc.h"
65 #include "import.h"
66 #include "manage_window.h"
67 #include "alertpanel.h"
68 #include "addressbook.h"
69 #include "compose.h"
70 #include "folder.h"
71 #include "setup.h"
72 #include "utils.h"
73 #include "gtkutils.h"
74
75 #if USE_GPGME
76 #  include "rfc2015.h"
77 #endif
78
79 gchar *prog_version;
80 gchar *startup_dir;
81 gboolean debug_mode = FALSE;
82
83 static gint lock_socket = -1;
84 static gint lock_socket_tag = 0;
85
86 static struct Cmd {
87         gboolean receive;
88         gboolean receive_all;
89         gboolean compose;
90         const gchar *compose_mailto;
91 } cmd;
92
93 static void parse_cmd_opt(int argc, char *argv[]);
94
95 #if USE_GPGME
96 static void idle_function_for_gpgme(void);
97 #endif /* USE_GPGME */
98
99 static gint prohibit_duplicate_launch   (void);
100 static void lock_socket_input_cb        (gpointer          data,
101                                          gint              source,
102                                          GdkInputCondition condition);
103 static gchar *get_socket_name           (void);
104
105 static void open_compose_new_with_recipient     (const gchar    *address);
106
107 #if 0
108 /* for gettext */
109 _("File `%s' already exists.\n"
110   "Can't create folder.")
111 #endif
112
113 #define MAKE_DIR_IF_NOT_EXIST(dir) \
114 { \
115         if (!is_dir_exist(dir)) { \
116                 if (is_file_exist(dir)) { \
117                         alertpanel_warning \
118                                 (_("File `%s' already exists.\n" \
119                                    "Can't create folder."), \
120                                  dir); \
121                         return 1; \
122                 } \
123                 if (mkdir(dir, S_IRWXU) < 0) { \
124                         FILE_OP_ERROR(dir, "mkdir"); \
125                         return 1; \
126                 } \
127                 if (chmod(dir, S_IRWXU) < 0) \
128                         FILE_OP_ERROR(dir, "chmod"); \
129         } \
130 }
131
132 int main(int argc, char *argv[])
133 {
134         gchar *userrc;
135         MainWindow *mainwin;
136         FolderView *folderview;
137
138         setlocale(LC_ALL, "");
139         bindtextdomain(PACKAGE, LOCALEDIR);
140         textdomain(PACKAGE);
141
142         parse_cmd_opt(argc, argv);
143
144         gtk_set_locale();
145         gtk_init(&argc, &argv);
146
147 #if USE_THREADS
148         g_thread_init(NULL);
149         if (!g_thread_supported())
150                 g_error(_("g_thread is not supported by glib.\n"));
151 #endif
152
153 #if HAVE_GDK_IMLIB
154         gdk_imlib_init();
155         gtk_widget_push_visual(gdk_imlib_get_visual());
156         gtk_widget_push_colormap(gdk_imlib_get_colormap());
157 #endif
158
159         srandom((gint)time(NULL));
160
161         /* parse gtkrc files */
162         userrc = g_strconcat(get_home_dir(), G_DIR_SEPARATOR_S, ".gtkrc",
163                              NULL);
164         gtk_rc_parse(userrc);
165         g_free(userrc);
166         userrc = g_strconcat(get_home_dir(), G_DIR_SEPARATOR_S, ".gtk",
167                              G_DIR_SEPARATOR_S, "gtkrc", NULL);
168         gtk_rc_parse(userrc);
169         g_free(userrc);
170         userrc = g_strconcat(get_rc_dir(), G_DIR_SEPARATOR_S, "gtkrc", NULL);
171         gtk_rc_parse(userrc);
172         g_free(userrc);
173
174         gtk_rc_parse("./gtkrc");
175
176         userrc = g_strconcat(get_rc_dir(), G_DIR_SEPARATOR_S, MENU_RC, NULL);
177         gtk_item_factory_parse_rc(userrc);
178         g_free(userrc);
179
180         prog_version = PROG_VERSION;
181         startup_dir = g_get_current_dir();
182
183         CHDIR_RETURN_VAL_IF_FAIL(get_home_dir(), 1);
184
185         /* check and create unix domain socket */
186         lock_socket = prohibit_duplicate_launch();
187         if (lock_socket < 0) return 0;
188     
189         /* backup if old rc file exists */
190         if (is_file_exist(RC_DIR)) {
191                 if (rename(RC_DIR, RC_DIR ".bak") < 0)
192                         FILE_OP_ERROR(RC_DIR, "rename");
193         }
194         MAKE_DIR_IF_NOT_EXIST(RC_DIR);
195         MAKE_DIR_IF_NOT_EXIST(get_imap_cache_dir());
196         MAKE_DIR_IF_NOT_EXIST(get_news_cache_dir());
197         MAKE_DIR_IF_NOT_EXIST(get_mime_tmp_dir());
198
199         if (is_file_exist(RC_DIR G_DIR_SEPARATOR_S "assortrc") &&
200             !is_file_exist(RC_DIR G_DIR_SEPARATOR_S "filterrc")) {
201                 if (rename(RC_DIR G_DIR_SEPARATOR_S "assortrc",
202                            RC_DIR G_DIR_SEPARATOR_S "filterrc") < 0)
203                         FILE_OP_ERROR(RC_DIR G_DIR_SEPARATOR_S "assortrc",
204                                       "rename");
205         }
206
207         prefs_common_read_config();
208
209 #if USE_GPGME
210         if (gpgme_check_engine()) {  /* Also does some gpgme init */
211                 rfc2015_disable_all();
212                 debug_print("gpgme_engine_version:\n%s\n",
213                             gpgme_get_engine_info());
214
215                 if (prefs_common.gpg_warning) {
216                         AlertValue val;
217
218                         val = alertpanel_message_with_disable
219                                 (_("Warning"),
220                                  _("GnuPG is not installed properly.\n"
221                                    "OpenPGP support disabled."));
222                         if (val & G_ALERTDISABLE)
223                                 prefs_common.gpg_warning = FALSE;
224                 }
225         }
226         gpgme_register_idle(idle_function_for_gpgme);
227 #endif
228
229         prefs_common_save_config();
230         prefs_filter_read_config();
231         prefs_filter_write_config();
232         prefs_display_header_read_config();
233         prefs_display_header_write_config();
234         prefs_scoring_read_config();
235         prefs_filtering_read_config();
236
237         gtkut_widget_init();
238
239         mainwin = main_window_create
240                 (prefs_common.sep_folder | prefs_common.sep_msg << 1);
241         folderview = mainwin->folderview;
242
243         /* register the callback of unix domain socket input */
244         lock_socket_tag = gdk_input_add(lock_socket,
245                                         GDK_INPUT_READ | GDK_INPUT_EXCEPTION,
246                                         lock_socket_input_cb,
247                                         mainwin);
248
249         account_read_config_all();
250         account_save_config_all();
251
252         if (folder_read_list() < 0) setup(mainwin);
253         account_set_missing_folder();
254         folderview_set(folderview);
255
256         inc_autocheck_timer_init(mainwin);
257
258         if (cmd.receive_all || prefs_common.chk_on_startup)
259                 inc_all_account_mail(mainwin);
260         else if (cmd.receive)
261                 inc_mail(mainwin);
262         else
263                 gtk_widget_grab_focus(folderview->ctree);
264
265         if (cmd.compose)
266                 open_compose_new_with_recipient(cmd.compose_mailto);
267
268         /* ignore SIGPIPE signal for preventing sudden death of program */
269         signal(SIGPIPE, SIG_IGN);
270
271         gtk_main();
272
273         return 0;
274 }
275
276 static void parse_cmd_opt(int argc, char *argv[])
277 {
278         gint i;
279
280         for (i = 1; i < argc; i++) {
281                 if (!strncmp(argv[i], "--debug", 7))
282                         debug_mode = TRUE;
283                 else if (!strncmp(argv[i], "--receive-all", 13))
284                         cmd.receive_all = TRUE;
285                 else if (!strncmp(argv[i], "--receive", 9))
286                         cmd.receive = TRUE;
287                 else if (!strncmp(argv[i], "--compose", 9)) {
288                         const gchar *p = argv[i + 1];
289
290                         cmd.compose = TRUE;
291                         cmd.compose_mailto = NULL;
292                         if (p && *p != '\0' && *p != '-') {
293                                 if (!strncmp(p, "mailto:", 7))
294                                         cmd.compose_mailto = p + 7;
295                                 else
296                                         cmd.compose_mailto = p;
297                                 i++;
298                         }
299                 } else if (!strncmp(argv[i], "--version", 9)) {
300                         puts("Sylpheed version " VERSION);
301                         exit(0);
302                 } else if (!strncmp(argv[i], "--help", 6)) {
303                         g_print(_("Usage: %s [OPTION]...\n"),
304                                 g_basename(argv[0]));
305
306                         puts(_("  --compose [address]    open composition window"));
307                         puts(_("  --receive              receive new messages"));
308                         puts(_("  --receive-all          receive new messages of all accounts"));
309                         puts(_("  --debug                debug mode"));
310                         puts(_("  --help                 display this help and exit"));
311                         puts(_("  --version              output version information and exit"));
312
313                         exit(1);
314                 }
315         }
316 }
317
318 static gint get_queued_message_num(void)
319 {
320         FolderItem *queue;
321
322         queue = folder_get_default_queue();
323         g_return_val_if_fail(queue != NULL, -1);
324
325         folder_item_scan(queue);
326         return queue->total;
327 }
328
329 void app_will_exit(GtkWidget *widget, gpointer data)
330 {
331         MainWindow *mainwin = data;
332         gchar *filename;
333
334         if (compose_get_compose_list()) {
335                 if (alertpanel(_("Notice"),
336                                _("Composing message exists. Really quit?"),
337                                _("OK"), _("Cancel"), NULL) != G_ALERTDEFAULT)
338                         return;
339                 manage_window_focus_in(mainwin->window, NULL, NULL);
340         }
341
342         if (prefs_common.warn_queued_on_exit && get_queued_message_num() > 0) {
343                 if (alertpanel(_("Queued messages"),
344                                _("Some unsent messages are queued. Exit now?"),
345                                _("OK"), _("Cancel"), NULL) != G_ALERTDEFAULT)
346                         return;
347                 manage_window_focus_in(mainwin->window, NULL, NULL);
348         }
349
350         if (prefs_common.clean_on_exit)
351                 main_window_empty_trash(mainwin, prefs_common.ask_on_clean);
352
353         /* save all state before exiting */
354         folder_write_list();
355         summary_write_cache(mainwin->summaryview);
356
357         main_window_get_size(mainwin);
358         main_window_get_position(mainwin);
359         prefs_common_save_config();
360         prefs_filter_write_config();
361         account_save_config_all();
362         addressbook_export_to_file();
363
364         filename = g_strconcat(get_rc_dir(), G_DIR_SEPARATOR_S, MENU_RC, NULL);
365         gtk_item_factory_dump_rc(filename, NULL, TRUE);
366         g_free(filename);
367
368         /* delete temporary files */
369         remove_all_files(get_mime_tmp_dir());
370
371         /* delete unix domain socket */
372         gdk_input_remove(lock_socket_tag);
373         fd_close(lock_socket);
374         filename = get_socket_name();
375         unlink(filename);
376
377         gtk_main_quit();
378 }
379
380 #if USE_GPGME
381 static void idle_function_for_gpgme(void)
382 {
383         while (gtk_events_pending())
384                 gtk_main_iteration();
385 }
386 #endif /* USE_GPGME */
387
388 static gchar *get_socket_name(void)
389 {
390         static gchar *filename = NULL;
391
392         if (filename == NULL) {
393                 filename = g_strdup_printf("%s%csylpheed-%d",
394                                            g_get_tmp_dir(), G_DIR_SEPARATOR,
395                                            getuid());
396         }
397
398         return filename;
399 }
400
401 static gint prohibit_duplicate_launch(void)
402 {
403         gint uxsock;
404         gchar *path;
405
406         path = get_socket_name();
407         uxsock = fd_connect_unix(path);
408         if (uxsock < 0) {
409                 unlink(path);
410                 return fd_open_unix(path);
411         }
412
413         /* remote command mode */
414
415         debug_print(_("another Sylpheed is already running.\n"));
416
417         if (cmd.receive_all)
418                 fd_write(uxsock, "receive_all\n", 12);
419         else if (cmd.receive)
420                 fd_write(uxsock, "receive\n", 8);
421         else if (cmd.compose) {
422                 gchar *compose_str;
423
424                 if (cmd.compose_mailto)
425                         compose_str = g_strdup_printf("compose %s\n", cmd.compose_mailto);
426                 else
427                         compose_str = g_strdup("compose\n");
428
429                 fd_write(uxsock, compose_str, strlen(compose_str));
430                 g_free(compose_str);
431         } else
432                 fd_write(uxsock, "popup\n", 6);
433
434         fd_close(uxsock);
435         return -1;
436 }
437
438 static void lock_socket_input_cb(gpointer data,
439                                  gint source,
440                                  GdkInputCondition condition)
441 {
442         MainWindow *mainwin = (MainWindow *)data;
443         gint sock;
444         gchar buf[BUFFSIZE];
445
446         sock = fd_accept(source);
447         fd_gets(sock, buf, sizeof(buf));
448         fd_close(sock);
449
450         if (!strncmp(buf, "popup", 5)){
451                 main_window_popup(mainwin);
452         } else if (!strncmp(buf, "receive_all", 11)){
453                 main_window_popup(mainwin);
454                 inc_all_account_mail(mainwin);
455         } else if (!strncmp(buf, "receive", 7)){
456                 main_window_popup(mainwin);
457                 inc_mail(mainwin);
458         } else if (!strncmp(buf, "compose", 7)) {
459                 open_compose_new_with_recipient(buf + strlen("compose") + 1);
460         }
461 }
462
463 static void open_compose_new_with_recipient(const gchar *address)
464 {
465         gchar *addr = NULL;
466
467         if (address) {
468                 Xstrdup_a(addr, address, return);
469                 g_strstrip(addr);
470         }
471
472         if (addr && *addr != '\0')
473                 compose_new_with_recipient(NULL, addr);
474         else
475                 compose_new(NULL);
476 }