2 * Sylpheed -- a GTK+ based, lightweight, and fast e-mail client
3 * Copyright (C) 1999-2007 Hiroyuki Yamamoto and the Claws Mail team
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 3 of the License, or
8 * (at your option) any later version.
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.
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
27 #include <glib/gi18n.h>
37 #include <sys/types.h>
44 #include <X11/SM/SMlib.h>
49 GCRY_THREAD_OPTION_PTHREAD_IMPL;
53 #ifdef HAVE_STARTUP_NOTIFICATION
54 # define SN_API_NOT_YET_FROZEN
55 # include <libsn/sn-launchee.h>
56 # include <gdk/gdkx.h>
60 #include <dbus/dbus-glib.h>
62 #ifdef HAVE_NETWORKMANAGER_SUPPORT
63 #include <NetworkManager.h>
68 #include "mainwindow.h"
69 #include "folderview.h"
70 #include "image_viewer.h"
71 #include "summaryview.h"
72 #include "prefs_common.h"
73 #include "prefs_account.h"
74 #include "prefs_actions.h"
75 #include "prefs_ext_prog.h"
76 #include "prefs_fonts.h"
77 #include "prefs_image_viewer.h"
78 #include "prefs_message.h"
79 #include "prefs_receive.h"
80 #include "prefs_msg_colors.h"
81 #include "prefs_quote.h"
82 #include "prefs_spelling.h"
83 #include "prefs_summaries.h"
84 #include "prefs_themes.h"
85 #include "prefs_other.h"
86 #include "prefs_logging.h"
87 #include "prefs_send.h"
88 #include "prefs_wrapping.h"
89 #include "prefs_compose_writing.h"
90 #include "prefs_display_header.h"
95 #include "manage_window.h"
96 #include "alertpanel.h"
97 #include "statusbar.h"
98 #include "addressbook.h"
103 #include "gtkutils.h"
106 #include "prefs_toolbar.h"
109 #include "imap_gtk.h"
110 #include "news_gtk.h"
117 #include "imap-thread.h"
118 #include "nntp-thread.h"
120 #include "stock_pixmap.h"
122 #include "valgrind.h"
136 #include <hildon/hildon-banner.h>
137 #include <hildon/hildon-program.h>
139 #include <hildon-widgets/hildon-banner.h>
140 #include <hildon-widgets/hildon-program.h>
143 #include <libgnomevfs/gnome-vfs-volume.h>
144 #include <libgnomevfs/gnome-vfs-volume-monitor.h>
145 #include <libgnomevfs/gnome-vfs-utils.h>
147 #define OSSO_NAME "claws_mail"
148 #define OSSO_SERVICE "com.nokia."OSSO_NAME
149 #define OSSO_OBJECT "/com/nokia/"OSSO_NAME
150 #define OSSO_IFACE "com.nokia."OSSO_NAME
152 typedef struct _AppData AppData;
154 HildonProgram *program;
155 HildonWindow *window;
156 osso_context_t *osso_context;
159 static GnomeVFSVolumeMonitor *volmon;
162 #ifdef HAVE_NETWORKMANAGER_SUPPORT
163 /* Went offline due to NetworkManager */
164 static gboolean went_offline_nm;
167 #ifdef HAVE_DBUS_GLIB
168 static DBusGProxy *awn_proxy = NULL;
175 HildonProgram *hildon_program;
178 #ifdef HAVE_STARTUP_NOTIFICATION
179 static SnLauncheeContext *sn_context = NULL;
180 static SnDisplay *sn_display = NULL;
183 static gint lock_socket = -1;
184 static gint lock_socket_tag = 0;
185 static gchar *x_display = NULL;
188 ONLINE_MODE_DONT_CHANGE,
193 static struct RemoteCmd {
195 gboolean receive_all;
197 const gchar *compose_mailto;
198 GPtrArray *attach_files;
200 gboolean status_full;
201 GPtrArray *status_folders;
202 GPtrArray *status_full_folders;
209 const gchar *subscribe_uri;
213 static void parse_cmd_opt(int argc, char *argv[]);
215 static gint prohibit_duplicate_launch (void);
216 static gchar * get_crashfile_name (void);
217 static gint lock_socket_remove (void);
218 static void lock_socket_input_cb (gpointer data,
220 GdkInputCondition condition);
222 static void open_compose_new (const gchar *address,
223 GPtrArray *attach_files);
225 static void send_queue (void);
226 static void initial_processing (FolderItem *item, gpointer data);
227 static void quit_signal_handler (int sig);
228 static void install_basic_sighandlers (void);
229 #if (defined linux && defined SIGIO)
230 static void install_memory_sighandler (void);
232 static void exit_claws (MainWindow *mainwin);
234 #ifdef HAVE_NETWORKMANAGER_SUPPORT
235 static void networkmanager_state_change_cb(DBusGProxy *proxy, gchar *dev,
239 #define MAKE_DIR_IF_NOT_EXIST(dir) \
241 if (!is_dir_exist(dir)) { \
242 if (is_file_exist(dir)) { \
244 (_("File '%s' already exists.\n" \
245 "Can't create folder."), \
249 if (make_dir(dir) < 0) \
254 static MainWindow *static_mainwindow;
257 static osso_context_t *static_osso_context;
259 void exit_event_handler(gboolean die_now, gpointer data)
262 appdata = (AppData *) data;
263 /* Do whatever application needs to do before exiting */
264 exit_claws(static_mainwindow);
265 hildon_banner_show_information(GTK_WIDGET(appdata->window), NULL,
270 /* Callback for hardware D-BUS events */
271 void hw_event_handler(osso_hw_state_t *state, gpointer data)
274 appdata = (AppData *) data;
276 if (state->shutdown_ind) {
277 exit_claws(static_mainwindow);
278 hildon_banner_show_information(GTK_WIDGET(appdata->window), NULL,
283 /* Callback for normal D-BUS messages */
284 gint dbus_req_handler(const gchar * interface, const gchar * method,
285 GArray * arguments, gpointer data,
289 appdata = (AppData *) data;
291 if (!strcmp(method, "top_application")) {
292 osso_rpc_free_val(retval);
295 osso_system_note_infoprint(appdata->osso_context, method, retval);
296 osso_rpc_free_val(retval);
301 static gboolean emergency_exit = FALSE;
303 #ifdef HAVE_STARTUP_NOTIFICATION
304 static void sn_error_trap_push(SnDisplay *display, Display *xdisplay)
306 gdk_error_trap_push();
309 static void sn_error_trap_pop(SnDisplay *display, Display *xdisplay)
311 gdk_error_trap_pop();
314 static void startup_notification_complete(gboolean with_window)
317 GtkWidget *hack = NULL;
320 /* this is needed to make the startup notification leave,
321 * if we have been launched from a menu.
322 * We have to display a window, so let it be very little */
323 hack = gtk_window_new(GTK_WINDOW_POPUP);
324 gtk_window_move(GTK_WINDOW(hack), 0, 0);
325 gtk_widget_set_size_request(hack, 1, 1);
326 gtk_widget_show(hack);
329 xdisplay = GDK_DISPLAY();
330 sn_display = sn_display_new(xdisplay,
333 sn_context = sn_launchee_context_new_from_environment(sn_display,
334 DefaultScreen(xdisplay));
336 if (sn_context != NULL) {
337 sn_launchee_context_complete(sn_context);
338 sn_launchee_context_unref(sn_context);
339 sn_display_unref(sn_display);
342 gtk_widget_destroy(hack);
345 #endif /* HAVE_STARTUP_NOTIFICATION */
347 static void claws_gtk_idle(void)
349 while(gtk_events_pending()) {
350 gtk_main_iteration();
355 static gboolean sc_starting = FALSE;
357 static gboolean defer_check_all(void *data)
359 gboolean autochk = GPOINTER_TO_INT(data);
361 inc_all_account_mail(static_mainwindow, autochk,
362 prefs_common.newmail_notify_manu);
366 main_window_set_menu_sensitive(static_mainwindow);
367 toolbar_main_set_sensitive(static_mainwindow);
372 static gboolean defer_check(void *data)
374 inc_mail(static_mainwindow, prefs_common.newmail_notify_manu);
378 main_window_set_menu_sensitive(static_mainwindow);
379 toolbar_main_set_sensitive(static_mainwindow);
384 static gboolean defer_jump(void *data)
386 if (cmd.receive_all) {
387 defer_check_all(GINT_TO_POINTER(FALSE));
388 } else if (prefs_common.chk_on_startup) {
389 defer_check_all(GINT_TO_POINTER(TRUE));
390 } else if (cmd.receive) {
393 mainwindow_jump_to(data, FALSE);
396 main_window_set_menu_sensitive(static_mainwindow);
397 toolbar_main_set_sensitive(static_mainwindow);
402 static void chk_update_val(GtkWidget *widget, gpointer data)
404 gboolean *val = (gboolean *)data;
405 *val = gtk_toggle_button_get_active(GTK_TOGGLE_BUTTON(widget));
408 static gboolean migrate_old_config(const gchar *old_cfg_dir, const gchar *new_cfg_dir, const gchar *oldversion)
410 gchar *message = g_strdup_printf(_("Configuration for %s found.\n"
411 "Do you want to migrate this configuration?"), oldversion);
412 gchar *message2 = g_strdup_printf(_("\n\nYour Sylpheed filtering rules can be converted by a\n"
413 "script available at %s."), TOOLS_URI);
415 if (!strcmp(oldversion, "Sylpheed"))
416 message = g_strconcat(message, message2, NULL);
420 GtkWidget *window = NULL;
421 GtkWidget *keep_backup_chk;
423 gboolean backup = TRUE;
425 keep_backup_chk = gtk_check_button_new_with_label (_("Keep old configuration"));
426 gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(keep_backup_chk), TRUE);
427 CLAWS_SET_TIP(keep_backup_chk,
428 _("Keeping a backup will allow you to go back to an "
429 "older version, but may take a while if you have "
430 "cached IMAP or News data, and will take some extra "
431 "room on your disk."));
433 g_signal_connect(G_OBJECT(keep_backup_chk), "toggled",
434 G_CALLBACK(chk_update_val), &backup);
436 if (alertpanel_full(_("Migration of configuration"), message,
437 GTK_STOCK_NO, "+" GTK_STOCK_YES, NULL, FALSE,
438 keep_backup_chk, ALERT_QUESTION, G_ALERTDEFAULT) != G_ALERTALTERNATE) {
442 /* we can either do a fast migration requiring not any extra disk
443 * space, or a slow one that copies the old configuration and leaves
447 window = label_window_create(_("Copying configuration... This may take a while..."));
450 r = copy_dir(old_cfg_dir, new_cfg_dir);
451 label_window_destroy(window);
453 /* if copy failed, we'll remove the partially copied
456 alertpanel_error(_("Migration failed!"));
457 remove_dir_recursive(new_cfg_dir);
460 /* fast mode failed, but we don't want backup */
461 remove_dir_recursive(old_cfg_dir);
465 window = label_window_create(_("Migrating configuration..."));
468 r = g_rename(old_cfg_dir, new_cfg_dir);
469 label_window_destroy(window);
471 /* if g_rename failed, we'll try to copy */
473 FILE_OP_ERROR(new_cfg_dir, "g_rename failed, trying copy\n");
480 static int migrate_common_rc(const gchar *old_rc, const gchar *new_rc)
483 gchar *plugin_path, *old_plugin_path, *new_plugin_path;
485 gboolean err = FALSE;
487 oldfp = g_fopen(old_rc, "r");
490 newfp = g_fopen(new_rc, "w");
496 plugin_path = g_strdup(get_plugin_dir());
497 new_plugin_path = g_strdup(plugin_path);
499 if (strstr(plugin_path, "/claws-mail/")) {
500 gchar *end = g_strdup(strstr(plugin_path, "/claws-mail/")+strlen("/claws-mail/"));
501 *(strstr(plugin_path, "/claws-mail/")) = '\0';
502 old_plugin_path = g_strconcat(plugin_path, "/sylpheed-claws/", end, NULL);
505 old_plugin_path = g_strdup(new_plugin_path);
507 debug_print("replacing %s with %s\n", old_plugin_path, new_plugin_path);
508 while (fgets(buf, sizeof(buf), oldfp)) {
509 if (strncmp(buf, old_plugin_path, strlen(old_plugin_path))) {
510 err |= (fputs(buf, newfp) == EOF);
512 debug_print("->replacing %s", buf);
513 debug_print(" with %s%s", new_plugin_path, buf+strlen(old_plugin_path));
514 err |= (fputs(new_plugin_path, newfp) == EOF);
515 err |= (fputs(buf+strlen(old_plugin_path), newfp) == EOF);
519 g_free(new_plugin_path);
520 g_free(old_plugin_path);
522 if (fclose(newfp) == EOF)
530 sc_client_set_value (MainWindow *mainwin,
541 prop.num_vals = num_vals;
545 if (mainwin->smc_conn)
546 SmcSetProperties ((SmcConn) mainwin->smc_conn, 1, proplist);
549 static void sc_die_callback (SmcConn smc_conn, SmPointer client_data)
554 static void sc_save_complete_callback(SmcConn smc_conn, SmPointer client_data)
558 static void sc_shutdown_cancelled_callback (SmcConn smc_conn, SmPointer client_data)
560 MainWindow *mainwin = (MainWindow *)client_data;
561 if (mainwin->smc_conn)
562 SmcSaveYourselfDone ((SmcConn) mainwin->smc_conn, TRUE);
565 static void sc_save_yourself_callback (SmcConn smc_conn,
566 SmPointer client_data,
572 MainWindow *mainwin = (MainWindow *)client_data;
573 if (mainwin->smc_conn)
574 SmcSaveYourselfDone ((SmcConn) mainwin->smc_conn, TRUE);
577 static IceIOErrorHandler sc_ice_installed_handler;
579 static void sc_ice_io_error_handler (IceConn connection)
581 if (sc_ice_installed_handler)
582 (*sc_ice_installed_handler) (connection);
584 static gboolean sc_process_ice_messages (GIOChannel *source,
585 GIOCondition condition,
588 IceConn connection = (IceConn) data;
589 IceProcessMessagesStatus status;
591 status = IceProcessMessages (connection, NULL, NULL);
593 if (status == IceProcessMessagesIOError) {
594 IcePointer context = IceGetConnectionContext (connection);
596 if (context && GTK_IS_OBJECT (context)) {
597 guint disconnect_id = g_signal_lookup ("disconnect", G_OBJECT_TYPE (context));
599 if (disconnect_id > 0)
600 g_signal_emit (context, disconnect_id, 0);
602 IceSetShutdownNegotiation (connection, False);
603 IceCloseConnection (connection);
610 static void new_ice_connection (IceConn connection, IcePointer client_data, Bool opening,
611 IcePointer *watch_data)
617 /* Make sure we don't pass on these file descriptors to any
619 fcntl(IceConnectionNumber(connection),F_SETFD,
620 fcntl(IceConnectionNumber(connection),F_GETFD,0) | FD_CLOEXEC);
622 channel = g_io_channel_unix_new (IceConnectionNumber (connection));
623 input_id = g_io_add_watch (channel,
624 G_IO_IN | G_IO_HUP | G_IO_ERR | G_IO_PRI,
625 sc_process_ice_messages,
627 g_io_channel_unref (channel);
629 *watch_data = (IcePointer) GUINT_TO_POINTER (input_id);
631 input_id = GPOINTER_TO_UINT ((gpointer) *watch_data);
632 g_source_remove (input_id);
636 static void sc_session_manager_connect(MainWindow *mainwin)
638 static gboolean connected = FALSE;
639 SmcCallbacks callbacks;
641 IceIOErrorHandler default_handler;
648 sc_ice_installed_handler = IceSetIOErrorHandler (NULL);
649 default_handler = IceSetIOErrorHandler (sc_ice_io_error_handler);
651 if (sc_ice_installed_handler == default_handler)
652 sc_ice_installed_handler = NULL;
654 IceAddConnectionWatch (new_ice_connection, NULL);
657 callbacks.save_yourself.callback = sc_save_yourself_callback;
658 callbacks.die.callback = sc_die_callback;
659 callbacks.save_complete.callback = sc_save_complete_callback;
660 callbacks.shutdown_cancelled.callback = sc_shutdown_cancelled_callback;
662 callbacks.save_yourself.client_data =
663 callbacks.die.client_data =
664 callbacks.save_complete.client_data =
665 callbacks.shutdown_cancelled.client_data = (SmPointer) mainwin;
666 if (g_getenv ("SESSION_MANAGER")) {
667 gchar error_string_ret[256] = "";
669 mainwin->smc_conn = (gpointer)
670 SmcOpenConnection (NULL, mainwin,
671 SmProtoMajor, SmProtoMinor,
672 SmcSaveYourselfProcMask | SmcDieProcMask |
673 SmcSaveCompleteProcMask |
674 SmcShutdownCancelledProcMask,
677 256, error_string_ret);
679 if (error_string_ret[0] || mainwin->smc_conn == NULL)
680 g_warning ("While connecting to session manager:\n%s.",
684 vals = g_new (SmPropValue, 1);
685 vals[0].length = strlen(argv0);
686 vals[0].value = argv0;
687 sc_client_set_value (mainwin, SmCloneCommand, SmLISTofARRAY8, 1, vals);
688 sc_client_set_value (mainwin, SmRestartCommand, SmLISTofARRAY8, 1, vals);
689 sc_client_set_value (mainwin, SmProgram, SmARRAY8, 1, vals);
691 vals[0].length = strlen(g_get_user_name()?g_get_user_name():"");
692 vals[0].value = g_strdup(g_get_user_name()?g_get_user_name():"");
693 sc_client_set_value (mainwin, SmUserID, SmARRAY8, 1, vals);
699 static gboolean sc_exiting = FALSE;
700 static gboolean show_at_startup = TRUE;
701 static gboolean claws_crashed_bool = FALSE;
703 gboolean claws_crashed(void) {
704 return claws_crashed_bool;
707 void main_set_show_at_startup(gboolean show)
709 show_at_startup = show;
713 static void main_vol_mount_cb(GnomeVFSVolumeMonitor *vfs, GnomeVFSVolume *vol, MainWindow *mainwin)
715 gchar *uri = gnome_vfs_volume_get_activation_uri (vol);
716 gchar *mount_path = uri?gnome_vfs_get_local_path_from_uri (uri):NULL;
719 if(!strcmp(mount_path, prefs_common.data_root)) {
720 gtk_widget_set_sensitive(mainwin->window, TRUE);
726 static void main_vol_unmount_cb(GnomeVFSVolumeMonitor *vfs, GnomeVFSVolume *vol, MainWindow *mainwin)
728 gchar *uri = gnome_vfs_volume_get_activation_uri (vol);
729 gchar *mount_path = uri?gnome_vfs_get_local_path_from_uri (uri):NULL;
732 if(!strcmp(mount_path, prefs_common.data_root)) {
733 gtk_widget_set_sensitive(mainwin->window, FALSE);
742 static FILE* win32_debug_fp=NULL;
743 static guint win32_log_handler_app_id;
744 static guint win32_log_handler_glib_id;
745 static guint win32_log_handler_gtk_id;
747 static void win32_print_stdout(const gchar *string)
749 if (win32_debug_fp) {
750 fprintf(win32_debug_fp, string);
751 fflush(win32_debug_fp);
755 static void win32_print_stderr(const gchar *string)
757 if (win32_debug_fp) {
758 fprintf(win32_debug_fp, string);
759 fflush(win32_debug_fp);
763 static void win32_log(const gchar *log_domain, GLogLevelFlags log_level, const gchar* message, gpointer user_data)
765 if (win32_debug_fp) {
768 switch(log_level & G_LOG_LEVEL_MASK)
770 case G_LOG_LEVEL_ERROR:
773 case G_LOG_LEVEL_CRITICAL:
776 case G_LOG_LEVEL_WARNING:
779 case G_LOG_LEVEL_MESSAGE:
782 case G_LOG_LEVEL_INFO:
785 case G_LOG_LEVEL_DEBUG:
792 fprintf(win32_debug_fp, "%s: %s: %s", log_domain, type, message);
794 fprintf(win32_debug_fp, "%s: %s", type, message);
795 fflush(win32_debug_fp);
799 static void win32_open_log(void)
801 gchar *logfile = g_strconcat(get_rc_dir(), G_DIR_SEPARATOR_S, "claws-win32.log", NULL);
802 gchar *oldlogfile = g_strconcat(get_rc_dir(), G_DIR_SEPARATOR_S, "claws-win32.log.bak", NULL);
804 if (is_file_exist(logfile)) {
805 if (rename_force(logfile, oldlogfile) < 0)
806 FILE_OP_ERROR(logfile, "rename");
808 win32_debug_fp = g_fopen(logfile, "w");
813 g_set_print_handler(win32_print_stdout);
814 g_set_printerr_handler(win32_print_stdout);
815 win32_log_handler_app_id = g_log_set_handler(NULL, G_LOG_LEVEL_MASK | G_LOG_FLAG_FATAL
816 | G_LOG_FLAG_RECURSION, win32_log, NULL);
817 win32_log_handler_glib_id = g_log_set_handler("GLib", G_LOG_LEVEL_MASK | G_LOG_FLAG_FATAL
818 | G_LOG_FLAG_RECURSION, win32_log, NULL);
819 win32_log_handler_gtk_id = g_log_set_handler("Gtk", G_LOG_LEVEL_MASK | G_LOG_FLAG_FATAL
820 | G_LOG_FLAG_RECURSION, win32_log, NULL);
824 static void win32_close_log(void)
828 g_log_remove_handler("", win32_log_handler_app_id);
829 g_log_remove_handler("GLib", win32_log_handler_glib_id);
830 g_log_remove_handler("Gtk", win32_log_handler_gtk_id);
831 fclose(win32_debug_fp);
837 static void main_dump_features_list(gboolean show_debug_only)
838 /* display compiled-in features list */
840 if (show_debug_only && !debug_get_mode())
844 debug_print("runtime GTK+ %d.%d.%d / GLib %d.%d.%d\n",
845 gtk_major_version, gtk_minor_version, gtk_micro_version,
846 glib_major_version, glib_minor_version, glib_micro_version);
848 g_print("runtime GTK+ %d.%d.%d / GLib %d.%d.%d\n",
849 gtk_major_version, gtk_minor_version, gtk_micro_version,
850 glib_major_version, glib_minor_version, glib_micro_version);
852 debug_print("buildtime GTK+ %d.%d.%d / GLib %d.%d.%d\n",
853 GTK_MAJOR_VERSION, GTK_MINOR_VERSION, GTK_MICRO_VERSION,
854 GLIB_MAJOR_VERSION, GLIB_MINOR_VERSION, GLIB_MICRO_VERSION);
856 g_print("buildtime GTK+ %d.%d.%d / GLib %d.%d.%d\n",
857 GTK_MAJOR_VERSION, GTK_MINOR_VERSION, GTK_MICRO_VERSION,
858 GLIB_MAJOR_VERSION, GLIB_MINOR_VERSION, GLIB_MICRO_VERSION);
861 debug_print("Compiled-in features:\n");
863 g_print("Compiled-in features:\n");
866 debug_print(" compface\n");
868 g_print(" compface\n");
872 debug_print(" aspell\n");
874 g_print(" aspell\n");
878 debug_print(" gnutls\n");
880 g_print(" gnutls\n");
884 debug_print(" ipv6\n");
890 debug_print(" iconv\n");
896 debug_print(" jpilot\n");
898 g_print(" jpilot\n");
902 debug_print(" ldap\n");
908 debug_print(" libetpan %d.%d\n", LIBETPAN_VERSION_MAJOR, LIBETPAN_VERSION_MINOR);
910 g_print(" libetpan %d.%d\n", LIBETPAN_VERSION_MAJOR, LIBETPAN_VERSION_MINOR);
914 debug_print(" gnomeprint\n");
916 g_print(" gnomeprint\n");
920 debug_print(" libsm\n");
924 #if HAVE_NETWORKMANAGER_SUPPORT
926 debug_print(" NetworkManager\n");
928 g_print(" NetworkManager\n");
932 #ifdef HAVE_DBUS_GLIB
933 static guint dbus_item_hook_id = -1;
934 static guint dbus_folder_hook_id = -1;
936 static void uninstall_dbus_status_handler(void)
939 g_object_unref(awn_proxy);
941 if (dbus_item_hook_id != -1)
942 hooks_unregister_hook(FOLDER_ITEM_UPDATE_HOOKLIST, dbus_item_hook_id);
943 if (dbus_folder_hook_id != -1)
944 hooks_unregister_hook(FOLDER_UPDATE_HOOKLIST, dbus_folder_hook_id);
947 static void dbus_update(FolderItem *removed_item)
949 guint new, unread, unreadmarked, marked, total;
950 guint replied, forwarded, locked, ignored, watched;
952 GError *error = NULL;
954 folder_count_total_msgs(&new, &unread, &unreadmarked, &marked, &total,
955 &replied, &forwarded, &locked, &ignored,
958 total -= removed_item->total_msgs;
959 new -= removed_item->new_msgs;
960 unread -= removed_item->unread_msgs;
964 buf = g_strdup_printf("%d", new);
965 dbus_g_proxy_call(awn_proxy, "SetInfoByName", &error,
966 G_TYPE_STRING, "claws-mail",
968 G_TYPE_INVALID, G_TYPE_INVALID);
972 dbus_g_proxy_call(awn_proxy, "UnsetInfoByName", &error, G_TYPE_STRING,
973 "claws-mail", G_TYPE_INVALID, G_TYPE_INVALID);
976 debug_print("%s\n", error->message);
981 static gboolean dbus_status_update_folder_hook(gpointer source, gpointer data)
983 FolderUpdateData *hookdata;
985 if (hookdata->update_flags & FOLDER_REMOVE_FOLDERITEM)
986 dbus_update(hookdata->item);
993 static gboolean dbus_status_update_item_hook(gpointer source, gpointer data)
1000 static void install_dbus_status_handler(void)
1002 GError *tmp_error = NULL;
1003 DBusGConnection *connection = dbus_g_bus_get(DBUS_BUS_SESSION, &tmp_error);
1006 /* If calling code doesn't do error checking, at least print some debug */
1007 debug_print("Failed to open connection to session bus: %s\n",
1008 tmp_error->message);
1009 g_error_free(tmp_error);
1012 awn_proxy = dbus_g_proxy_new_for_name(connection,
1013 "com.google.code.Awn",
1014 "/com/google/code/Awn",
1015 "com.google.code.Awn");
1016 dbus_item_hook_id = hooks_register_hook (FOLDER_ITEM_UPDATE_HOOKLIST, dbus_status_update_item_hook, NULL);
1017 if (dbus_item_hook_id == -1) {
1018 g_warning(_("Failed to register folder item update hook"));
1019 uninstall_dbus_status_handler();
1023 dbus_folder_hook_id = hooks_register_hook (FOLDER_UPDATE_HOOKLIST, dbus_status_update_folder_hook, NULL);
1024 if (dbus_folder_hook_id == -1) {
1025 g_warning(_("Failed to register folder update hook"));
1026 uninstall_dbus_status_handler();
1032 int main(int argc, char *argv[])
1035 osso_context_t *osso_context;
1036 osso_return_t result;
1038 #ifdef HAVE_DBUS_GLIB
1039 DBusGConnection *connection;
1042 #ifdef HAVE_NETWORKMANAGER_SUPPORT
1043 DBusGProxy *nm_proxy;
1046 MainWindow *mainwin;
1047 FolderView *folderview;
1049 gboolean crash_file_present = FALSE;
1050 gint num_folder_class = 0;
1051 gboolean asked_for_migration = FALSE;
1052 gboolean start_done = TRUE;
1053 GtkUIManager *gui_manager = NULL;
1054 GSList *plug_list = NULL;
1055 gboolean never_ran = FALSE;
1057 START_TIMING("startup");
1064 if (!claws_init(&argc, &argv)) {
1071 main_dump_features_list(TRUE);
1073 prog_version = PROG_VERSION;
1074 argv0 = g_strdup(argv[0]);
1076 parse_cmd_opt(argc, argv);
1078 prefs_prepare_cache();
1083 gtk_init(&argc, &argv);
1084 crash_main(cmd.crash_params);
1090 crash_install_handlers();
1092 install_basic_sighandlers();
1093 #if (defined linux && defined SIGIO)
1094 install_memory_sighandler();
1098 /* check and create unix domain socket for remote operation */
1099 lock_socket = prohibit_duplicate_launch();
1100 if (lock_socket < 0) {
1101 #ifdef HAVE_STARTUP_NOTIFICATION
1102 if(gtk_init_check(&argc, &argv))
1103 startup_notification_complete(TRUE);
1108 if (cmd.status || cmd.status_full) {
1109 puts("0 Claws Mail not running.");
1110 lock_socket_remove();
1116 if (!g_thread_supported())
1117 g_thread_init(NULL);
1120 gtk_init(&argc, &argv);
1123 gtk_settings_set_string_property(gtk_settings_get_default(),
1129 #ifdef HAVE_NETWORKMANAGER_SUPPORT
1130 went_offline_nm = FALSE;
1133 #ifdef HAVE_DBUS_GLIB
1135 connection = dbus_g_bus_get(DBUS_BUS_SYSTEM, &error);
1138 debug_print("Failed to open connection to system bus: %s\n", error->message);
1139 g_error_free(error);
1142 #ifdef HAVE_NETWORKMANAGER_SUPPORT
1143 nm_proxy = dbus_g_proxy_new_for_name(connection,
1144 "org.freedesktop.NetworkManager",
1145 "/org/freedesktop/NetworkManager",
1146 "org.freedesktop.NetworkManager");
1148 dbus_g_proxy_add_signal(nm_proxy, "StateChange", G_TYPE_UINT, G_TYPE_INVALID);
1149 dbus_g_proxy_connect_signal(nm_proxy, "StateChange",
1150 G_CALLBACK(networkmanager_state_change_cb),
1154 install_dbus_status_handler();
1160 osso_context = osso_initialize(OSSO_SERVICE, "2.8.1", TRUE, NULL);
1161 if (osso_context == NULL) {
1164 hildon_program = HILDON_PROGRAM(hildon_program_get_instance());
1165 static_osso_context = osso_context;
1167 gtk_widget_set_default_colormap(gdk_rgb_get_colormap());
1169 gui_manager = gtkut_create_ui_manager();
1171 /* Create container for all the menus we will be adding */
1172 MENUITEM_ADDUI("/", "Menus", NULL, GTK_UI_MANAGER_MENUBAR);
1174 if (!g_thread_supported()) {
1175 g_error(_("g_thread is not supported by glib.\n"));
1178 /* check that we're not on a too recent/old gtk+ */
1179 #if GTK_CHECK_VERSION(2, 9, 0)
1180 if (gtk_check_version(2, 9, 0) != NULL) {
1181 alertpanel_error(_("Claws Mail has been compiled with "
1182 "a more recent GTK+ library than is "
1183 "currently available. This will cause "
1184 "crashes. You need to upgrade GTK+ or "
1185 "recompile Claws Mail."));
1192 if (gtk_check_version(2, 9, 0) == NULL) {
1193 alertpanel_error(_("Claws Mail has been compiled with "
1194 "an older GTK+ library than is "
1195 "currently available. This will cause "
1196 "crashes. You need to recompile "
1206 CHDIR_EXEC_CODE_RETURN_VAL_IF_FAIL(get_home_dir(), 1, win32_close_log(););
1208 CHDIR_RETURN_VAL_IF_FAIL(get_home_dir(), 1);
1211 /* no config dir exists. See if we can migrate an old config. */
1212 if (!is_dir_exist(RC_DIR)) {
1213 prefs_destroy_cache();
1216 /* if one of the old dirs exist, we'll ask if the user
1217 * want to migrates, and r will be TRUE if he said yes
1218 * and migration succeeded, and FALSE otherwise.
1220 if (is_dir_exist(OLD_GTK2_RC_DIR)) {
1221 r = migrate_old_config(OLD_GTK2_RC_DIR, RC_DIR, _("Sylpheed-Claws 2.6.0 (or older)"));
1222 asked_for_migration = TRUE;
1223 } else if (is_dir_exist(OLDER_GTK2_RC_DIR)) {
1224 r = migrate_old_config(OLDER_GTK2_RC_DIR, RC_DIR, _("Sylpheed-Claws 1.9.15 (or older)"));
1225 asked_for_migration = TRUE;
1226 } else if (is_dir_exist(OLD_GTK1_RC_DIR)) {
1227 r = migrate_old_config(OLD_GTK1_RC_DIR, RC_DIR, _("Sylpheed-Claws 1.0.5 (or older)"));
1228 asked_for_migration = TRUE;
1229 } else if (is_dir_exist(SYLPHEED_RC_DIR)) {
1230 r = migrate_old_config(SYLPHEED_RC_DIR, RC_DIR, "Sylpheed");
1231 asked_for_migration = TRUE;
1234 /* If migration failed or the user didn't want to do it,
1235 * we create a new one (and we'll hit wizard later).
1237 if (r == FALSE && !is_dir_exist(RC_DIR) && make_dir(RC_DIR) < 0) {
1246 if (!is_file_exist(RC_DIR G_DIR_SEPARATOR_S COMMON_RC) &&
1247 is_file_exist(RC_DIR G_DIR_SEPARATOR_S OLD_COMMON_RC)) {
1248 /* post 2.6 name change */
1249 migrate_common_rc(RC_DIR G_DIR_SEPARATOR_S OLD_COMMON_RC,
1250 RC_DIR G_DIR_SEPARATOR_S COMMON_RC);
1254 plugin_load_all("Common");
1256 userrc = g_strconcat(get_rc_dir(), G_DIR_SEPARATOR_S, "gtkrc-2.0", NULL);
1257 gtk_rc_parse(userrc);
1260 userrc = g_strconcat(get_rc_dir(), G_DIR_SEPARATOR_S, MENU_RC, NULL);
1261 gtk_accel_map_load (userrc);
1265 CHDIR_EXEC_CODE_RETURN_VAL_IF_FAIL(get_rc_dir(), 1, win32_close_log(););
1267 CHDIR_RETURN_VAL_IF_FAIL(get_rc_dir(), 1);
1270 MAKE_DIR_IF_NOT_EXIST(get_mail_base_dir());
1271 MAKE_DIR_IF_NOT_EXIST(get_imap_cache_dir());
1272 MAKE_DIR_IF_NOT_EXIST(get_news_cache_dir());
1273 MAKE_DIR_IF_NOT_EXIST(get_mime_tmp_dir());
1274 MAKE_DIR_IF_NOT_EXIST(get_tmp_dir());
1275 MAKE_DIR_IF_NOT_EXIST(UIDL_DIR);
1277 crash_file_present = is_file_exist(get_crashfile_name());
1278 /* remove temporary files */
1279 remove_all_files(get_tmp_dir());
1280 remove_all_files(get_mime_tmp_dir());
1282 if (!cmd.crash && crash_file_present)
1283 claws_crashed_bool = TRUE;
1285 if (is_file_exist("claws.log")) {
1286 if (rename_force("claws.log", "claws.log.bak") < 0)
1287 FILE_OP_ERROR("claws.log", "rename");
1289 set_log_file(LOG_PROTOCOL, "claws.log");
1291 if (is_file_exist("filtering.log")) {
1292 if (rename_force("filtering.log", "filtering.log.bak") < 0)
1293 FILE_OP_ERROR("filtering.log", "rename");
1295 set_log_file(LOG_DEBUG_FILTERING, "filtering.log");
1298 CHDIR_EXEC_CODE_RETURN_VAL_IF_FAIL(get_home_dir(), 1, win32_close_log(););
1300 CHDIR_RETURN_VAL_IF_FAIL(get_home_dir(), 1);
1303 folder_system_init();
1304 prefs_common_read_config();
1306 prefs_themes_init();
1308 prefs_ext_prog_init();
1309 prefs_wrapping_init();
1310 prefs_compose_writing_init();
1311 prefs_msg_colors_init();
1312 image_viewer_init();
1313 prefs_image_viewer_init();
1315 prefs_summaries_init();
1316 prefs_message_init();
1318 prefs_logging_init();
1319 prefs_receive_init();
1323 gtkaspell_checkers_init();
1324 prefs_spelling_init();
1327 sock_set_io_timeout(prefs_common.io_timeout_secs);
1328 prefs_actions_read_config();
1329 prefs_display_header_read_config();
1330 /* prefs_filtering_read_config(); */
1331 addressbook_read_file();
1333 gtkut_widget_init();
1334 stock_pixbuf_gdk(NULL, STOCK_PIXMAP_CLAWS_MAIL_ICON, &icon);
1335 gtk_window_set_default_icon(icon);
1337 folderview_initialize();
1343 mainwin = main_window_create();
1345 #ifdef HAVE_NETWORKMANAGER_SUPPORT
1346 networkmanager_state_change_cb(nm_proxy,NULL,mainwin);
1351 appdata = g_new0(AppData, 1);
1352 appdata->program = hildon_program;
1353 appdata->window = HILDON_WINDOW(mainwin->window);
1354 appdata->osso_context = osso_context;
1355 result = osso_rpc_set_cb_f(appdata->osso_context,
1359 dbus_req_handler, appdata);
1360 if (result != OSSO_OK) {
1365 /* Add handler for Exit D-BUS messages */
1366 result = osso_application_set_exit_cb(appdata->osso_context,
1368 (gpointer) appdata);
1369 if (result != OSSO_OK) {
1373 osso_hw_set_event_cb( appdata->osso_context,
1374 NULL, hw_event_handler, (gpointer) appdata );
1376 manage_window_focus_in(mainwin->window, NULL, NULL);
1377 folderview = mainwin->folderview;
1379 gtk_cmclist_freeze(GTK_CMCLIST(mainwin->folderview->ctree));
1380 folder_item_update_freeze();
1382 /* register the callback of unix domain socket input */
1383 lock_socket_tag = claws_input_add(lock_socket,
1384 GDK_INPUT_READ | GDK_INPUT_EXCEPTION,
1385 lock_socket_input_cb,
1389 prefs_account_init();
1390 account_read_config_all();
1392 /* If we can't read a folder list or don't have accounts,
1393 * it means the configuration's not done. Either this is
1394 * a brand new install, either a failed/refused migration.
1395 * So we'll start the wizard.
1397 if (folder_read_list() < 0) {
1398 prefs_destroy_cache();
1400 /* if run_wizard returns FALSE it's because it's
1401 * been cancelled. We can't do much but exit.
1402 * however, if the user was asked for a migration,
1403 * we remove the newly created directory so that
1404 * he's asked again for migration on next launch.*/
1405 if (!run_wizard(mainwin, TRUE)) {
1406 if (asked_for_migration)
1407 remove_dir_recursive(RC_DIR);
1413 main_window_reflect_prefs_all_now();
1414 folder_write_list();
1418 if (!account_get_list()) {
1419 prefs_destroy_cache();
1420 if (!run_wizard(mainwin, FALSE)) {
1421 if (asked_for_migration)
1422 remove_dir_recursive(RC_DIR);
1428 if(!account_get_list()) {
1429 exit_claws(mainwin);
1439 toolbar_main_set_sensitive(mainwin);
1440 main_window_set_menu_sensitive(mainwin);
1442 /* if crashed, show window early so that the user
1443 * sees what's happening */
1444 if (claws_crashed())
1445 main_window_popup(mainwin);
1448 gcry_control (GCRYCTL_SET_THREAD_CBS, &gcry_threads_pthread);
1451 #ifdef HAVE_LIBETPAN
1452 imap_main_init(prefs_common.skip_ssl_cert_check);
1453 imap_main_set_timeout(prefs_common.io_timeout_secs);
1454 nntp_main_init(prefs_common.skip_ssl_cert_check);
1456 account_set_missing_folder();
1457 folder_set_missing_folders();
1458 folderview_set(folderview);
1460 prefs_matcher_read_config();
1462 /* make one all-folder processing before using claws */
1463 main_window_cursor_wait(mainwin);
1464 folder_func_to_all_folders(initial_processing, (gpointer *)mainwin);
1466 /* if claws crashed, rebuild caches */
1467 if (claws_crashed()) {
1469 debug_print("Claws Mail crashed, checking for new messages in local folders\n");
1470 folder_item_update_thaw();
1471 folderview_check_new(NULL);
1472 folder_clean_cache_memory_force();
1473 folder_item_update_freeze();
1475 /* make the crash-indicator file */
1476 str_write_to_file("foo", get_crashfile_name());
1478 inc_autocheck_timer_init(mainwin);
1480 /* ignore SIGPIPE signal for preventing sudden death of program */
1482 signal(SIGPIPE, SIG_IGN);
1484 if (cmd.online_mode == ONLINE_MODE_OFFLINE) {
1485 main_window_toggle_work_offline(mainwin, TRUE, FALSE);
1487 if (cmd.online_mode == ONLINE_MODE_ONLINE) {
1488 main_window_toggle_work_offline(mainwin, FALSE, FALSE);
1491 if (cmd.status_folders) {
1492 g_ptr_array_free(cmd.status_folders, TRUE);
1493 cmd.status_folders = NULL;
1495 if (cmd.status_full_folders) {
1496 g_ptr_array_free(cmd.status_full_folders, TRUE);
1497 cmd.status_full_folders = NULL;
1500 claws_register_idle_function(claws_gtk_idle);
1502 prefs_toolbar_init();
1504 num_folder_class = g_list_length(folder_get_list());
1506 plugin_load_all("GTK2");
1508 if (g_list_length(folder_get_list()) != num_folder_class) {
1509 debug_print("new folders loaded, reloading processing rules\n");
1510 prefs_matcher_read_config();
1513 if ((plug_list = plugin_get_unloaded_list()) != NULL) {
1516 gint num_plugins = 0;
1517 for (cur = plug_list; cur; cur = cur->next) {
1518 Plugin *plugin = (Plugin *)cur->data;
1519 gchar *tmp = g_strdup_printf("%s\n%s",
1521 plugin_get_name(plugin));
1526 main_window_cursor_normal(mainwin);
1527 alertpanel_warning(ngettext(
1528 "The following plugin failed to load. "
1529 "Check the Plugins configuration "
1530 "for more information:\n%s",
1531 "The following plugins failed to load. "
1532 "Check the Plugins configuration "
1533 "for more information:\n%s",
1536 main_window_cursor_wait(mainwin);
1538 g_slist_free(plug_list);
1542 prefs_common_write_config();
1543 plugin_load_standard_plugins ();
1545 /* if not crashed, show window now */
1546 if (!claws_crashed()) {
1547 /* apart if something told not to show */
1548 if (show_at_startup)
1549 main_window_popup(mainwin);
1552 if (!folder_have_mailbox()) {
1553 prefs_destroy_cache();
1554 main_window_cursor_normal(mainwin);
1555 if (folder_get_list() != NULL) {
1556 alertpanel_error(_("Claws Mail has detected a configured "
1557 "mailbox, but it is incomplete. It is "
1558 "possibly due to a failing IMAP account. Use "
1559 "\"Rebuild folder tree\" on the mailbox parent "
1560 "folder's context menu to try to fix it."));
1562 alertpanel_error(_("Claws Mail has detected a configured "
1563 "mailbox, but could not load it. It is "
1564 "probably provided by an out-of-date "
1565 "external plugin. Please reinstall the "
1566 "plugin and try again."));
1567 exit_claws(mainwin);
1575 static_mainwindow = mainwin;
1578 if (prefs_common.data_root != NULL && *prefs_common.data_root != '\0') {
1579 GnomeVFSVolume *vol = NULL;
1580 gchar *uri, *mount_path;
1582 volmon = gnome_vfs_get_volume_monitor();
1583 vol = gnome_vfs_volume_monitor_get_volume_for_path(volmon, prefs_common.data_root);
1585 uri = gnome_vfs_volume_get_activation_uri (vol);
1586 mount_path = uri?gnome_vfs_get_local_path_from_uri (uri):NULL;
1589 if (vol == NULL || !gnome_vfs_volume_is_mounted(vol)
1590 || strcmp(mount_path, prefs_common.data_root)) {
1591 alertpanel_error(_("Claws Mail can not start without its data volume (%s)."),
1592 prefs_common.data_root);
1594 gnome_vfs_volume_unref(vol);
1595 exit_claws(mainwin);
1599 gnome_vfs_volume_unref(vol);
1600 g_signal_connect(G_OBJECT(volmon),
1601 "volume-mounted", G_CALLBACK(main_vol_mount_cb), mainwin);
1602 g_signal_connect(G_OBJECT(volmon),
1603 "volume-unmounted", G_CALLBACK(main_vol_unmount_cb), mainwin);
1607 #ifdef HAVE_STARTUP_NOTIFICATION
1608 startup_notification_complete(FALSE);
1611 sc_session_manager_connect(mainwin);
1614 folder_item_update_thaw();
1615 gtk_cmclist_thaw(GTK_CMCLIST(mainwin->folderview->ctree));
1616 main_window_cursor_normal(mainwin);
1618 if (!cmd.target && prefs_common.goto_last_folder_on_startup &&
1619 folder_find_item_from_identifier(prefs_common.last_opened_folder) != NULL &&
1621 cmd.target = prefs_common.last_opened_folder;
1624 if (cmd.receive_all && !cmd.target) {
1626 g_timeout_add(1000, defer_check_all, GINT_TO_POINTER(FALSE));
1627 } else if (prefs_common.chk_on_startup && !cmd.target) {
1629 g_timeout_add(1000, defer_check_all, GINT_TO_POINTER(TRUE));
1630 } else if (cmd.receive && !cmd.target) {
1632 g_timeout_add(1000, defer_check, NULL);
1634 gtk_widget_grab_focus(folderview->ctree);
1637 open_compose_new(cmd.compose_mailto, cmd.attach_files);
1639 if (cmd.attach_files) {
1640 ptr_array_free_strings(cmd.attach_files);
1641 g_ptr_array_free(cmd.attach_files, TRUE);
1642 cmd.attach_files = NULL;
1644 if (cmd.subscribe) {
1645 folder_subscribe(cmd.subscribe_uri);
1654 g_timeout_add(500, defer_jump, (gpointer)cmd.target);
1657 prefs_destroy_cache();
1659 compose_reopen_exit_drafts();
1662 sc_starting = FALSE;
1663 main_window_set_menu_sensitive(mainwin);
1664 toolbar_main_set_sensitive(mainwin);
1671 osso_deinitialize(osso_context);
1673 #ifdef HAVE_NETWORKMANAGER_SUPPORT
1675 g_object_unref(nm_proxy);
1677 #ifdef HAVE_DBUS_GLIB
1678 uninstall_dbus_status_handler();
1680 dbus_g_connection_unref(connection);
1686 exit_claws(mainwin);
1691 static void save_all_caches(FolderItem *item, gpointer data)
1698 folder_item_close(item);
1701 folder_item_free_cache(item, TRUE);
1704 static void exit_claws(MainWindow *mainwin)
1710 debug_print("shutting down\n");
1711 inc_autocheck_timer_remove();
1713 #ifdef HAVE_NETWORKMANAGER_SUPPORT
1714 if (prefs_common.work_offline && went_offline_nm)
1715 prefs_common.work_offline = FALSE;
1718 /* save prefs for opened folder */
1719 if(mainwin->folderview->opened) {
1722 item = gtk_cmctree_node_get_row_data(GTK_CMCTREE(mainwin->folderview->ctree), mainwin->folderview->opened);
1723 summary_save_prefs_to_folderitem(mainwin->folderview->summaryview, item);
1724 prefs_common.last_opened_folder = folder_item_get_identifier(item);
1727 /* save all state before exiting */
1728 folder_func_to_all_folders(save_all_caches, NULL);
1729 folder_write_list();
1731 main_window_get_size(mainwin);
1732 main_window_get_position(mainwin);
1734 prefs_common_write_config();
1735 account_write_config_all();
1736 addressbook_export_to_file();
1738 filename = g_strconcat(get_rc_dir(), G_DIR_SEPARATOR_S, MENU_RC, NULL);
1739 gtk_accel_map_save(filename);
1742 /* delete temporary files */
1743 remove_all_files(get_tmp_dir());
1744 remove_all_files(get_mime_tmp_dir());
1746 close_log_file(LOG_PROTOCOL);
1747 close_log_file(LOG_DEBUG_FILTERING);
1749 #ifdef HAVE_LIBETPAN
1753 /* delete crashfile */
1755 claws_unlink(get_crashfile_name());
1757 lock_socket_remove();
1760 if (mainwin->smc_conn)
1761 SmcCloseConnection ((SmcConn)mainwin->smc_conn, 0, NULL);
1762 mainwin->smc_conn = NULL;
1765 main_window_destroy_all();
1767 plugin_unload_all("GTK2");
1769 prefs_toolbar_done();
1771 addressbook_destroy();
1773 prefs_themes_done();
1775 prefs_ext_prog_done();
1776 prefs_wrapping_done();
1777 prefs_compose_writing_done();
1778 prefs_msg_colors_done();
1779 prefs_image_viewer_done();
1780 image_viewer_done();
1782 prefs_summaries_done();
1783 prefs_message_done();
1785 prefs_receive_done();
1786 prefs_logging_done();
1790 prefs_spelling_done();
1791 gtkaspell_checkers_quit();
1793 plugin_unload_all("Common");
1797 static void parse_cmd_opt(int argc, char *argv[])
1801 for (i = 1; i < argc; i++) {
1802 if (!strncmp(argv[i], "--receive-all", 13)) {
1803 cmd.receive_all = TRUE;
1804 } else if (!strncmp(argv[i], "--receive", 9)) {
1806 } else if (!strncmp(argv[i], "--compose", 9)) {
1807 const gchar *p = (i+1 < argc)?argv[i+1]:NULL;
1810 cmd.compose_mailto = NULL;
1811 if (p && *p != '\0' && *p != '-') {
1812 if (!strncmp(p, "mailto:", 7)) {
1813 cmd.compose_mailto = p + 7;
1815 cmd.compose_mailto = p;
1819 } else if (!strncmp(argv[i], "--subscribe", 11)) {
1820 const gchar *p = (i+1 < argc)?argv[i+1]:NULL;
1821 if (p && *p != '\0' && *p != '-') {
1822 cmd.subscribe = TRUE;
1823 cmd.subscribe_uri = p;
1825 } else if (!strncmp(argv[i], "--attach", 8)) {
1826 const gchar *p = (i+1 < argc)?argv[i+1]:NULL;
1829 while (p && *p != '\0' && *p != '-') {
1830 if (!cmd.attach_files) {
1831 cmd.attach_files = g_ptr_array_new();
1833 if ((file = g_filename_from_uri(p, NULL, NULL)) != NULL) {
1834 if (!is_file_exist(file)) {
1839 if (file == NULL && *p != G_DIR_SEPARATOR) {
1840 file = g_strconcat(claws_get_startup_dir(),
1843 } else if (file == NULL) {
1846 g_ptr_array_add(cmd.attach_files, file);
1848 p = (i+1 < argc)?argv[i+1]:NULL;
1850 } else if (!strncmp(argv[i], "--send", 6)) {
1852 } else if (!strncmp(argv[i], "--version-full", 14) ||
1853 !strncmp(argv[i], "-V", 2)) {
1854 g_print("Claws Mail version " VERSION "\n");
1855 main_dump_features_list(FALSE);
1857 } else if (!strncmp(argv[i], "--version", 9) ||
1858 !strncmp(argv[i], "-v", 2)) {
1859 g_print("Claws Mail version " VERSION "\n");
1861 } else if (!strncmp(argv[i], "--status-full", 13)) {
1862 const gchar *p = (i+1 < argc)?argv[i+1]:NULL;
1864 cmd.status_full = TRUE;
1865 while (p && *p != '\0' && *p != '-') {
1866 if (!cmd.status_full_folders) {
1867 cmd.status_full_folders =
1870 g_ptr_array_add(cmd.status_full_folders,
1873 p = (i+1 < argc)?argv[i+1]:NULL;
1875 } else if (!strncmp(argv[i], "--status", 8)) {
1876 const gchar *p = (i+1 < argc)?argv[i+1]:NULL;
1879 while (p && *p != '\0' && *p != '-') {
1880 if (!cmd.status_folders)
1881 cmd.status_folders = g_ptr_array_new();
1882 g_ptr_array_add(cmd.status_folders,
1885 p = (i+1 < argc)?argv[i+1]:NULL;
1887 } else if (!strncmp(argv[i], "--online", 8)) {
1888 cmd.online_mode = ONLINE_MODE_ONLINE;
1889 } else if (!strncmp(argv[i], "--offline", 9)) {
1890 cmd.online_mode = ONLINE_MODE_OFFLINE;
1891 } else if (!strncmp(argv[i], "--help", 6) ||
1892 !strncmp(argv[i], "-h", 2)) {
1893 gchar *base = g_path_get_basename(argv[0]);
1894 g_print(_("Usage: %s [OPTION]...\n"), base);
1896 g_print("%s\n", _(" --compose [address] open composition window"));
1897 g_print("%s\n", _(" --subscribe [uri] subscribe to the given URI if possible"));
1898 g_print("%s\n", _(" --attach file1 [file2]...\n"
1899 " open composition window with specified files\n"
1901 g_print("%s\n", _(" --receive receive new messages"));
1902 g_print("%s\n", _(" --receive-all receive new messages of all accounts"));
1903 g_print("%s\n", _(" --send send all queued messages"));
1904 g_print("%s\n", _(" --status [folder]... show the total number of messages"));
1905 g_print("%s\n", _(" --status-full [folder]...\n"
1906 " show the status of each folder"));
1907 g_print("%s\n", _(" --select folder[/msg] jumps to the specified folder/message\n"
1908 " folder is a folder id like 'folder/sub_folder'"));
1909 g_print("%s\n", _(" --online switch to online mode"));
1910 g_print("%s\n", _(" --offline switch to offline mode"));
1911 g_print("%s\n", _(" --exit --quit -q exit Claws Mail"));
1912 g_print("%s\n", _(" --debug debug mode"));
1913 g_print("%s\n", _(" --help -h display this help and exit"));
1914 g_print("%s\n", _(" --version -v output version information and exit"));
1915 g_print("%s\n", _(" --version-full -V output version and built-in features information and exit"));
1916 g_print("%s\n", _(" --config-dir output configuration directory"));
1917 g_print("%s\n", _(" --alternate-config-dir [dir]\n"
1918 " use specified configuration directory"));
1922 } else if (!strncmp(argv[i], "--crash", 7)) {
1924 cmd.crash_params = g_strdup((i+1 < argc)?argv[i+1]:NULL);
1926 } else if (!strncmp(argv[i], "--config-dir", sizeof "--config-dir" - 1)) {
1927 g_print(RC_DIR "\n");
1929 } else if (!strncmp(argv[i], "--alternate-config-dir", sizeof "--alternate-config-dir" - 1) && i+1 < argc) {
1930 set_rc_dir(argv[i+1]);
1931 } else if (!strncmp(argv[i], "--exit", 6) ||
1932 !strncmp(argv[i], "--quit", 6) ||
1933 !strncmp(argv[i], "-q", 2)) {
1935 } else if (!strncmp(argv[i], "--select", 8) && i+1 < argc) {
1936 cmd.target = argv[i+1];
1937 } else if (i == 1 && argc == 2) {
1938 /* only one parameter. Do something intelligent about it */
1939 if ((strstr(argv[i], "@")||!strncmp(argv[i], "mailto:", 7)) && !strstr(argv[i], "://")) {
1940 const gchar *p = argv[i];
1943 cmd.compose_mailto = NULL;
1944 if (p && *p != '\0' && *p != '-') {
1945 if (!strncmp(p, "mailto:", 7)) {
1946 cmd.compose_mailto = p + 7;
1948 cmd.compose_mailto = p;
1951 } else if (!strncmp(argv[i], "file://", 7)) {
1952 cmd.target = argv[i];
1953 } else if (!strncmp(argv[i], "?attach=file://", strlen("?attach=file://"))) {
1955 cmd.compose_mailto = argv[i];
1956 } else if (strstr(argv[i], "://")) {
1957 const gchar *p = argv[i];
1958 if (p && *p != '\0' && *p != '-') {
1959 cmd.subscribe = TRUE;
1960 cmd.subscribe_uri = p;
1962 } else if (!strcmp(argv[i], "--sync")) {
1964 } else if (is_dir_exist(argv[i]) || is_file_exist(argv[i])) {
1965 cmd.target = argv[i];
1967 g_print(_("Unknown option\n"));
1973 if (cmd.attach_files && cmd.compose == FALSE) {
1975 cmd.compose_mailto = NULL;
1979 static void initial_processing(FolderItem *item, gpointer data)
1981 MainWindow *mainwin = (MainWindow *)data;
1984 g_return_if_fail(item);
1985 buf = g_strdup_printf(_("Processing (%s)..."),
1988 : _("top level folder"));
1992 if (item->prefs->enable_processing) {
1993 item->processing_pending = TRUE;
1994 folder_item_apply_processing(item);
1995 item->processing_pending = FALSE;
1998 STATUSBAR_POP(mainwin);
2001 static gboolean draft_all_messages(void)
2003 GList *compose_list = NULL;
2005 compose_clear_exit_drafts();
2006 compose_list = compose_get_compose_list();
2007 while (compose_list != NULL) {
2008 Compose *c = (Compose*)compose_list->data;
2009 if (!compose_draft(c, COMPOSE_DRAFT_FOR_EXIT))
2011 compose_list = compose_get_compose_list();
2015 gboolean clean_quit(gpointer data)
2017 static gboolean firstrun = TRUE;
2024 /*!< Good idea to have the main window stored in a
2025 * static variable so we can check that variable
2026 * to see if we're really allowed to do things
2027 * that actually the spawner is supposed to
2028 * do (like: sending mail, composing messages).
2029 * Because, really, if we're the spawnee, and
2030 * we touch GTK stuff, we're hosed. See the
2033 /* FIXME: Use something else to signal that we're
2034 * in the original spawner, and not in a spawned
2036 if (!static_mainwindow) {
2040 draft_all_messages();
2041 emergency_exit = TRUE;
2042 exit_claws(static_mainwindow);
2048 void app_will_exit(GtkWidget *widget, gpointer data)
2050 MainWindow *mainwin = data;
2052 if (gtk_main_level() == 0) {
2053 debug_print("not even started\n");
2056 if (sc_exiting == TRUE) {
2057 debug_print("exit pending\n");
2061 debug_print("exiting\n");
2062 if (compose_get_compose_list()) {
2063 if (!draft_all_messages()) {
2064 main_window_popup(mainwin);
2070 if (prefs_common.warn_queued_on_exit && procmsg_have_queued_mails_fast()) {
2071 if (alertpanel(_("Queued messages"),
2072 _("Some unsent messages are queued. Exit now?"),
2073 GTK_STOCK_CANCEL, GTK_STOCK_OK, NULL)
2074 != G_ALERTALTERNATE) {
2075 main_window_popup(mainwin);
2079 manage_window_focus_in(mainwin->window, NULL, NULL);
2083 #ifdef HAVE_VALGRIND
2084 if (RUNNING_ON_VALGRIND) {
2085 summary_clear_list(mainwin->summaryview);
2088 if (folderview_get_selected_item(mainwin->folderview))
2089 folder_item_close(folderview_get_selected_item(mainwin->folderview));
2093 gboolean claws_is_exiting(void)
2098 gboolean claws_is_starting(void)
2104 * CLAWS: want this public so crash dialog can delete the
2107 gchar *claws_get_socket_name(void)
2109 static gchar *filename = NULL;
2110 const gchar *socket_dir = NULL;
2112 if (rc_dir_is_alt())
2113 socket_dir = get_rc_dir();
2115 socket_dir = g_get_tmp_dir();
2116 if (filename == NULL) {
2117 filename = g_strdup_printf("%s%cclaws-mail-%d",
2118 socket_dir, G_DIR_SEPARATOR,
2129 static gchar *get_crashfile_name(void)
2131 static gchar *filename = NULL;
2133 if (filename == NULL) {
2134 filename = g_strdup_printf("%s%cclaws-crashed",
2135 get_tmp_dir(), G_DIR_SEPARATOR);
2141 static gint prohibit_duplicate_launch(void)
2147 path = claws_get_socket_name();
2148 uxsock = fd_connect_unix(path);
2150 if (x_display == NULL)
2151 x_display = g_strdup(g_getenv("DISPLAY"));
2155 return fd_open_unix(path);
2160 hmutex = CreateMutexA(NULL, FALSE, "ClawsMail");
2162 debug_print("cannot create Mutex\n");
2165 if (GetLastError() != ERROR_ALREADY_EXISTS) {
2166 uxsock = fd_open_inet(50216);
2172 uxsock = fd_connect_inet(50216);
2176 /* remote command mode */
2178 debug_print("another Claws Mail instance is already running.\n");
2180 if (cmd.receive_all) {
2181 fd_write_all(uxsock, "receive_all\n", 12);
2182 } else if (cmd.receive) {
2183 fd_write_all(uxsock, "receive\n", 8);
2184 } else if (cmd.compose && cmd.attach_files) {
2185 gchar *str, *compose_str;
2188 if (cmd.compose_mailto) {
2189 compose_str = g_strdup_printf("compose_attach %s\n",
2190 cmd.compose_mailto);
2192 compose_str = g_strdup("compose_attach\n");
2195 fd_write_all(uxsock, compose_str, strlen(compose_str));
2196 g_free(compose_str);
2198 for (i = 0; i < cmd.attach_files->len; i++) {
2199 str = g_ptr_array_index(cmd.attach_files, i);
2200 fd_write_all(uxsock, str, strlen(str));
2201 fd_write_all(uxsock, "\n", 1);
2204 fd_write_all(uxsock, ".\n", 2);
2205 } else if (cmd.compose) {
2208 if (cmd.compose_mailto) {
2209 compose_str = g_strdup_printf
2210 ("compose %s\n", cmd.compose_mailto);
2212 compose_str = g_strdup("compose\n");
2215 fd_write_all(uxsock, compose_str, strlen(compose_str));
2216 g_free(compose_str);
2217 } else if (cmd.subscribe) {
2218 gchar *str = g_strdup_printf("subscribe %s\n", cmd.subscribe_uri);
2219 fd_write_all(uxsock, str, strlen(str));
2221 } else if (cmd.send) {
2222 fd_write_all(uxsock, "send\n", 5);
2223 } else if (cmd.online_mode == ONLINE_MODE_ONLINE) {
2224 fd_write(uxsock, "online\n", 6);
2225 } else if (cmd.online_mode == ONLINE_MODE_OFFLINE) {
2226 fd_write(uxsock, "offline\n", 7);
2227 } else if (cmd.status || cmd.status_full) {
2228 gchar buf[BUFFSIZE];
2230 const gchar *command;
2234 command = cmd.status_full ? "status-full\n" : "status\n";
2235 folders = cmd.status_full ? cmd.status_full_folders :
2238 fd_write_all(uxsock, command, strlen(command));
2239 for (i = 0; folders && i < folders->len; ++i) {
2240 folder = g_ptr_array_index(folders, i);
2241 fd_write_all(uxsock, folder, strlen(folder));
2242 fd_write_all(uxsock, "\n", 1);
2244 fd_write_all(uxsock, ".\n", 2);
2246 fd_gets(uxsock, buf, sizeof(buf));
2247 if (!strncmp(buf, ".\n", 2)) break;
2250 } else if (cmd.exit) {
2251 fd_write_all(uxsock, "exit\n", 5);
2252 } else if (cmd.target) {
2253 gchar *str = g_strdup_printf("select %s\n", cmd.target);
2254 fd_write_all(uxsock, str, strlen(str));
2259 fd_write_all(uxsock, "get_display\n", 12);
2260 memset(buf, 0, sizeof(buf));
2261 fd_gets(uxsock, buf, sizeof(buf));
2262 if (strcmp2(buf, x_display)) {
2263 g_print("Claws Mail is already running on display %s.\n",
2267 uxsock = fd_connect_unix(path);
2268 fd_write_all(uxsock, "popup\n", 6);
2271 fd_write_all(uxsock, "popup\n", 6);
2279 static gint lock_socket_remove(void)
2284 if (lock_socket < 0) {
2288 if (lock_socket_tag > 0) {
2289 g_source_remove(lock_socket_tag);
2291 fd_close(lock_socket);
2294 filename = claws_get_socket_name();
2295 claws_unlink(filename);
2301 static GPtrArray *get_folder_item_list(gint sock)
2303 gchar buf[BUFFSIZE];
2305 GPtrArray *folders = NULL;
2308 fd_gets(sock, buf, sizeof(buf));
2309 if (!strncmp(buf, ".\n", 2)) {
2314 folders = g_ptr_array_new();
2316 item = folder_find_item_from_identifier(buf);
2318 g_ptr_array_add(folders, item);
2320 g_warning("no such folder: %s\n", buf);
2327 static void lock_socket_input_cb(gpointer data,
2329 GdkInputCondition condition)
2331 MainWindow *mainwin = (MainWindow *)data;
2333 gchar buf[BUFFSIZE];
2335 sock = fd_accept(source);
2336 fd_gets(sock, buf, sizeof(buf));
2338 if (!strncmp(buf, "popup", 5)) {
2339 main_window_popup(mainwin);
2340 } else if (!strncmp(buf, "get_display", 11)) {
2341 fd_write_all(sock, x_display, strlen(x_display));
2342 } else if (!strncmp(buf, "receive_all", 11)) {
2343 inc_all_account_mail(mainwin, FALSE,
2344 prefs_common.newmail_notify_manu);
2345 } else if (!strncmp(buf, "receive", 7)) {
2346 inc_mail(mainwin, prefs_common.newmail_notify_manu);
2347 } else if (!strncmp(buf, "compose_attach", 14)) {
2351 mailto = g_strdup(buf + strlen("compose_attach") + 1);
2352 files = g_ptr_array_new();
2353 while (fd_gets(sock, buf, sizeof(buf)) > 0) {
2354 if (buf[0] == '.' && buf[1] == '\n') {
2358 g_ptr_array_add(files, g_strdup(buf));
2360 open_compose_new(mailto, files);
2361 ptr_array_free_strings(files);
2362 g_ptr_array_free(files, TRUE);
2364 } else if (!strncmp(buf, "compose", 7)) {
2365 open_compose_new(buf + strlen("compose") + 1, NULL);
2366 } else if (!strncmp(buf, "subscribe", 9)) {
2367 main_window_popup(mainwin);
2368 folder_subscribe(buf + strlen("subscribe") + 1);
2369 } else if (!strncmp(buf, "send", 4)) {
2371 } else if (!strncmp(buf, "online", 6)) {
2372 main_window_toggle_work_offline(mainwin, FALSE, FALSE);
2373 } else if (!strncmp(buf, "offline", 7)) {
2374 main_window_toggle_work_offline(mainwin, TRUE, FALSE);
2375 } else if (!strncmp(buf, "status-full", 11) ||
2376 !strncmp(buf, "status", 6)) {
2380 folders = get_folder_item_list(sock);
2381 status = folder_get_status
2382 (folders, !strncmp(buf, "status-full", 11));
2383 fd_write_all(sock, status, strlen(status));
2384 fd_write_all(sock, ".\n", 2);
2386 if (folders) g_ptr_array_free(folders, TRUE);
2387 } else if (!strncmp(buf, "select ", 7)) {
2388 const gchar *target = buf+7;
2389 mainwindow_jump_to(target, TRUE);
2390 } else if (!strncmp(buf, "exit", 4)) {
2391 app_will_exit(NULL, mainwin);
2397 static void open_compose_new(const gchar *address, GPtrArray *attach_files)
2402 Xstrdup_a(addr, address, return);
2406 compose_new(NULL, addr, attach_files);
2409 static void send_queue(void)
2412 gchar *errstr = NULL;
2413 gboolean error = FALSE;
2414 for (list = folder_get_list(); list != NULL; list = list->next) {
2415 Folder *folder = list->data;
2417 if (folder->queue) {
2418 gint res = procmsg_send_queue
2419 (folder->queue, prefs_common.savemsg,
2423 folder_item_scan(folder->queue);
2431 alertpanel_error_log(_("Some errors occurred "
2432 "while sending queued messages:\n%s"), errstr);
2435 alertpanel_error_log("Some errors occurred "
2436 "while sending queued messages.");
2440 static void quit_signal_handler(int sig)
2442 debug_print("Quitting on signal %d\n", sig);
2444 g_timeout_add(0, clean_quit, NULL);
2447 static void install_basic_sighandlers()
2451 struct sigaction act;
2456 sigaddset(&mask, SIGTERM);
2459 sigaddset(&mask, SIGINT);
2462 sigaddset(&mask, SIGHUP);
2465 act.sa_handler = quit_signal_handler;
2470 sigaction(SIGTERM, &act, 0);
2473 sigaction(SIGINT, &act, 0);
2476 sigaction(SIGHUP, &act, 0);
2479 sigprocmask(SIG_UNBLOCK, &mask, 0);
2480 #endif /* !G_OS_WIN32 */
2483 #if (defined linux && defined SIGIO)
2484 static int mem_notify_fd = 0;
2486 static gboolean clean_caches(gpointer unused)
2488 if (static_mainwindow && static_mainwindow->lock_count > 0)
2490 debug_print("/dev/mem_notify: callback: Freeing some memory now!\n");
2491 folder_clean_cache_memory_force();
2495 static void memory_signal_handler(int sig)
2497 debug_print("/dev/mem_notify: Kernel says we should free up some memory!\n");
2498 g_timeout_add(10, clean_caches, NULL);
2501 static void install_memory_sighandler()
2504 struct sigaction act;
2507 mem_notify_fd = open("/dev/mem_notify", O_RDONLY|O_NONBLOCK);
2508 if (mem_notify_fd == -1) {
2509 debug_print("/dev/mem_notify not available (%s)\n",
2514 fcntl(mem_notify_fd, F_SETOWN, getpid());
2515 flags = fcntl(mem_notify_fd, F_GETFL);
2516 fcntl(mem_notify_fd, flags|FASYNC);
2520 sigaddset(&mask, SIGIO);
2522 act.sa_handler = memory_signal_handler;
2526 sigaction(SIGIO, &act, 0);
2528 sigprocmask(SIG_UNBLOCK, &mask, 0);
2530 debug_print("/dev/mem_notify: installed handler\n");
2532 #endif /* linux && SIGIO */
2535 osso_context_t *get_osso_context(void)
2537 return static_osso_context;
2542 #ifdef HAVE_NETWORKMANAGER_SUPPORT
2543 static void networkmanager_state_change_cb(DBusGProxy *proxy, gchar *dev,
2546 MainWindow *mainWin;
2549 if (static_mainwindow)
2550 mainWin = static_mainwindow;
2552 mainWin = (MainWindow*)data;
2554 if (!prefs_common.use_networkmanager)
2562 online = networkmanager_is_online(&error);
2564 if(online && went_offline_nm) {
2565 went_offline_nm = FALSE;
2566 main_window_toggle_work_offline(mainWin, FALSE, FALSE);
2567 debug_print("NetworkManager: Went online\n");
2568 log_message(LOG_PROTOCOL, _("NetworkManager: network is online.\n"));
2571 went_offline_nm = TRUE;
2572 main_window_toggle_work_offline(mainWin, TRUE, FALSE);
2573 debug_print("NetworkManager: Went offline\n");
2574 log_message(LOG_PROTOCOL, _("NetworkManager: network is offline.\n"));
2578 debug_print("Failed to get online information from NetworkManager: %s\n",
2580 g_error_free(error);
2584 debug_print("NetworkManager: Cannot change connection state because "
2585 "main window does not exist\n");
2588 /* Returns true (and sets error appropriately, if given) in case of error */
2589 gboolean networkmanager_is_online(GError **error)
2591 DBusGConnection *connection;
2593 GError *tmp_error = NULL;
2597 if (!prefs_common.use_networkmanager)
2602 connection = dbus_g_bus_get(DBUS_BUS_SYSTEM, &tmp_error);
2605 /* If calling code doesn't do error checking, at least print some debug */
2606 if((error == NULL) || (*error == NULL))
2607 debug_print("Failed to open connection to system bus: %s\n",
2608 tmp_error->message);
2609 g_propagate_error(error, tmp_error);
2613 proxy = dbus_g_proxy_new_for_name(connection,
2614 "org.freedesktop.NetworkManager",
2615 "/org/freedesktop/NetworkManager",
2616 "org.freedesktop.NetworkManager");
2618 retVal = dbus_g_proxy_call(proxy,"state",&tmp_error, G_TYPE_INVALID,
2619 G_TYPE_UINT, &state, G_TYPE_INVALID);
2622 g_object_unref(proxy);
2624 dbus_g_connection_unref(connection);
2627 /* If calling code doesn't do error checking, at least print some debug */
2628 if((error == NULL) || (*error == NULL))
2629 debug_print("Failed to get state info from NetworkManager: %s\n",
2630 tmp_error->message);
2631 g_propagate_error(error, tmp_error);
2635 return (state == NM_STATE_CONNECTED || state == NM_STATE_UNKNOWN);