--- mailcheck.c.orig 2004-03-08 14:39:12.000000000 +0100 +++ mailcheck.c 2004-03-08 14:39:18.000000000 +0100 @@ -521,7 +521,15 @@ gboolean mbox_entry_lost_focus (MailDialog * md) { - mailcheck_apply_options (md); + const char *tmp; + + tmp = gtk_entry_get_text (GTK_ENTRY (md->mbox_entry)); + + if (tmp && *tmp) + { + g_free (md->mc->mbox); + md->mc->mbox = g_strdup (tmp); + } /* needed to let entry handle focus-out as well */ return FALSE;