8c91b73b601b9ec3aaee5cce8e80fb3f9d0bd331
[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 /* USE_GPGME */
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         gtk_set_locale();
143         gtk_init(&argc, &argv);
144
145 #if USE_THREADS
146         g_thread_init(NULL);
147         if (!g_thread_supported())
148                 g_error(_("g_thread is not supported by glib.\n"));
149 #endif
150
151 #if HAVE_GDK_IMLIB
152         gdk_imlib_init();
153         gtk_widget_push_visual(gdk_imlib_get_visual());
154         gtk_widget_push_colormap(gdk_imlib_get_colormap());
155 #endif
156
157         /* parse gtkrc files */
158         userrc = g_strconcat(get_home_dir(), G_DIR_SEPARATOR_S, ".gtkrc",
159                              NULL);
160         gtk_rc_parse(userrc);
161         g_free(userrc);
162         userrc = g_strconcat(get_home_dir(), G_DIR_SEPARATOR_S, ".gtk",
163                              G_DIR_SEPARATOR_S, "gtkrc", NULL);
164         gtk_rc_parse(userrc);
165         g_free(userrc);
166         userrc = g_strconcat(get_rc_dir(), G_DIR_SEPARATOR_S, "gtkrc", NULL);
167         gtk_rc_parse(userrc);
168         g_free(userrc);
169
170         gtk_rc_parse("./gtkrc");
171
172         userrc = g_strconcat(get_rc_dir(), G_DIR_SEPARATOR_S, MENU_RC, NULL);
173         gtk_item_factory_parse_rc(userrc);
174         g_free(userrc);
175
176         prog_version = PROG_VERSION;
177         startup_dir = g_get_current_dir();
178
179         parse_cmd_opt(argc, argv);
180
181         CHDIR_RETURN_VAL_IF_FAIL(get_home_dir(), 1);
182
183         /* check and create unix domain socket */
184         lock_socket = prohibit_duplicate_launch();
185         if (lock_socket < 0) return 0;
186     
187         /* backup if old rc file exists */
188         if (is_file_exist(RC_DIR)) {
189                 if (rename(RC_DIR, RC_DIR ".bak") < 0)
190                         FILE_OP_ERROR(RC_DIR, "rename");
191         }
192         MAKE_DIR_IF_NOT_EXIST(RC_DIR);
193         MAKE_DIR_IF_NOT_EXIST(get_imap_cache_dir());
194         MAKE_DIR_IF_NOT_EXIST(get_news_cache_dir());
195         MAKE_DIR_IF_NOT_EXIST(get_mime_tmp_dir());
196
197         if (is_file_exist(RC_DIR G_DIR_SEPARATOR_S "assortrc") &&
198             !is_file_exist(RC_DIR G_DIR_SEPARATOR_S "filterrc")) {
199                 if (rename(RC_DIR G_DIR_SEPARATOR_S "assortrc",
200                            RC_DIR G_DIR_SEPARATOR_S "filterrc") < 0)
201                         FILE_OP_ERROR(RC_DIR G_DIR_SEPARATOR_S "assortrc",
202                                       "rename");
203         }
204
205         srandom((gint)time(NULL));
206
207 #if USE_GPGME
208         if (gpgme_check_engine()) {  /* Also does some gpgme init */
209                 rfc2015_disable_all();
210                 debug_print("gpgme_engine_version:\n%s\n",
211                             gpgme_get_engine_info());
212
213                 if (prefs_common.gpgme_warning) {
214                         AlertValue v = alertpanel_message_with_disable
215                                 (_("Warning"),
216                                  _("GnuPG is not installed properly.\n"
217                                    "OpenPGP support disabled."));
218                         if (v & G_ALERTDISABLE) {
219                                 prefs_common.gpgme_warning = FALSE;
220                                 prefs_common_save_config();
221                         }
222                 }
223         }
224         gpgme_register_idle(idle_function_for_gpgme);
225 #endif
226
227         prefs_common_read_config();
228         prefs_common_save_config();
229         prefs_filter_read_config();
230         prefs_filter_write_config();
231         prefs_display_header_read_config();
232         prefs_display_header_write_config();
233         prefs_scoring_read_config();
234
235         gtkut_widget_init();
236
237         mainwin = main_window_create
238                 (prefs_common.sep_folder | prefs_common.sep_msg << 1);
239         folderview = mainwin->folderview;
240
241         /* register the callback of unix domain socket input */
242         lock_socket_tag = gdk_input_add(lock_socket,
243                                         GDK_INPUT_READ | GDK_INPUT_EXCEPTION,
244                                         lock_socket_input_cb,
245                                         mainwin);
246
247         account_read_config_all();
248         account_save_config_all();
249
250         if (folder_read_list() < 0) setup(mainwin);
251         account_set_missing_folder();
252         folderview_set(folderview);
253
254         inc_autocheck_timer_init(mainwin);
255
256         if (cmd.receive_all || prefs_common.chk_on_startup)
257                 inc_all_account_mail(mainwin);
258         else if (cmd.receive)
259                 inc_mail(mainwin);
260         else
261                 gtk_widget_grab_focus(folderview->ctree);
262
263         if (cmd.compose)
264                 open_compose_new_with_recipient(cmd.compose_mailto);
265
266         /* ignore SIGPIPE signal for preventing sudden death of program */
267         signal(SIGPIPE, SIG_IGN);
268
269         gtk_main();
270
271         return 0;
272 }
273
274 static void parse_cmd_opt(int argc, char *argv[])
275 {
276         gint i;
277
278         for (i = 1; i < argc; i++) {
279                 if (!strncmp(argv[i], "--debug", 7))
280                         debug_mode = TRUE;
281                 else if (!strncmp(argv[i], "--receive-all", 13))
282                         cmd.receive_all = TRUE;
283                 else if (!strncmp(argv[i], "--receive", 9))
284                         cmd.receive = TRUE;
285                 else if (!strncmp(argv[i], "--compose", 9)) {
286                         const gchar *p = argv[i + 1];
287
288                         cmd.compose = TRUE;
289                         cmd.compose_mailto = NULL;
290                         if (p && *p != '\0' && *p != '-') {
291                                 if (!strncmp(p, "mailto:", 7))
292                                         cmd.compose_mailto = p + 7;
293                                 else
294                                         cmd.compose_mailto = p;
295                                 i++;
296                         }
297                 } else if (!strncmp(argv[i], "--version", 9)) {
298                         puts("Sylpheed version " VERSION);
299                         exit(0);
300                 } else if (!strncmp(argv[i], "--help", 6)) {
301                         g_print(_("Usage: %s [OPTION]...\n"), g_get_prgname());
302
303                         puts(_("  --compose [address]    open composition window"));
304                         puts(_("  --receive              receive new messages"));
305                         puts(_("  --receive-all          receive new messages of all accounts"));
306                         puts(_("  --debug                debug mode"));
307                         puts(_("  --help                 display this help and exit"));
308                         puts(_("  --version              output version information and exit"));
309
310                         exit(1);
311                 }
312         }
313 }
314
315 static gint get_queued_message_num(void)
316 {
317         FolderItem *queue;
318
319         queue = folder_get_default_queue();
320         g_return_val_if_fail(queue != NULL, -1);
321
322         folder_item_scan(queue);
323         return queue->total;
324 }
325
326 void app_will_exit(GtkWidget *widget, gpointer data)
327 {
328         MainWindow *mainwin = data;
329         gchar *filename;
330
331         if (compose_get_compose_list()) {
332                 if (alertpanel(_("Notice"),
333                                _("Composing message exists. Really quit?"),
334                                _("OK"), _("Cancel"), NULL) != G_ALERTDEFAULT)
335                         return;
336                 manage_window_focus_in(mainwin->window, NULL, NULL);
337         }
338
339         if (prefs_common.warn_queued_on_exit && get_queued_message_num() > 0) {
340                 if (alertpanel(_("Queued messages"),
341                                _("Some unsent messages are queued. Exit now?"),
342                                _("OK"), _("Cancel"), NULL) != G_ALERTDEFAULT)
343                         return;
344                 manage_window_focus_in(mainwin->window, NULL, NULL);
345         }
346
347         if (prefs_common.clean_on_exit)
348                 main_window_empty_trash(mainwin, prefs_common.ask_on_clean);
349
350         /* save all state before exiting */
351         folder_write_list();
352         summary_write_cache(mainwin->summaryview);
353
354         main_window_get_size(mainwin);
355         main_window_get_position(mainwin);
356         prefs_common_save_config();
357         prefs_filter_write_config();
358         account_save_config_all();
359         addressbook_export_to_file();
360
361         filename = g_strconcat(get_rc_dir(), G_DIR_SEPARATOR_S, MENU_RC, NULL);
362         gtk_item_factory_dump_rc(filename, NULL, TRUE);
363         g_free(filename);
364
365         /* delete temporary files */
366         remove_all_files(get_mime_tmp_dir());
367
368         /* delete unix domain socket */
369         gdk_input_remove(lock_socket_tag);
370         fd_close(lock_socket);
371         filename = get_socket_name();
372         unlink(filename);
373
374         gtk_main_quit();
375 }
376
377 #if USE_GPGME
378 static void idle_function_for_gpgme(void)
379 {
380         while (gtk_events_pending())
381                 gtk_main_iteration();
382 }
383 #endif /* USE_GPGME */
384
385 static gchar *get_socket_name(void)
386 {
387         static gchar *filename = NULL;
388
389         if (filename == NULL) {
390                 filename = g_strdup_printf("%s%csylpheed-%d",
391                                            g_get_tmp_dir(), G_DIR_SEPARATOR,
392                                            getuid());
393         }
394
395         return filename;
396 }
397
398 static gint prohibit_duplicate_launch(void)
399 {
400         gint uxsock;
401         gchar *path;
402
403         path = get_socket_name();
404         uxsock = fd_connect_unix(path);
405         if (uxsock < 0) {
406                 unlink(path);
407                 return fd_open_unix(path);
408         }
409
410         /* remote command mode */
411
412         debug_print(_("another Sylpheed is already running.\n"));
413
414         if (cmd.receive_all)
415                 fd_write(uxsock, "receive_all\n", 12);
416         else if (cmd.receive)
417                 fd_write(uxsock, "receive\n", 8);
418         else if (cmd.compose) {
419                 gchar *compose_str;
420
421                 if (cmd.compose_mailto)
422                         compose_str = g_strdup_printf("compose %s\n", cmd.compose_mailto);
423                 else
424                         compose_str = g_strdup("compose\n");
425
426                 fd_write(uxsock, compose_str, strlen(compose_str));
427                 g_free(compose_str);
428         } else
429                 fd_write(uxsock, "popup\n", 6);
430
431         fd_close(uxsock);
432         return -1;
433 }
434
435 static void lock_socket_input_cb(gpointer data,
436                                  gint source,
437                                  GdkInputCondition condition)
438 {
439         MainWindow *mainwin = (MainWindow *)data;
440         gint sock;
441         gchar buf[BUFFSIZE];
442
443         sock = fd_accept(source);
444         fd_read(sock, buf, sizeof(buf));
445         fd_close(sock);
446
447         if (!strncmp(buf, "popup", 5)){
448                 main_window_popup(mainwin);
449         } else if (!strncmp(buf, "receive_all", 11)){
450                 main_window_popup(mainwin);
451                 inc_all_account_mail(mainwin);
452         } else if (!strncmp(buf, "receive", 7)){
453                 main_window_popup(mainwin);
454                 inc_mail(mainwin);
455         } else if (!strncmp(buf, "compose", 7)) {
456                 open_compose_new_with_recipient(buf + strlen("compose") + 1);
457         }
458 }
459
460 static void open_compose_new_with_recipient(const gchar *address)
461 {
462         gchar *addr = NULL;
463
464         if (address) {
465                 Xstrdup_a(addr, address, return);
466                 g_strstrip(addr);
467         }
468
469         if (addr && *addr != '\0')
470                 compose_new_with_recipient(NULL, addr);
471         else
472                 compose_new(NULL);
473 }
474