aboutsummaryrefslogtreecommitdiffstats
path: root/mail/mail-callbacks.c
blob: 35d59b688f06c92a24dd464e326ba6c48bd7a79b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/* mail-ops.c: callbacks for the mail toolbar/menus */

/* 
 * Authors: 
 *  Dan Winship <danw@helixcode.com>
 *  Peter Williams <peterw@helixcode.com>
 *  Jeffrey Stedfast <fejj@helixcode.com>
 *
 * Copyright 2000 Helix Code, Inc. (http://www.helixcode.com)
 *
 * This program is free software; you can redistribute it and/or 
 * modify it under the terms of the GNU General Public License as 
 * published by the Free Software Foundation; either version 2 of the
 * License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
 * USA
 */

#include <config.h>
#include <errno.h>
#include <gnome.h>
#include <libgnomeprint/gnome-print-master.h>
#include <libgnomeprint/gnome-print-master-preview.h>
#include "mail.h"
#include "mail-config.h"
#include "mail-threads.h"
#include "mail-tools.h"
#include "mail-ops.h"
#include "mail-local.h"
#include "folder-browser.h"
#include "subscribe-dialog.h"
#include "filter/filter-editor.h"
#include "filter/filter-driver.h"
#include <gal/e-table/e-table.h>
#include <gal/widgets/e-gui-utils.h>

/* FIXME: is there another way to do this? */
#include "Evolution.h"
#include "evolution-storage.h"

#include "evolution-shell-client.h"

#ifndef HAVE_MKSTEMP
#include <fcntl.h>
#include <sys/stat.h>
#endif

struct post_send_data {
    CamelFolder *folder;
    gchar *uid;
    guint32 flags;
};

static gboolean
check_configured (FolderBrowser *fb)
{
    if (mail_config_is_configured ())
        return TRUE;
    
    if (fb) {
        GtkWidget *dialog;
        
        dialog = gnome_message_box_new (_("You have not configured the mail client.\n"
                          "You need to do this before you can send,\n"
                          "receive or compose mail.\n"
                          "Would you like to configure it now?"),
                        GNOME_MESSAGE_BOX_QUESTION,
                        GNOME_STOCK_BUTTON_YES,
                        GNOME_STOCK_BUTTON_NO, NULL);
        gnome_dialog_set_parent (GNOME_DIALOG (dialog),
                     GTK_WINDOW (gtk_widget_get_ancestor (GTK_WIDGET(fb), GTK_TYPE_WINDOW)));
        
        switch (gnome_dialog_run_and_close (GNOME_DIALOG (dialog))) {
        case 0:
            mail_config_druid (fb->shell);
            break;
        case 1:
        default:
            break;
        }
        
        return mail_config_is_configured ();
    } else
        return FALSE;
}

static gboolean
check_send_configuration (FolderBrowser *fb)
{
    MailConfigService *xport = NULL;
    
    /* Check general */
    
    if (!check_configured (fb)) {
        return FALSE;
    }
    
    /* Check for an identity */
    
    if (!mail_config_get_default_identity ()) {
        GtkWidget *message;
        
        message = gnome_warning_dialog_parented (_("You need to configure an identity\n"
                               "before you can compose mail."),
                             GTK_WINDOW (gtk_widget_get_ancestor (GTK_WIDGET (fb),
                                                  GTK_TYPE_WINDOW)));
        gnome_dialog_run_and_close (GNOME_DIALOG (message));
        return FALSE;
    }
    
    /* Check for a transport */
    
    xport = mail_config_get_transport ();
    if (!xport || !xport->url) {
        GtkWidget *message;
        
        message = gnome_warning_dialog_parented (_("You need to configure a mail transport\n"
                               "before you can compose mail."),
                             GTK_WINDOW (gtk_widget_get_ancestor (GTK_WIDGET (fb),
                                                  GTK_TYPE_WINDOW)));
        gnome_dialog_run_and_close (GNOME_DIALOG (message));
        return FALSE;
    }
    
    return TRUE;
}

static void
main_select_first_unread (CamelObject *object, gpointer event_data, gpointer data)
{
    FolderBrowser *fb = FOLDER_BROWSER (data);
    /*ETable *table = E_TABLE_SCROLLED (fb->message_list->etable)->table;*/
    
    message_list_select (fb->message_list, -1, MESSAGE_LIST_SELECT_NEXT,
                 0, CAMEL_MESSAGE_SEEN);
}

static void
select_first_unread (CamelObject *object, gpointer event_data, gpointer data)
{
    mail_op_forward_event (main_select_first_unread, object, event_data, data);
}

void
fetch_mail (GtkWidget *widget, gpointer user_data)
{
    GSList *sources;
    
    if (!check_configured (FOLDER_BROWSER (user_data))) {
        GtkWidget *win = gtk_widget_get_ancestor (GTK_WIDGET (user_data),
                              GTK_TYPE_WINDOW);
        
        gnome_error_dialog_parented ("You have no mail sources "
                         "configured", GTK_WINDOW (win));
        return;
    }
    
    sources = mail_config_get_sources ();
    
    if (!sources || !sources->data) {
        GtkWidget *win = gtk_widget_get_ancestor (GTK_WIDGET (user_data),
                              GTK_TYPE_WINDOW);
        
        gnome_error_dialog_parented ("You have no mail sources "
                         "configured", GTK_WINDOW (win));
        return;
    }
    
    while (sources) {
        MailConfigService *source;
        
        source = (MailConfigService *) sources->data;
        sources = sources->next;
        
        if (!source || !source->url) {
            g_warning ("Bad source in fetch_mail??");
            continue;
        }
        
        mail_do_fetch_mail (source->url, source->keep_on_server, 
                    NULL, select_first_unread, user_data);
    }
}

void
send_queued_mail (GtkWidget *widget, gpointer user_data)
{
    extern CamelFolder *outbox_folder;
    MailConfigService *transport;
    
    if (!mail_config_is_configured ()) {
        return;
    }
    
    transport = mail_config_get_transport ();
    if (!transport) {
        GtkWidget *win = gtk_widget_get_ancestor (GTK_WIDGET (user_data),
                              GTK_TYPE_WINDOW);
        
        gnome_error_dialog_parented ("You have not set a transport method",
                         GTK_WINDOW (win));
        return;
    }
    
    if (!outbox_folder) {
        GtkWidget *win = gtk_widget_get_ancestor (GTK_WIDGET (user_data),
                              GTK_TYPE_WINDOW);
        
        gnome_error_dialog_parented ("You have no Outbox configured",
                         GTK_WINDOW (win));
        return;
    }
    
    mail_do_send_queue (outbox_folder, transport->url);
    
    mail_do_expunge_folder (outbox_folder);
}

void
send_receieve_mail (GtkWidget *widget, gpointer user_data)
{
    /* receive first then send, this is a temp fix for POP-before-SMTP */
    fetch_mail (widget, user_data);
    send_queued_mail (widget, user_data);
}

static gboolean
ask_confirm_for_empty_subject (EMsgComposer *composer)
{
    GtkWidget *message_box;
    int button;
    
    message_box = gnome_message_box_new (_("This message has no subject.\nReally send?"),
                         GNOME_MESSAGE_BOX_QUESTION,
                         GNOME_STOCK_BUTTON_YES, GNOME_STOCK_BUTTON_NO,
                         NULL);
    
    button = gnome_dialog_run_and_close (GNOME_DIALOG (message_box));
    
    if (button == 0)
        return TRUE;
    else
        return FALSE;
}

static void
free_psd (GtkWidget *composer, gpointer user_data)
{
    struct post_send_data *psd = user_data;
    
    if (psd->folder)
        camel_object_unref (CAMEL_OBJECT (psd->folder));
    if (psd->uid)
        g_free (psd->uid);
    g_free (psd);
}

void
composer_send_cb (EMsgComposer *composer, gpointer data)
{
    MailConfigService *xport = NULL;
    CamelMimeMessage *message;
    const char *subject;
    struct post_send_data *psd = data;
    
    /* Config info */
    xport = mail_config_get_transport ();
    
    /* Get the message */
    message = e_msg_composer_get_message (composer);
    
    /* Check for no subject */
    subject = camel_mime_message_get_subject (message);
    if (subject == NULL || subject[0] == '\0') {
        if (!ask_confirm_for_empty_subject (composer)) {
            camel_object_unref (CAMEL_OBJECT (message));
            return;
        }
    }
    
    if (psd) {
        mail_do_send_mail (xport->url, message, 
                   psd->folder, psd->uid, psd->flags, 
                   GTK_WIDGET (composer));
    } else {
        mail_do_send_mail (xport->url, message, NULL, NULL, 0,
                   GTK_WIDGET (composer));
    }
}

void
composer_postpone_cb (EMsgComposer *composer, gpointer data)
{
    extern CamelFolder *outbox_folder;
    CamelMimeMessage *message;
    struct post_send_data *psd = data;
    const char *subject;
    
    /* Get the message */
    message = e_msg_composer_get_message (composer);
    
    /* Check for no subject */
    subject = camel_mime_message_get_subject (message);
    if (subject == NULL || subject[0] == '\0') {
        if (!ask_confirm_for_empty_subject (composer)) {
            camel_object_unref (CAMEL_OBJECT (message));
            return;
        }
    }
    
    /* Save the message in Outbox */
    mail_do_append_mail (outbox_folder, message, NULL);
    
    if (psd) {
        guint32 set;
        
        set = camel_folder_get_message_flags (psd->folder, psd->uid);
        camel_folder_set_message_flags (psd->folder, psd->uid,
                        psd->flags, psd->flags);
    }
    
    gtk_widget_destroy (GTK_WIDGET (composer));
}

static GtkWidget *
create_msg_composer (const char *url)
{
       MailConfigIdentity *id;
       gboolean send_html;
       gchar *sig_file = NULL;
       EMsgComposer *composer;
       
       id = mail_config_get_default_identity ();
       send_html = mail_config_send_html ();
       
       if (id)
               sig_file = id->sig;
       
       if (url != NULL)
               composer = e_msg_composer_new_from_url (url);
       else
               composer = e_msg_composer_new_with_sig_file (sig_file);
       if (composer)
           e_msg_composer_set_send_html (composer, send_html);
       
       return (GtkWidget *)composer;
}

void
compose_msg (GtkWidget *widget, gpointer user_data)
{
    GtkWidget *composer;
    
    if (!check_send_configuration (FOLDER_BROWSER (user_data)))
        return;
    
    composer = create_msg_composer (NULL);
    if (!composer)
        return;
    
    gtk_signal_connect (GTK_OBJECT (composer), "send",
                GTK_SIGNAL_FUNC (composer_send_cb), NULL);
    gtk_signal_connect (GTK_OBJECT (composer), "postpone",
                GTK_SIGNAL_FUNC (composer_postpone_cb), NULL);
    
    gtk_widget_show (composer);
}

/* Send according to a mailto (RFC 2368) URL. */
void
send_to_url (const char *url)
{
    GtkWidget *composer;
    
    /* FIXME: no way to get folder browser? Not without
     * big pain in the ass, as far as I can tell */
    if (!check_send_configuration (NULL))
        return;
    
    composer = create_msg_composer (url);
    if (!composer)
        return;
    
    gtk_signal_connect (GTK_OBJECT (composer), "send",
                GTK_SIGNAL_FUNC (composer_send_cb), NULL);
    gtk_signal_connect (GTK_OBJECT (composer), "postpone",
                GTK_SIGNAL_FUNC (composer_postpone_cb), NULL);
    
    gtk_widget_show (composer);
}   

void
mail_reply (CamelFolder *folder, CamelMimeMessage *msg, const char *uid, gboolean to_all)
{
    EMsgComposer *composer;
    struct post_send_data *psd;
    
    /* FIXME: I just don't feel like implementing the folder-browser-passing
     * garbage. */
    if (!check_send_configuration (NULL) || !folder ||
        !msg || !uid)
        return;
    
    psd = g_new (struct post_send_data, 1);
    psd->folder = folder;
    camel_object_ref (CAMEL_OBJECT (psd->folder));
    psd->uid = g_strdup (uid);
    psd->flags = CAMEL_MESSAGE_ANSWERED;
    
    composer = mail_generate_reply (msg, to_all);
    if (!composer)
        return;
    
    gtk_signal_connect (GTK_OBJECT (composer), "send",
                GTK_SIGNAL_FUNC (composer_send_cb), psd);
    gtk_signal_connect (GTK_OBJECT (composer), "postpone",
                GTK_SIGNAL_FUNC (composer_postpone_cb), psd);
    gtk_signal_connect (GTK_OBJECT (composer), "destroy",
                GTK_SIGNAL_FUNC (free_psd), psd);
    
    gtk_widget_show (GTK_WIDGET (composer));    
}

void
reply_to_sender (GtkWidget *widget, gpointer user_data)
{
    FolderBrowser *fb = FOLDER_BROWSER (user_data);
    
    mail_reply (fb->folder, fb->mail_display->current_message, 
           fb->message_list->cursor_uid, FALSE);
}

void
reply_to_all (GtkWidget *widget, gpointer user_data)
{
    FolderBrowser *fb = FOLDER_BROWSER (user_data);
    
    mail_reply (fb->folder, fb->mail_display->current_message, 
           fb->message_list->cursor_uid, TRUE);
}

static void
enumerate_msg (MessageList *ml, const char *uid, gpointer data)
{
    g_ptr_array_add ((GPtrArray *) data, g_strdup (uid));
}


void
forward_msg (GtkWidget *widget, gpointer user_data)
{
    FolderBrowser *fb = FOLDER_BROWSER (user_data);
    EMsgComposer *composer;
    CamelMimeMessage *cursor_msg;
    GPtrArray *uids;
    
    cursor_msg = fb->mail_display->current_message;
    if (!check_send_configuration (fb) || !cursor_msg)
        return;
    
    composer = e_msg_composer_new ();
    if (!composer)
        return;
    
    uids = g_ptr_array_new();
    message_list_foreach (fb->message_list, enumerate_msg, uids);
    
    gtk_signal_connect (GTK_OBJECT (composer), "send",
                GTK_SIGNAL_FUNC (composer_send_cb), NULL);
    gtk_signal_connect (GTK_OBJECT (composer), "postpone",
                GTK_SIGNAL_FUNC (composer_postpone_cb), NULL);
    
    mail_do_forward_message (cursor_msg,
                 fb->message_list->folder,
                 uids,
                 composer);
}

static void
transfer_msg (GtkWidget *widget, gpointer user_data, gboolean delete_from_source)
{
    FolderBrowser *fb = user_data;
    MessageList *ml = fb->message_list;
    GPtrArray *uids;
    char *uri, *physical, *path;
    char *desc;
    const char *allowed_types[] = { "mail", NULL };
    extern EvolutionShellClient *global_shell_client;
    static char *last = NULL;
    
    if (last == NULL)
        last = g_strdup ("");
    
    if (delete_from_source)
        desc = _("Move message(s) to");
    else
        desc = _("Copy message(s) to");
    
    evolution_shell_client_user_select_folder  (global_shell_client,
                            desc,
                            last, allowed_types, &uri, &physical);
    if (!uri)
        return;
    
    path = strchr (uri, '/');
    if (path && strcmp (last, path) != 0) {
        g_free (last);
        last = g_strdup (path);
    }
    g_free (uri);
    
    uids = g_ptr_array_new ();
    message_list_foreach (ml, enumerate_msg, uids);
    mail_do_transfer_messages (ml->folder, uids, delete_from_source, physical);
}

void
move_msg (GtkWidget *widget, gpointer user_data)
{
    transfer_msg (widget, user_data, TRUE);
}

void
copy_msg (GtkWidget *widget, gpointer user_data)
{
    transfer_msg (widget, user_data, FALSE);
}

void
select_all (BonoboUIHandler *uih, void *user_data, const char *path)
{
    FolderBrowser *fb = FOLDER_BROWSER (user_data);
        MessageList *ml = fb->message_list;
    ETableScrolled *scrolled;
    
    if (ml->folder == NULL)
        return;
    
    scrolled = E_TABLE_SCROLLED (ml->etable);
    e_table_select_all (scrolled->table);
}

void
invert_selection (BonoboUIHandler *uih, void *user_data, const char *path)
{
    FolderBrowser *fb = FOLDER_BROWSER (user_data);
        MessageList *ml = fb->message_list;
    ETableScrolled *scrolled;
    
    if (ml->folder == NULL)
        return;
    
    scrolled = E_TABLE_SCROLLED (ml->etable);
    e_table_invert_selection (scrolled->table);
}

void
mark_as_seen (BonoboUIHandler *uih, void *user_data, const char *path)
{
        FolderBrowser *fb = FOLDER_BROWSER(user_data);
        MessageList *ml = fb->message_list;
    GPtrArray *uids;
    
    if (ml->folder == NULL)
        return;
    
    uids = g_ptr_array_new ();
    message_list_foreach (ml, enumerate_msg, uids);
    mail_do_flag_messages (ml->folder, uids, FALSE,
                   CAMEL_MESSAGE_SEEN, CAMEL_MESSAGE_SEEN);
}

void
mark_as_unseen (BonoboUIHandler *uih, void *user_data, const char *path)
{
        FolderBrowser *fb = FOLDER_BROWSER(user_data);
        MessageList *ml = fb->message_list;
    GPtrArray *uids;
    
    if (ml->folder == NULL)
        return;
    
    uids = g_ptr_array_new ();
    message_list_foreach (ml, enumerate_msg, uids);
    mail_do_flag_messages (ml->folder, uids, FALSE,
                   CAMEL_MESSAGE_SEEN, 0);
}
                   
void
edit_msg (GtkWidget *widget, gpointer user_data)
{
    FolderBrowser *fb = FOLDER_BROWSER (user_data);
    GPtrArray *uids;
    extern CamelFolder *drafts_folder;
    
    if (fb->folder != drafts_folder) {
        GtkWidget *message;
        
        message = gnome_warning_dialog (_("You may only edit messages saved\n"
                          "in the Drafts folder."));
        gnome_dialog_run_and_close (GNOME_DIALOG (message));
        return;
    }
    
    if (!check_send_configuration (fb))
        return;
    
    uids = g_ptr_array_new();
    message_list_foreach (fb->message_list, enumerate_msg, uids);
    
    /* FIXME: do we need to pass the postpone callback too? */
    mail_do_edit_messages (fb->folder, uids, (GtkSignalFunc) composer_send_cb);
}

void
delete_msg (GtkWidget *button, gpointer user_data)
{
    FolderBrowser *fb = user_data;
    MessageList *ml = fb->message_list;
    GPtrArray *uids;
    
    uids = g_ptr_array_new ();
    message_list_foreach (ml, enumerate_msg, uids);

    /*
     * Toggling a flag is an "instantaneous" operation, so if
     * we're only doing one, just do it and return, rather than
     * queueing it for the other thread. This makes the "Delete"
     * key work correctly (move to the next message) again.
     * - Dan
     */
    if (uids->len == 1) {
        guint32 flags;
        char *uid = uids->pdata[0];
        
        mail_tool_camel_lock_up ();
        flags = camel_folder_get_message_flags (ml->folder, uid);
        camel_folder_set_message_flags (ml->folder, uid,
                        CAMEL_MESSAGE_DELETED,
                        ~flags);
        mail_tool_camel_lock_down ();
    } else {
        mail_do_flag_messages (ml->folder, uids, TRUE,
                       CAMEL_MESSAGE_DELETED,
                       CAMEL_MESSAGE_DELETED);
    }
}

void
expunge_folder (BonoboUIHandler *uih, void *user_data, const char *path)
{
    FolderBrowser *fb = FOLDER_BROWSER(user_data);
    
    e_table_model_pre_change (fb->message_list->table_model);
    
    if (fb->message_list->folder)
        mail_do_expunge_folder (fb->message_list->folder);
}

static void
filter_druid_clicked (GtkWidget *w, int button, FolderBrowser *fb)
{
    FilterContext *fc;
    
    if (button == 0) {
        char *user;
        
        fc = gtk_object_get_data (GTK_OBJECT (w), "context");
        user = g_strdup_printf ("%s/filters.xml", evolution_dir);
        rule_context_save ((RuleContext *)fc, user);
        g_free (user);
    }
    
    if (button != -1) {
        gnome_dialog_close (GNOME_DIALOG (w));
    }
}

void
filter_edit (BonoboUIHandler *uih, void *user_data, const char *path)
{
    FolderBrowser *fb = FOLDER_BROWSER (user_data);
    FilterContext *fc;
    char *user, *system;
    GtkWidget *w;
    
    fc = filter_context_new();
    user = g_strdup_printf ("%s/filters.xml", evolution_dir);
    system = g_strdup_printf ("%s/evolution/filtertypes.xml", EVOLUTION_DATADIR);
    rule_context_load ((RuleContext *)fc, system, user, NULL, NULL);
    g_free (user);
    g_free (system);
    
    if (((RuleContext *)fc)->error) {
        GtkWidget *dialog;
        gchar *err;
        
        err = g_strdup_printf (_("Error loading filter information:\n"
                     "%s"), ((RuleContext *)fc)->error);
        dialog = gnome_warning_dialog (err);
        g_free (err);
        
        gnome_dialog_run_and_close (GNOME_DIALOG (dialog));
        return;
    }
    
    w = filter_editor_construct (fc);
    gtk_object_set_data_full (GTK_OBJECT (w), "context", fc, (GtkDestroyNotify)gtk_object_unref);
    gtk_signal_connect (GTK_OBJECT (w), "clicked", filter_druid_clicked, fb);
    gtk_widget_show (GTK_WIDGET (w));
}

void
vfolder_edit_vfolders (BonoboUIHandler *uih, void *user_data, const char *path)
{
        void vfolder_edit(void);
    
        vfolder_edit();
}

void
providers_config (BonoboUIHandler *uih, void *user_data, const char *path)
{
    mail_config ((FOLDER_BROWSER (user_data))->shell);
}

/*
 * FIXME: This routine could be made generic, by having a closure
 * function plus data, and having the whole process be taken care
 * of for you
 */
static void
do_mail_print (MailDisplay *md, gboolean preview)
{
    GnomePrintContext *print_context;
    GnomePrintMaster *print_master;
    GnomePrintDialog *gpd;
    GnomePrinter *printer = NULL;
    int copies = 1;
    int collate = FALSE;

    if (!preview){

        gpd = GNOME_PRINT_DIALOG (
            gnome_print_dialog_new (_("Print Message"), GNOME_PRINT_DIALOG_COPIES));
        gnome_dialog_set_default (GNOME_DIALOG (gpd), GNOME_PRINT_PRINT);

        switch (gnome_dialog_run (GNOME_DIALOG (gpd))){
        case GNOME_PRINT_PRINT:
            break;
            
        case GNOME_PRINT_PREVIEW:
            preview = TRUE;
            break;

        case -1:
            return;

        default:
            gnome_dialog_close (GNOME_DIALOG (gpd));
            return;
        }

        gnome_print_dialog_get_copies (gpd, &copies, &collate);
        printer = gnome_print_dialog_get_printer (gpd);
        gnome_dialog_close (GNOME_DIALOG (gpd));
    }

    print_master = gnome_print_master_new ();

/*  FIXME: set paper size gnome_print_master_set_paper (print_master,  */

    if (printer)
        gnome_print_master_set_printer (print_master, printer);
    gnome_print_master_set_copies (print_master, copies, collate);
    print_context = gnome_print_master_get_context (print_master);
    gtk_html_print (md->html, print_context);
    gnome_print_master_close (print_master);

    if (preview){
        gboolean landscape = FALSE;
        GnomePrintMasterPreview *preview;
        
        preview = gnome_print_master_preview_new_with_orientation (
            print_master, _("Print Preview"), landscape);
        gtk_widget_show (GTK_WIDGET (preview));
    } else {
        int result = gnome_print_master_print (print_master);

        if (result == -1){
            e_notice (NULL, GNOME_MESSAGE_BOX_ERROR,
                  _("Printing of message failed"));
        }
    }
    gtk_object_unref (GTK_OBJECT (print_master));
}

void
mail_print_preview_msg (MailDisplay *md)
{
    do_mail_print (md, TRUE);
}

void
mail_print_msg (MailDisplay *md)
{
    do_mail_print (md, FALSE);
}

void
print_msg (GtkWidget *button, gpointer user_data)
{
    FolderBrowser *fb = user_data;

    mail_print_msg (fb->mail_display);
}

void
print_preview_msg (GtkWidget *button, gpointer user_data)
{
    FolderBrowser *fb = user_data;

    mail_print_preview_msg (fb->mail_display);
}

void
manage_subscriptions (BonoboUIHandler *uih, void *user_data, const char *path)
{
    /* XXX pass in the selected storage */
    GtkWidget *subscribe = subscribe_dialog_new ((FOLDER_BROWSER (user_data))->shell);

    gtk_widget_show (subscribe);
}

void
configure_folder(BonoboUIHandler *uih, void *user_data, const char *path)
{
    FolderBrowser *fb = FOLDER_BROWSER(user_data);
    
    local_reconfigure_folder(fb);
}

void
view_msg (GtkWidget *widget, gpointer user_data)
{
    FolderBrowser *fb = user_data;
    GPtrArray *uids;
    
    if (!fb->folder)
        return;
    
    uids = g_ptr_array_new ();
    message_list_foreach (fb->message_list, enumerate_msg, uids);
    mail_do_view_messages (fb->folder, uids, fb);
}

void
view_message (BonoboUIHandler *uih, void *user_data, const char *path)
{
        view_msg (NULL, user_data);
}

void
edit_message (BonoboUIHandler *uih, void *user_data, const char *path)
{
        edit_msg (NULL, user_data);
}

void
run_filter_ondemand (BonoboUIHandler *uih, gpointer user_data, const char *path)
{
    struct fb_ondemand_closure *oc = (struct fb_ondemand_closure *) user_data;
    
    if (oc->fb->folder == NULL)
        return;
    
    mail_do_filter_ondemand (oc->fb->filter_context, oc->fb->folder, oc->fb->folder);
}
871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973 5974 5975 5976 5977 5978 5979 5980 5981 5982 5983 5984 5985 5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016 6017 6018 6019 6020 6021 6022 6023 6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084 6085 6086 6087 6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 6099 6100 6101 6102 6103 6104 6105 6106 6107 6108 6109 6110 6111 6112 6113 6114 6115 6116 6117 6118 6119 6120 6121 6122 6123 6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 6138 6139 6140 6141 6142 6143 6144 6145 6146 6147 6148 6149 6150 6151 6152 6153 6154 6155 6156 6157 6158 6159 6160 6161 6162 6163 6164 6165 6166 6167 6168 6169 6170 6171 6172 6173 6174 6175 6176 6177 6178 6179 6180 6181 6182 6183 6184 6185 6186 6187 6188 6189 6190 6191 6192 6193 6194 6195 6196 6197 6198 6199 6200 6201 6202 6203 6204 6205 6206 6207 6208 6209 6210 6211 6212 6213 6214 6215 6216 6217 6218 6219 6220 6221 6222 6223 6224 6225 6226 6227 6228 6229 6230 6231 6232 6233 6234 6235 6236 6237 6238 6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 6249 6250 6251 6252 6253 6254 6255 6256 6257 6258 6259 6260 6261 6262 6263 6264 6265 6266 6267 6268 6269 6270 6271 6272 6273 6274 6275 6276 6277 6278 6279 6280 6281 6282 6283 6284 6285 6286 6287 6288 6289 6290 6291 6292 6293 6294 6295 6296 6297 6298 6299 6300 6301 6302 6303 6304 6305 6306 6307 6308 6309 6310 6311 6312 6313 6314 6315 6316 6317 6318 6319 6320 6321 6322 6323 6324 6325 6326 6327 6328 6329 6330 6331 6332 6333 6334 6335 6336 6337 6338 6339 6340 6341 6342 6343 6344 6345 6346 6347 6348 6349 6350 6351 6352 6353 6354 6355 6356 6357 6358 6359 6360 6361 6362 6363 6364 6365 6366 6367 6368 6369 6370 6371 6372 6373 6374 6375 6376 6377 6378 6379 6380 6381 6382 6383 6384 6385 6386 6387 6388 6389 6390 6391 6392 6393 6394 6395 6396 6397 6398 6399 6400 6401 6402 6403 6404 6405 6406 6407 6408 6409 6410 6411 6412 6413 6414 6415 6416 6417 6418 6419 6420 6421 6422 6423 6424 6425 6426 6427 6428 6429 6430 6431 6432 6433 6434 6435 6436 6437 6438 6439 6440 6441 6442 6443 6444 6445 6446 6447 6448 6449 6450 6451 6452 6453 6454 6455 6456 6457 6458 6459 6460 6461 6462 6463 6464 6465 6466 6467 6468 6469 6470 6471 6472 6473 6474 6475 6476 6477 6478 6479 6480 6481 6482 6483 6484 6485 6486 6487 6488 6489 6490 6491 6492 6493 6494 6495 6496 6497 6498 6499 6500 6501 6502 6503 6504 6505 6506 6507 6508 6509 6510 6511 6512 6513 6514 6515 6516 6517 6518 6519 6520 6521 6522 6523 6524 6525 6526 6527 6528 6529 6530 6531 6532 6533 6534 6535 6536 6537 6538 6539 6540 6541 6542 6543 6544 6545 6546 6547 6548 6549 6550 6551 6552 6553 6554 6555 6556 6557 6558 6559 6560 6561 6562 6563 6564 6565 6566 6567 6568 6569 6570 6571 6572 6573 6574 6575 6576 6577 6578 6579 6580 6581 6582 6583 6584 6585 6586 6587 6588 6589 6590 6591 6592 6593 6594 6595 6596 6597 6598 6599 6600 6601 6602 6603 6604 6605 6606 6607 6608 6609 6610 6611 6612 6613 6614 6615 6616 6617 6618 6619 6620 6621 6622 6623 6624 6625 6626 6627 6628 6629 6630 6631 6632 6633 6634 6635 6636 6637 6638 6639 6640 6641 6642 6643 6644 6645 6646 6647 6648 6649 6650 6651 6652 6653 6654 6655 6656 6657 6658 6659 6660 6661 6662 6663 6664 6665 6666 6667 6668 6669 6670 6671 6672 6673 6674 6675 6676 6677 6678 6679 6680 6681 6682 6683 6684 6685 6686 6687 6688 6689 6690 6691 6692 6693 6694 6695 6696 6697 6698 6699 6700 6701 6702 6703 6704 6705 6706 6707 6708 6709 6710 6711 6712 6713 6714 6715 6716 6717 6718 6719 6720 6721 6722 6723 6724 6725 6726 6727 6728 6729 6730 6731 6732 6733 6734 6735 6736 6737 6738 6739 6740 6741 6742 6743 6744 6745 6746 6747 6748 6749 6750 6751 6752 6753 6754 6755 6756 6757 6758 6759 6760 6761 6762 6763 6764 6765 6766 6767 6768 6769 6770 6771 6772 6773 6774 6775 6776 6777 6778 6779 6780 6781 6782 6783 6784 6785 6786 6787 6788 6789 6790 6791 6792 6793 6794 6795 6796 6797 6798 6799 6800 6801 6802 6803 6804 6805 6806 6807 6808 6809 6810 6811 6812 6813 6814 6815 6816 6817 6818 6819 6820 6821 6822 6823 6824 6825 6826 6827 6828 6829 6830 6831 6832 6833 6834 6835 6836 6837 6838 6839 6840 6841 6842 6843 6844 6845 6846 6847 6848 6849 6850 6851 6852 6853 6854 6855 6856 6857 6858 6859 6860 6861 6862 6863 6864 6865 6866 6867 6868 6869 6870 6871 6872 6873 6874 6875 6876 6877 6878 6879 6880 6881 6882 6883 6884 6885 6886 6887 6888 6889 6890 6891 6892 6893 6894 6895 6896 6897 6898 6899 6900 6901 6902 6903 6904 6905 6906 6907 6908 6909 6910 6911 6912 6913 6914 6915 6916 6917 6918 6919 6920 6921 6922 6923 6924 6925 6926 6927 6928 6929 6930 6931 6932 6933 6934 6935 6936 6937 6938 6939 6940 6941 6942 6943 6944 6945 6946 6947 6948 6949 6950 6951 6952 6953 6954 6955 6956 6957 6958 6959 6960 6961 6962 6963 6964 6965 6966 6967 6968 6969 6970 6971 6972 6973 6974 6975 6976 6977 6978 6979 6980 6981 6982 6983 6984 6985 6986 6987 6988 6989 6990 6991 6992 6993 6994 6995 6996 6997 6998 6999 7000 7001 7002 7003 7004 7005 7006 7007 7008 7009 7010 7011 7012 7013 7014 7015 7016 7017 7018 7019 7020 7021 7022 7023 7024 7025 7026 7027 7028 7029 7030 7031 7032 7033 7034 7035 7036 7037 7038 7039 7040 7041 7042 7043 7044 7045 7046 7047 7048 7049 7050 7051 7052 7053 7054 7055 7056 7057 7058 7059 7060 7061 7062 7063 7064 7065 7066 7067 7068 7069 7070 7071 7072 7073 7074 7075 7076 7077 7078 7079 7080 7081 7082 7083 7084 7085 7086 7087 7088 7089 7090 7091 7092 7093 7094 7095 7096 7097 7098 7099 7100 7101 7102 7103 7104 7105 7106 7107 7108 7109 7110 7111 7112 7113 7114 7115 7116 7117 7118 7119 7120 7121 7122 7123 7124 7125 7126 7127 7128 7129 7130 7131 7132 7133 7134 7135 7136 7137 7138 7139 7140 7141 7142 7143 7144 7145 7146 7147 7148 7149 7150 7151 7152 7153 7154 7155 7156 7157 7158 7159 7160 7161 7162 7163 7164 7165 7166 7167 7168 7169 7170 7171 7172 7173 7174 7175 7176 7177 7178 7179 7180 7181 7182 7183 7184 7185 7186 7187 7188 7189 7190 7191 7192 7193 7194 7195 7196 7197 7198 7199 7200 7201 7202 7203 7204 7205 7206 7207 7208 7209 7210 7211 7212 7213 7214 7215 7216 7217 7218 7219 7220 7221 7222 7223 7224 7225 7226 7227 7228 7229 7230 7231 7232 7233 7234 7235 7236 7237 7238 7239 7240 7241 7242 7243 7244 7245 7246 7247 7248 7249 7250 7251 7252 7253 7254 7255 7256 7257 7258 7259 7260 7261 7262 7263 7264 7265 7266 7267 7268 7269 7270 7271 7272 7273 7274 7275 7276 7277 7278 7279 7280 7281 7282 7283 7284 7285 7286 7287 7288 7289 7290 7291 7292 7293 7294 7295 7296 7297 7298 7299 7300 7301 7302 7303 7304 7305 7306 7307 7308 7309 7310 7311 7312 7313 7314 7315 7316 7317 7318 7319 7320 7321 7322 7323 7324 7325 7326 7327 7328 7329 7330 7331 7332 7333 7334 7335 7336 7337 7338 7339 7340 7341 7342 7343 7344 7345 7346 7347 7348 7349 7350 7351 7352 7353 7354 7355 7356 7357 7358 7359 7360 7361 7362 7363 7364 7365 7366 7367 7368 7369 7370 7371 7372 7373 7374 7375 7376 7377 7378 7379 7380 7381 7382 7383 7384 7385 7386 7387 7388 7389 7390 7391 7392 7393 7394 7395 7396 7397 7398 7399 7400 7401 7402 7403 7404 7405 7406 7407 7408 7409 7410 7411 7412 7413 7414 7415 7416 7417 7418 7419 7420 7421 7422 7423 7424 7425 7426 7427 7428 7429 7430 7431 7432 7433 7434 7435 7436 7437 7438 7439 7440 7441 7442 7443 7444 7445 7446 7447 7448 7449 7450 7451 7452 7453 7454 7455 7456 7457 7458 7459 7460 7461 7462 7463 7464 7465 7466 7467 7468 7469 7470 7471 7472 7473 7474 7475 7476 7477 7478 7479 7480 7481 7482 7483 7484 7485 7486 7487 7488 7489 7490 7491 7492 7493 7494 7495 7496 7497 7498 7499 7500 7501 7502 7503 7504 7505 7506 7507 7508 7509 7510 7511 7512 7513 7514 7515 7516 7517 7518 7519 7520 7521 7522 7523 7524 7525 7526 7527 7528 7529 7530 7531 7532 7533 7534 7535 7536 7537 7538 7539 7540 7541 7542 7543 7544 7545 7546 7547 7548 7549 7550 7551 7552 7553 7554 7555 7556 7557 7558 7559 7560 7561 7562 7563 7564 7565 7566 7567 7568 7569 7570 7571 7572 7573 7574 7575 7576 7577 7578 7579 7580 7581 7582 7583 7584 7585 7586 7587 7588 7589 7590 7591 7592 7593 7594 7595 7596 7597 7598 7599 7600 7601 7602 7603 7604 7605 7606 7607 7608 7609 7610 7611 7612 7613 7614 7615 7616 7617 7618 7619 7620 7621 7622 7623 7624 7625 7626 7627 7628 7629 7630 7631 7632 7633 7634 7635 7636 7637 7638 7639 7640 7641 7642 7643 7644 7645 7646 7647 7648 7649 7650 7651 7652 7653 7654 7655 7656 7657 7658 7659 7660 7661 7662 7663 7664 7665 7666 7667 7668 7669 7670 7671 7672 7673 7674 7675 7676 7677 7678 7679 7680 7681 7682 7683 7684 7685 7686 7687 7688 7689 7690 7691 7692 7693 7694 7695 7696 7697 7698 7699 7700 7701 7702 7703 7704 7705 7706 7707 7708 7709 7710 7711 7712 7713 7714 7715 7716 7717 7718 7719 7720 7721 7722 7723 7724 7725 7726 7727 7728 7729 7730 7731 7732 7733 7734 7735 7736 7737 7738 7739 7740 7741 7742 7743 7744 7745 7746 7747 7748 7749 7750 7751 7752 7753 7754 7755 7756 7757 7758 7759 7760 7761 7762 7763 7764 7765 7766 7767 7768 7769 7770 7771 7772 7773 7774 7775 7776 7777 7778 7779 7780 7781 7782 7783 7784 7785 7786 7787 7788 7789 7790 7791 7792 7793 7794 7795 7796 7797 7798 7799 7800 7801 7802 7803 7804 7805 7806 7807 7808 7809 7810 7811 7812 7813 7814 7815 7816 7817 7818 7819 7820 7821 7822 7823 7824 7825 7826 7827 7828 7829 7830 7831 7832 7833 7834 7835 7836 7837 7838 7839 7840 7841 7842 7843 7844 7845 7846 7847 7848 7849 7850 7851 7852 7853 7854 7855 7856 7857 7858 7859 7860 7861 7862 7863 7864 7865 7866 7867 7868 7869 7870 7871 7872 7873 7874 7875 7876 7877 7878 7879 7880 7881 7882 7883 7884 7885 7886 7887 7888 7889 7890 7891 7892 7893 7894 7895 7896 7897 7898 7899 7900 7901 7902 7903 7904 7905 7906 7907 7908 7909 7910 7911 7912 7913 7914 7915 7916 7917 7918 7919 7920 7921 7922 7923 7924 7925 7926 7927 7928 7929 7930 7931 7932 7933 7934 7935 7936 7937 7938 7939 7940 7941 7942 7943 7944 7945 7946 7947 7948 7949 7950 7951 7952 7953 7954 7955 7956 7957 7958 7959 7960 7961 7962 7963 7964 7965 7966 7967 7968 7969 7970 7971 7972 7973 7974 7975 7976 7977 7978 7979 7980 7981 7982 7983 7984 7985 7986 7987 7988 7989 7990 7991 7992 7993 7994 7995 7996 7997 7998 7999 8000 8001 8002 8003 8004 8005 8006 8007 8008 8009 8010 8011 8012 8013 8014 8015 8016 8017 8018 8019 8020 8021 8022 8023 8024 8025 8026 8027 8028 8029 8030 8031 8032 8033 8034 8035 8036 8037 8038 8039 8040 8041 8042 8043 8044 8045 8046 8047 8048 8049 8050 8051 8052 8053 8054 8055 8056 8057 8058 8059 8060 8061 8062 8063 8064 8065 8066 8067 8068 8069 8070 8071 8072 8073 8074 8075 8076 8077 8078 8079 8080 8081 8082 8083 8084 8085 8086 8087 8088 8089 8090 8091 8092 8093 8094 8095 8096 8097 8098 8099 8100 8101 8102 8103 8104 8105 8106 8107 8108 8109 8110 8111 8112 8113 8114 8115 8116 8117 8118 8119 8120 8121 8122 8123 8124 8125 8126 8127 8128 8129 8130 8131 8132 8133 8134 8135 8136 8137 8138 8139 8140 8141 8142 8143 8144 8145 8146 8147 8148 8149 8150 8151 8152 8153 8154 8155 8156 8157 8158 8159 8160 8161 8162 8163 8164 8165 8166 8167 8168 8169 8170 8171 8172 8173 8174 8175 8176 8177 8178 8179 8180 8181 8182 8183 8184 8185 8186 8187 8188 8189 8190 8191 8192 8193 8194 8195 8196 8197 8198 8199 8200 8201 8202 8203 8204 8205 8206 8207 8208 8209 8210 8211 8212 8213 8214 8215 8216 8217 8218 8219 8220 8221 8222 8223 8224 8225 8226 8227 8228 8229 8230 8231 8232 8233 8234 8235 8236 8237 8238 8239 8240 8241 8242 8243 8244 8245 8246 8247 8248 8249 8250 8251 8252 8253 8254 8255 8256 8257 8258 8259 8260 8261 8262 8263 8264 8265 8266 8267 8268 8269 8270 8271 8272 8273 8274 8275 8276 8277 8278 8279 8280 8281 8282 8283 8284 8285 8286 8287 8288 8289 8290 8291 8292 8293 8294 8295 8296 8297 8298 8299 8300 8301 8302 8303 8304 8305 8306 8307 8308 8309 8310 8311 8312 8313 8314 8315 8316 8317 8318 8319 8320 8321 8322 8323 8324 8325 8326 8327 8328 8329 8330 8331 8332 8333 8334 8335 8336 8337 8338 8339 8340 8341 8342 8343 8344 8345 8346 8347 8348 8349 8350 8351 8352 8353 8354 8355 8356 8357 8358 8359 8360 8361 8362 8363 8364 8365 8366 8367 8368 8369 8370 8371 8372 8373 8374 8375 8376 8377 8378 8379 8380 8381 8382 8383 8384 8385 8386 8387 8388 8389 8390 8391 8392 8393 8394 8395 8396 8397 8398 8399 8400 8401 8402 8403 8404 8405 8406 8407 8408 8409 8410 8411 8412 8413 8414 8415 8416 8417 8418 8419 8420 8421 8422 8423 8424 8425 8426 8427 8428 8429 8430 8431 8432 8433 8434 8435 8436 8437 8438 8439 8440 8441 8442 8443 8444 8445 8446 8447 8448 8449 8450 8451 8452 8453 8454 8455 8456 8457 8458 8459 8460 8461 8462 8463 8464 8465 8466 8467 8468 8469 8470 8471 8472 8473 8474 8475 8476 8477 8478 8479 8480 8481 8482 8483 8484 8485 8486 8487 8488 8489 8490 8491 8492 8493 8494 8495 8496 8497 8498 8499 8500 8501 8502 8503 8504 8505 8506 8507 8508 8509 8510 8511 8512 8513 8514 8515 8516 8517 8518 8519 8520 8521 8522 8523 8524 8525 8526 8527 8528 8529 8530 8531 8532 8533 8534 8535 8536 8537 8538 8539 8540 8541 8542 8543 8544 8545 8546 8547 8548 8549 8550 8551 8552 8553 8554 8555 8556 8557 8558 8559 8560 8561 8562 8563 8564 8565 8566 8567 8568 8569 8570 8571 8572 8573 8574 8575 8576 8577 8578 8579 8580 8581 8582 8583 8584 8585 8586 8587 8588 8589 8590 8591 8592 8593 8594 8595 8596 8597 8598 8599 8600 8601 8602 8603 8604 8605 8606 8607 8608 8609 8610 8611 8612 8613 8614 8615 8616 8617 8618 8619 8620 8621 8622 8623 8624 8625 8626 8627 8628 8629 8630 8631 8632 8633 8634 8635 8636 8637 8638 8639 8640 8641 8642 8643 8644 8645 8646 8647 8648 8649 8650 8651 8652 8653 8654 8655 8656 8657 8658 8659 8660 8661 8662 8663 8664 8665 8666 8667 8668 8669 8670 8671 8672 8673 8674 8675 8676 8677 8678 8679 8680 8681 8682 8683 8684 8685 8686 8687 8688 8689 8690 8691 8692 8693 8694 8695 8696 8697 8698 8699 8700 8701 8702 8703 8704 8705 8706 8707 8708 8709 8710 8711 8712 8713 8714 8715 8716 8717 8718 8719 8720 8721 8722 8723 8724 8725 8726 8727 8728 8729 8730 8731 8732 8733 8734 8735 8736 8737 8738 8739 8740 8741 8742 8743 8744 8745 8746 8747 8748 8749 8750 8751 8752 8753 8754 8755 8756 8757 8758 8759 8760 8761 8762 8763 8764 8765 8766 8767 8768 8769 8770 8771 8772 8773 8774 8775 8776 8777 8778 8779 8780 8781 8782 8783 8784 8785 8786 8787 8788 8789 8790 8791 8792 8793 8794 8795 8796 8797 8798 8799 8800 8801 8802 8803 8804 8805 8806 8807 8808 8809 8810 8811 8812 8813 8814 8815 8816 8817 8818 8819 8820 8821 8822 8823 8824 8825 8826 8827 8828 8829 8830 8831 8832 8833 8834 8835 8836 8837 8838 8839 8840 8841 8842 8843 8844 8845 8846 8847 8848 8849 8850 8851 8852 8853 8854 8855 8856 8857 8858 8859 8860 8861 8862 8863 8864 8865 8866 8867 8868 8869 8870 8871 8872 8873 8874 8875 8876 8877 8878 8879 8880 8881 8882 8883 8884 8885 8886 8887 8888 8889 8890 8891 8892 8893 8894 8895 8896 8897 8898 8899 8900 8901 8902 8903 8904 8905 8906 8907 8908 8909 8910 8911 8912 8913 8914 8915 8916 8917 8918 8919 8920 8921 8922 8923 8924 8925 8926 8927 8928 8929 8930 8931 8932 8933 8934 8935 8936 8937 8938 8939 8940 8941 8942 8943 8944 8945 8946 8947 8948 8949 8950 8951 8952 8953 8954 8955 8956 8957 8958 8959 8960 8961 8962 8963 8964 8965 8966 8967 8968 8969 8970 8971 8972 8973 8974 8975 8976 8977 8978 8979 8980 8981 8982 8983 8984 8985 8986 8987 8988 8989 8990 8991 8992 8993 8994 8995 8996 8997 8998 8999 9000 9001 9002 9003 9004 9005 9006 9007 9008 9009 9010 9011 9012 9013 9014 9015 9016 9017 9018 9019 9020 9021 9022 9023 9024 9025 9026 9027 9028 9029 9030 9031 9032 9033 9034 9035 9036 9037 9038 9039 9040 9041 9042 9043 9044 9045 9046 9047 9048 9049 9050 9051 9052 9053 9054 9055 9056 9057 9058 9059 9060 9061 9062 9063 9064 9065 9066 9067 9068 9069 9070 9071 9072 9073 9074 9075 9076 9077 9078 9079 9080 9081 9082 9083 9084 9085 9086 9087 9088 9089 9090 9091 9092 9093 9094 9095 9096 9097 9098 9099 9100 9101 9102 9103 9104 9105 9106 9107 9108 9109 9110 9111 9112 9113 9114 9115 9116 9117 9118 9119 9120 9121 9122 9123 9124 9125 9126 9127 9128 9129 9130 9131 9132 9133 9134 9135 9136 9137 9138 9139 9140 9141 9142 9143 9144 9145 9146 9147 9148 9149 9150 9151 9152 9153 9154 9155 9156 9157 9158 9159 9160 9161 9162 9163 9164 9165 9166 9167 9168 9169 9170 9171 9172 9173 9174 9175 9176 9177 9178 9179 9180 9181 9182 9183 9184 9185 9186 9187 9188 9189 9190 9191 9192 9193 9194 9195 9196 9197 9198 9199 9200 9201 9202 9203 9204 9205 9206 9207 9208 9209 9210 9211 9212 9213 9214 9215 9216 9217 9218 9219 9220 9221 9222 9223 9224 9225 9226 9227 9228 9229 9230 9231 9232 9233 9234 9235 9236 9237 9238 9239 9240 9241 9242 9243 9244 9245 9246 9247 9248 9249 9250 9251 9252 9253 9254 9255 9256 9257 9258 9259 9260 9261 9262 9263 9264 9265 9266 9267 9268 9269 9270 9271 9272 9273 9274 9275 9276 9277 9278 9279 9280 9281 9282 9283 9284 9285 9286 9287 9288 9289 9290 9291 9292 9293 9294 9295 9296 9297 9298 9299 9300 9301 9302 9303 9304 9305 9306 9307 9308 9309 9310 9311 9312 9313 9314 9315 9316 9317 9318 9319 9320 9321 9322 9323 9324 9325 9326 9327 9328 9329 9330 9331 9332 9333 9334 9335 9336 9337 9338 9339 9340 9341 9342 9343 9344 9345 9346 9347 9348 9349 9350 9351 9352 9353 9354 9355 9356 9357 9358 9359 9360 9361 9362 9363 9364 9365 9366 9367 9368 9369 9370 9371 9372 9373 9374 9375 9376 9377 9378 9379 9380 9381 9382 9383 9384 9385 9386 9387 9388 9389 9390 9391 9392 9393 9394 9395 9396 9397 9398 9399 9400 9401 9402 9403 9404 9405 9406 9407 9408 9409 9410 9411 9412 9413 9414 9415 9416 9417 9418 9419 9420 9421 9422 9423 9424 9425 9426 9427 9428 9429 9430 9431 9432 9433 9434 9435 9436 9437 9438 9439 9440 9441 9442 9443 9444 9445 9446 9447 9448 9449 9450 9451 9452 9453 9454 9455 9456 9457 9458 9459 9460 9461 9462 9463 9464 9465 9466 9467 9468 9469 9470 9471 9472 9473 9474 9475 9476 9477 9478 9479 9480 9481 9482 9483 9484 9485 9486 9487 9488 9489 9490 9491 9492 9493 9494 9495 9496 9497 9498 9499 9500 9501 9502 9503 9504 9505 9506 9507 9508 9509 9510 9511 9512 9513 9514 9515 9516 9517 9518 9519 9520 9521 9522 9523 9524 9525 9526 9527 9528 9529 9530 9531 9532 9533 9534 9535 9536 9537 9538 9539 9540 9541 9542 9543 9544 9545 9546 9547 9548 9549 9550 9551 9552 9553 9554 9555 9556 9557 9558 9559 9560 9561 9562 9563 9564 9565 9566 9567 9568 9569 9570 9571 9572 9573 9574 9575 9576 9577 9578 9579 9580 9581 9582 9583 9584 9585 9586 9587 9588 9589 9590 9591 9592 9593 9594 9595 9596 9597 9598 9599 9600 9601 9602 9603 9604 9605 9606 9607 9608 9609 9610 9611 9612 9613 9614 9615 9616 9617 9618 9619 9620 9621 9622 9623 9624 9625 9626 9627 9628 9629 9630 9631 9632 9633 9634 9635 9636 9637 9638 9639 9640 9641 9642 9643 9644 9645 9646 9647 9648 9649 9650 9651 9652 9653 9654 9655 9656 9657 9658 9659 9660 9661 9662 9663 9664 9665 9666 9667 9668 9669 9670 9671 9672 9673 9674 9675 9676 9677 9678 9679 9680 9681 9682 9683 9684 9685 9686 9687 9688 9689 9690 9691 9692 9693 9694 9695 9696 9697 9698 9699 9700 9701 9702 9703 9704 9705 9706 9707 9708 9709 9710 9711 9712 9713 9714 9715 9716 9717 9718 9719 9720 9721 9722 9723 9724 9725 9726 9727 9728 9729 9730 9731 9732 9733 9734 9735 9736 9737 9738 9739 9740 9741 9742 9743 9744 9745 9746 9747 9748 9749 9750 9751 9752 9753 9754 9755 9756 9757 9758 9759 9760 9761 9762 9763 9764 9765 9766 9767 9768 9769 9770 9771 9772 9773 9774 9775 9776 9777 9778 9779 9780 9781 9782 9783 9784 9785 9786 9787 9788 9789 9790 9791 9792 9793 9794 9795 9796 9797 9798 9799 9800 9801 9802 9803 9804 9805 9806 9807 9808 9809 9810 9811 9812 9813 9814 9815 9816 9817 9818 9819 9820 9821 9822 9823 9824 9825 9826 9827 9828 9829 9830 9831 9832 9833 9834 9835 9836 9837 9838 9839 9840 9841 9842 9843 9844 9845 9846 9847 9848 9849 9850 9851 9852 9853 9854 9855 9856 9857 9858 9859 9860 9861 9862 9863 9864 9865 9866 9867 9868 9869 9870 9871 9872 9873 9874 9875 9876 9877 9878 9879 9880 9881 9882 9883 9884 9885 9886 9887 9888 9889 9890 9891 9892 9893 9894 9895 9896 9897 9898 9899 9900 9901 9902 9903 9904 9905 9906 9907 9908 9909 9910 9911 9912 9913 9914 9915 9916 9917 9918 9919 9920 9921 9922 9923 9924 9925 9926 9927 9928 9929 9930 9931 9932 9933 9934 9935 9936 9937 9938 9939 9940 9941 9942 9943 9944 9945 9946 9947 9948 9949 9950 9951 9952 9953 9954 9955 9956 9957 9958 9959 9960 9961 9962 9963 9964 9965 9966 9967 9968 9969 9970 9971 9972 9973 9974 9975 9976 9977 9978 9979 9980 9981 9982 9983 9984 9985 9986 9987 9988 9989 9990 9991 9992 9993 9994 9995 9996 9997 9998 9999 10000 10001 10002 10003 10004 10005 10006 10007 10008 10009 10010 10011 10012 10013 10014 10015 10016 10017 10018 10019 10020 10021 10022 10023 10024 10025 10026 10027 10028 10029 10030 10031 10032 10033 10034 10035 10036 10037 10038 10039 10040 10041 10042 10043 10044 10045 10046 10047 10048 10049 10050 10051 10052 10053 10054 10055 10056 10057 10058 10059 10060 10061 10062 10063 10064 10065 10066 10067 10068 10069 10070 10071 10072 10073 10074 10075 10076 10077 10078 10079 10080 10081 10082 10083 10084 10085 10086 10087 10088 10089 10090 10091 10092 10093 10094 10095 10096 10097 10098 10099 10100 10101 10102 10103 10104 10105 10106 10107 10108 10109 10110 10111 10112 10113 10114 10115 10116 10117 10118 10119 10120 10121 10122 10123 10124 10125 10126 10127 10128 10129 10130 10131 10132 10133 10134 10135 10136 10137 10138 10139 10140 10141 10142 10143 10144 10145 10146 10147 10148 10149 10150 10151 10152 10153 10154 10155 10156 10157 10158 10159 10160 10161 10162 10163 10164 10165 10166 10167 10168 10169 10170 10171 10172 10173 10174 10175 10176 10177 10178 10179 10180 10181 10182 10183 10184 10185 10186 10187 10188 10189 10190 10191 10192 10193 10194 10195 10196 10197 10198 10199 10200 10201 10202 10203 10204 10205 10206 10207 10208 10209 10210 10211 10212 10213 10214 10215 10216 10217 10218 10219 10220 10221 10222 10223 10224 10225 10226 10227 10228 10229 10230 10231 10232 10233 10234 10235 10236 10237 10238 10239 10240 10241 10242 10243 10244 10245 10246 10247 10248 10249 10250 10251 10252 10253 10254 10255 10256 10257 10258 10259 10260 10261 10262 10263 10264 10265 10266 10267 10268 10269 10270 10271 10272 10273 10274 10275 10276 10277 10278 10279 10280 10281 10282 10283 10284 10285 10286 10287 10288 10289 10290 10291 10292 10293 10294 10295 10296 10297 10298 10299 10300 10301 10302 10303 10304 10305 10306 10307 10308 10309 10310 10311 10312 10313 10314 10315 10316 10317 10318 10319 10320 10321 10322 10323 10324 10325 10326 10327 10328 10329 10330 10331 10332 10333 10334 10335 10336 10337 10338 10339 10340 10341 10342 10343 10344 10345 10346 10347 10348 10349 10350 10351 10352 10353 10354 10355 10356 10357 10358 10359 10360 10361 10362 10363 10364 10365 10366 10367 10368 10369 10370 10371 10372 10373 10374 10375 10376 10377 10378 10379 10380 10381 10382 10383 10384 10385 10386 10387 10388 10389 10390 10391 10392 10393 10394 10395 10396 10397 10398 10399 10400 10401 10402 10403 10404 10405 10406 10407 10408 10409 10410 10411 10412 10413 10414 10415 10416 10417 10418 10419 10420 10421 10422 10423 10424 10425 10426 10427 10428 10429 10430 10431 10432 10433 10434 10435 10436 10437 10438 10439 10440 10441 10442 10443 10444 10445 10446 10447 10448 10449 10450 10451 10452 10453 10454 10455 10456 10457 10458 10459 10460 10461 10462 10463 10464 10465 10466 10467 10468 10469 10470 10471 10472 10473 10474 10475 10476 10477 10478 10479 10480 10481 10482 10483 10484 10485 10486 10487 10488 10489 10490 10491 10492 10493 10494 10495 10496 10497 10498 10499 10500 10501 10502 10503 10504 10505 10506 10507 10508 10509 10510 10511 10512 10513 10514 10515 10516 10517 10518 10519 10520 10521 10522 10523 10524 10525 10526 10527 10528 10529 10530 10531 10532 10533 10534 10535 10536 10537 10538 10539 10540 10541 10542 10543 10544 10545 10546 10547 10548 10549 10550 10551 10552 10553 10554 10555 10556 10557 10558 10559 10560 10561 10562 10563 10564 10565 10566 10567 10568 10569 10570 10571 10572 10573 10574 10575 10576 10577 10578 10579 10580 10581 10582 10583 10584 10585 10586 10587 10588 10589 10590 10591 10592 10593 10594 10595 10596 10597 10598 10599 10600 10601 10602 10603 10604 10605 10606 10607 10608 10609 10610 10611 10612 10613 10614 10615 10616 10617 10618 10619 10620 10621 10622 10623 10624 10625 10626 10627 10628 10629 10630 10631 10632 10633 10634 10635 10636 10637 10638 10639 10640 10641 10642 10643 10644 10645 10646 10647 10648 10649 10650 10651 10652 10653 10654 10655 10656 10657 10658 10659 10660 10661 10662 10663 10664 10665 10666 10667 10668 10669 10670 10671 10672 10673 10674 10675 10676 10677 10678 10679 10680 10681 10682 10683 10684 10685 10686 10687 10688 10689 10690 10691 10692 10693 10694 10695 10696 10697 10698 10699 10700 10701 10702 10703 10704 10705 10706 10707 10708 10709 10710 10711 10712 10713 10714 10715 10716 10717 10718 10719 10720 10721 10722 10723 10724 10725 10726 10727 10728 10729 10730 10731 10732 10733 10734 10735 10736 10737 10738 10739 10740 10741 10742 10743 10744 10745 10746 10747 10748 10749 10750 10751 10752 10753 10754 10755 10756 10757 10758 10759 10760 10761 10762 10763 10764 10765 10766 10767 10768 10769 10770 10771 10772 10773 10774 10775 10776 10777 10778 10779 10780 10781 10782 10783 10784 10785 10786 10787 10788 10789 10790 10791 10792 10793 10794 10795 10796 10797 10798 10799 10800 10801 10802 10803 10804 10805 10806 10807 10808 10809 10810 10811 10812 10813 10814 10815 10816 10817 10818 10819 10820 10821 10822 10823 10824 10825 10826 10827 10828 10829 10830 10831 10832 10833 10834 10835 10836 10837 10838 10839 10840 10841 10842 10843 10844 10845 10846 10847 10848 10849 10850 10851 10852 10853 10854 10855 10856 10857 10858 10859 10860 10861 10862 10863 10864 10865 10866 10867 10868 10869 10870 10871 10872 10873 10874 10875 10876 10877 10878 10879 10880 10881 10882 10883 10884 10885 10886 10887 10888 10889 10890 10891 10892 10893 10894 10895 10896 10897 10898 10899 10900 10901 10902 10903 10904 10905 10906 10907 10908 10909 10910 10911 10912 10913 10914 10915 10916 10917 10918 10919 10920 10921 10922 10923 10924 10925 10926 10927 10928 10929 10930 10931 10932 10933 10934 10935 10936 10937 10938 10939 10940 10941 10942 10943 10944 10945 10946 10947 10948 10949 10950 10951 10952 10953 10954 10955 10956 10957 10958 10959 10960 10961 10962 10963 10964 10965 10966 10967 10968 10969 10970 10971 10972 10973 10974 10975 10976 10977 10978 10979 10980 10981 10982 10983 10984 10985 10986 10987 10988 10989 10990 10991 10992 10993 10994 10995 10996 10997 10998 10999 11000 11001 11002 11003 11004 11005 11006 11007 11008 11009 11010 11011 11012 11013 11014 11015 11016 11017 11018 11019 11020 11021 11022 11023 11024 11025 11026 11027 11028 11029 11030 11031 11032 11033 11034 11035 11036 11037 11038 11039 11040 11041 11042 11043 11044 11045 11046 11047 11048 11049 11050 11051 11052 11053 11054 11055 11056 11057 11058 11059 11060 11061 11062 11063 11064 11065 11066 11067 11068 11069 11070 11071 11072 11073 11074 11075 11076 11077 11078 11079 11080 11081 11082 11083 11084 11085 11086 11087 11088 11089 11090 11091 11092 11093 11094 11095 11096 11097 11098 11099 11100 11101 11102 11103 11104 11105 11106 11107 11108 11109 11110 11111 11112 11113 11114 11115 11116 11117 11118 11119 11120 11121 11122 11123 11124 11125 11126 11127 11128 11129 11130 11131 11132 11133 11134 11135 11136 11137 11138 11139 11140 11141 11142 11143 11144 11145 11146 11147 11148 11149 11150 11151 11152 11153 11154 11155 11156 11157 11158 11159 11160 11161 11162 11163 11164 11165 11166 11167 11168 11169 11170 11171 11172 11173 11174 11175 11176 11177 11178 11179 11180 11181 11182 11183 11184 11185 11186 11187 11188 11189 11190 11191 11192 11193 11194 11195 11196 11197 11198 11199 11200 11201 11202 11203 11204 11205 11206 11207 11208 11209 11210 11211 11212 11213 11214 11215 11216 11217 11218 11219 11220 11221 11222 11223 11224 11225 11226 11227 11228 11229 11230 11231 11232 11233 11234 11235 11236 11237 11238 11239 11240 11241 11242 11243 11244 11245 11246 11247 11248 11249 11250 11251 11252 11253 11254 11255 11256 11257 11258 11259 11260 11261 11262 11263 11264 11265 11266 11267 11268 11269 11270 11271 11272 11273 11274 11275 11276 11277 11278 11279 11280 11281 11282 11283 11284 11285 11286 11287 11288 11289 11290 11291 11292 11293 11294 11295 11296 11297 11298 11299 11300 11301 11302 11303 11304 11305 11306 11307 11308 11309 11310 11311 11312 11313 11314 11315 11316 11317 11318 11319 11320 11321 11322 11323 11324 11325 11326 11327 11328 11329 11330 11331 11332 11333 11334 11335 11336 11337 11338 11339 11340 11341 11342 11343 11344 11345 11346 11347 11348 11349 11350 11351 11352 11353 11354 11355 11356 11357 11358 11359 11360 11361 11362 11363 11364 11365 11366 11367 11368 11369 11370 11371 11372 11373 11374 11375 11376 11377 11378 11379 11380 11381 11382 11383 11384 11385 11386 11387 11388 11389 11390 11391 11392 11393 11394 11395 11396 11397 11398 11399 11400 11401 11402 11403 11404 11405 11406 11407 11408 11409 11410 11411 11412 11413 11414 11415 11416 11417 11418 11419 11420 11421 11422 11423 11424 11425 11426 11427 11428 11429 11430 11431 11432 11433 11434 11435 11436 11437 11438 11439 11440 11441 11442 11443 11444 11445 11446 11447 11448 11449 11450 11451 11452 11453 11454 11455 11456 11457 11458 11459 11460 11461 11462 11463 11464 11465 11466 11467 11468 11469 11470 11471 11472 11473 11474 11475 11476 11477 11478 11479 11480 11481 11482 11483 11484 11485 11486 11487 11488 11489 11490 11491 11492 11493 11494 11495 11496 11497 11498 11499 11500 11501 11502 11503 11504 11505 11506 11507 11508 11509 11510 11511 11512 11513 11514 11515 11516 11517 11518 11519 11520 11521 11522 11523 11524 11525 11526 11527 11528 11529 11530 11531 11532 11533 11534 11535 11536 11537 11538 11539 11540 11541 11542 11543 11544 11545 11546 11547 11548 11549 11550 11551 11552 11553 11554 11555 11556 11557 11558 11559 11560 11561 11562 11563 11564 11565 11566 11567 11568 11569 11570 11571 11572
2006-07-13  Andre Klapper  <a9016009@gmx.de>

    * mail-config.glade: remove empty strings from translation

2006-07-11  Karsten Bräckelmann  <guenther@rudersport.de>

    * em-folder-view.c: Change mnemonic for Mark as Unimportant, fixes
    bug #347246.

2006-07-11  Johnny Jacob  <johnnyjacob@gmail.com>

    Fixes #246235.
    * em-vfolder-rule.c (get_widget): Deleted the option menu and
    replaced with radio buttons.
    * mail-dialogs.glade: Removed option menu and added radio buttons

2006-07-11  Johnny Jacob  <johnnyjacob@gmail.com>

    ** Fixes Bug # 324241

    * mail/em-composer-prefs.c (em_composer_prefs_construct): Changed
    signal handled for sig_edit and sig_delete from "pressed" to
    "clicked".

2006-07-11  Johnny Jacob  <jjohnny@novell.com> 

    ** Patch by Not Zed  <NotZed@Ximian.com>
    ** See bug #262003

    * em-format-html-display.c (efhd_xpkcs7mime_validity_clicked): put
    the potentially long descriptions into a textbuffer so it's
    scrollable.

2006-07-07 Ushveen Kaur <kushveen@novell.com>

    Fixes bug #336963.
    * em-message-browser.c:
    set the scroll bar in the message display to automatic
    
2006-07-07  Andre Klapper  <a9016009@gmx.de>

    * em-format-html-display.c: Changing one mnemonic to avoid a
    mnemonic conflict with an upcoming patch by Jony.

2006-07-05  Andre Klapper  <a9016009@gmx.de>

    * em-format-html-display.c: Added mnemonic to string.
    Fixes bug #346645.

2006-06-30  Johnny Jacob <jjohnny@novell.com>
    * mail/em-folder-browser.h: Added search_activated signal
    * mail/em-folder-view.c: (emfv_init):
    * mail/em-format-html-display.c: (efhd_search_response),
    (efhd_search_response_back), (efhd_search_destroy),
    (efhd_search_case_toggled), (efhd_key_pressed),
    (clear_button_clicked_cb), (icon_entry_changed_cb),
    (em_format_html_get_search_dialog), (set_focus_cb),
    (em_format_html_display_search),
    (em_format_html_display_search_with),
    (em_format_html_display_search_close):
    * mail/em-format-html-display.h:
    * mail/mail-component.c: (disable_folder_tree),
    (enable_folder_tree), (impl_createView):
    * mail/mail-vfolder.c: (mail_vfolder_add_uri),
    (mail_vfolder_get_sources_local),
    (mail_vfolder_get_sources_remote), (store_folder_renamed):
    * mail/message-list.c: (ml_tree_value_at),
    (message_list_setup_etree):
    * mail/message-list.etspec:
    Added code for search ui.

2006-06-27  Matthew Barnes  <mbarnes@redhat.com>

    * evolution-mail.schemas.in.in:
    Changed type name "boolean" to "bool". Fixes bug #345677.

2006-06-27  Arvind_evo  <sa.phoenix@gmail.com>
        
    Fix for bug#260354 comment 35:
    * mail-component.c: set the window title to reflect the
    localized folder names

2006-06-21  Srinivasa Ragavan  <sragavan@novell.com>

    ** Fix for bug #344338
    
    * em-folder-browser.c: (emfb_edit_select_all): grab focus after
    Ctrl+A.

2006-06-19  Srinivasa Ragavan  <sragavan@novell.com>

    ** Fix for bug #344580

    * message-list.c: (create_composite_cell),
    (composite_cell_set_strike_col), (message_list_set_folder): Strike out
    deleted mails, if set to visible

2006-06-14  Tor Lillqvist  <tml@novell.com>

    * em-account-editor.c (emae_check_complete): g_get_real_name()
    returns UTF-8 on Win32.

2006-06-13  Andre Klapper <a9016009@gmx.de>

    * mail.error.xml: changing string "Ximian Evolution" to "Evolution".
    Fixes bug #344298.

2006-06-13  Tor Lillqvist  <tml@novell.com>

    * em-format-html.c (efh_format_address): Fix build on Win32, where
    EVOLUTION_ICONSDIR is a function call.

2006-06-12  Srinivasa Ragavan  <sragavan@novell.com>

    * message-list.etspec: Corrected the sortable parameter of the message
    list correctly.

2006-06-29  Chris Heath <chris@heathens.co.nz>

    * message-list.c (message_list_finalise): Fix memory leak.
    Fixes bug #335423.

2006-06-07  Srinivasa Ragavan  <sragavan@novell.com>

    * em-format-html.c: (efh_format_address): Fixed a minor bug, where the
    plus symbol appears if the limit equals the address shown.

2006-06-06  Harish Krishnaswamy  <kharish@novell.com>

    * evolution-mail.schemas.in.in: typo correction.
    Fixes #331694.

2006-06-02  Jeffrey Stedfast  <fejj@novell.com>

    * em-folder-view.c (emfv_setup_view_instance): Can't make camel
    calls from the main thread or we run the risk of deadlocking.

2006-06-02  Srinivasa Ragavan  <sragavan@novell.com>

    ** Added support for Vertical View in evolution in addition to the
    existing classical view. It also supports a composite headers to be
    shown in a multilined column.

    * em-folder-browser.c (emfb_pane_realised),
    (emfb_pane_button_release_event, emfb_init),
    (em_folder_browser_show_preview, em_folder_browser_show_wide),
    (emfb_show_next, emfb_show_below, emfb_activate): Added code to
    handle the new wide mode in Evolution.

    * em-folder-view.c (emfv_setup_view_instance),
    (em_folder_view_setup_view_instance): Added code to handle the
    default view in the wide mode for normal and sent/draft folders.

    * evolution-mail.schemas.in.in: Added schema for hpane size,
    showing email in the composite headers and toggling wide more.
    
    * message-list.c (ml_duplicate_value, ml_free_value),
    (ml_initialize_value, ml_value_is_empty, ml_value_to_string),
    (sanitize_recipients, ml_tree_value_at, create_composite_cell),
    (message_list_create_extras): Added a new composite header
    render_composite_from/recipient which shows the headers in a
    multilined column.

    * message-list.etspec: Added three new columns, Recipent, Messages
    column for normal folders and Messages column for sent/draft
    folders.

2006-05-30  Li Yuan  <li.yuan@sun.com>

    Fix for #341381.

    * message-list.c (message_list_set_folder): We should lock
    e-tree-memory when we change it.

2006-05-30  Srinivasa Ragavan  <sragavan@novell.com>

    ** Fixes bug #332936

    * mail.error.xml: Used a new property called scroll that adds the
    multilines error messages into a viewport.

2006-05-25  Srinivasa Ragavan  <sragavan@novell.com>

    ** Added remote shares save/load support across evolution.

    * em-utils.c (emu_file_check_local, emu_get_save_filesel),
    (emu_save_part_response, emu_save_parts_response),
    (emu_save_messages_response): Added code to save
    messages/attachments to remote shares.

    * mail-ops.c (save_messages_save, save_part_save): Same.

2006-05-25  Srinivasa Ragavan  <sragavan@novell.com>

    ** fixes bug #342092

    * em-popup.c (emp_standard_menu_factory): Read the mime from the
    right file.

2006-05-25  Srinivasa Ragavan  <sragavan@novell.com>

    Added support for collapsible headers for To/Cc/Bcc fields.

    * em-folder-view.c (emfv_format_link_clicked, emfv_on_url_cb):

    * em-format-html-display.c (efhd_html_button_press_event),
    (efhd_html_link_clicked, efhd_html_on_url, efhd_format_clone):

    * em-format-html.c (efh_url_requested, efh_format_text_header),
    (efh_format_address, efh_format_header):

    * em-mailer-prefs.c (address_compress_count_changed),
    (toggle_button_init, em_mailer_prefs_construct):

    * evolution-mail.schemas.in.in:

    * mail-config.c (gconf_address_count_changed),
    (gconf_address_compress_changed, mail_config_init),
    (mail_config_get_labels, mail_config_get_address_count):

    * mail-config.glade:

2006-05-24  Srinivasa Ragavan  <sragavan@novell.com>

    ** Fixes bug #342676
    
    * message-list.c: (ml_duplicate_value), (ml_free_value),
    (ml_initialize_value), (ml_value_is_empty), (ml_value_to_string):
    * message-list.etspec: Fixed the column sorter right.

2006-05-04  Jeffrey Stedfast  <fejj@novell.com>

    * mail-component.c (mail_component_remove_store): Ref the store
    before removing the store from our hash and cache. Should fix
    Novell bug #166987.

2006-04-30  Shi Pu <shi.pu@sun.com>
 
    ** Fixes bug #323853

    * em-composer-prefs.c (sig_edit_cb, sig_add_script_response):

    * em-mailer-prefs.c (notify_sound_changed)
    (em_mailer_prefs_construct):

    * em-mailer-prefs.h:

    * mail-config.glade: Replace GnomeFileEntry by
    GtkFileChooserButton.
 
2006-04-27  Rodney Dawes  <dobey@novell.com>

    * em-folder-tree.c (render_pixbuf): Use gnome-fs-trash-empty
    rather than stock_delete for the Trash folder icon

    * em-folder-view.c (emfv_popup_items[]): Don't set an icon for
    Undelete
    (emfv_message_pixmaps[]): Don't set an icon for Undelete and set
    the icon for deleting a message to gnome-fs-trash-empty, not
    stock_delete

    Fixes #339626

2006-04-26  Srinivasa Ragavan  <sragavan@novell.com>

    ** Patch from Victor for adding a Sender header to message list.

    * message-list.c (ml_duplicate_value, ml_free_value),
    (ml_initialize_value, ml_value_is_empty, ml_value_to_string),
    (ml_tree_value_at): Handled the new column header.

    * message-list.etspec: Added a new column header to spec.

    * message-list.h: Added a new column

2006-04-26  Srinivasa Ragavan  <sragavan@novell.com>

    * em-folder-view.c (emfv_setup_view_instance): Comparing the
    FolderInfo flags right, to make Mailbox to show From header in
    message list for groupwise servers.

2006-04-26  Srinivasa Ragavan  <sragavan@novell.com>

    ** Fixes bug #323402

    * em-folder-tree.c (folder_tree_new): Code for Ellipsizing folder
    tree. (Patch from Vincent Noel)

    * em-migrate.c: Adding side_bar_search to 

    * evolution-mail.schemas.in.in: Adding a schema for enabling/disabling
    side bar search. (Patch from Rakesh)

2006-04-24  Srinivasa Ragavan  <sragavan@novell.com>

    * mail-session.c (get_password): Ask passphrase if the user is
    supposed to enter the same.

2006-04-22  Srinivasa Ragavan  <sragavan@novell.com>

    * em-format-html-display.c (efhd_attachment_button),
    (efhd_format_attachment): Added code to create image cache of
    image attachment in the ethread instead of main thread to avoid
    gui lockup.

2006-04-21  Sankar P  <psankar@novell.com>

    * mail-mt.c (do_op_status): Fix the cryptic
    hexa-status-bar-message.  The problem still lies somewhere. But
    dont show something weird to the user.
    
2006-04-20  Jeffrey Stedfast  <fejj@novell.com>

    Fix for bug #339052

    * em-inline-filter.c (emif_add_part): Preserve all Content-Type
    params so that they may be restored later.

    * em-format.c (emf_inlinepgp_signed): Restore the original part's
    Content-Type params otherwise we lose valuable information such as
    charset or format=flowed or various other things.

2006-04-18  Jeffrey Stedfast  <fejj@novell.com>

    * mail.error.xml: Removed error id "camel-exception" as it was a
    bogus error.

2006-04-14  Jeffrey Stedfast  <fejj@novell.com>

    * em-composer-utils.c (em_utils_handle_receipt): Fixed up the if
    conditional so that 'account' wasn't ever dereferenced when
    NULL. Fixes bug #324327.

2006-04-10  Jeff Cai <jeff.cai@sun.com>

    ** Fixes 333243

    * em-folder-tree-model.c (em_folder_tree_model_remove_folders):
    For null uri, don't need remove it.

2006-04-05  Jeff Cai  <jeff.cai@sun.com>

    Fixes bug #333987
    
    * message-list.c (mail_folder_hide_by_flag):
    If CamelMessageInfo is null, don't free it.

2006-03-29  Parthasarathi Susarla <sparthasarathi@novell.com>
    
    * em-folder-view.c (smfv_setup_view_instance): use the flags
    CAMEL_STORE_FOLDER_INFO_SUBSCRIBED instead of
    CAMEL_STORE_FOLDER_INFO_FAST when getting folder info

2006-03-25  Rajeev ramanathan <rajeevramanathan_2004@yahoo.co.in>

    **Fixes #329585

    * mail-config.glade: Changed Remove button to Delete button

    * mail.error.xml: Changed current Layout DELETE [Do not delete] to
    [Do not delete] DELETE

2006-03-22  Patrick Ohly  <patrick.ohly@intel.com>

    * em-utils.c (em_utils_selection_set_urilist): Fixed premature
    memory free. Fixes bug #335203.

2006-03-21  Simon Zheng  <simon.zheng@sun.com>

    Fixed bug #326571

    * em-utils.c (em_filename_make_safe, emu_get_save_filesel):
    (emu_save_parts_response): Add em_filename_make_safe(), and use it
    to allow filenames contain more valid characters when saving
    attachments.

2006-03-20  Srinivasa Ragavan  <sragavan@novell.com>

    * em-folder-view.c (emfv_setup_view_instance): Added code to set
    the mail view column for sent folder.

2006-03-12  Frank Arnold  <farnold@cvs.gnome.org>

    * default/de/Inbox: Updated German translation of default inbox.

2006-03-06  Simon Zheng  <simon.zheng@sun.com>

    Fixes bug #332140

    * em-utils.c (em_utils_temp_save_part): Transfer filenames from
    utf-8 to glib encoding before really saving files.

2006-03-03  Andre Klapper  <a9016009@gmx.de>

    * configure.in:

    * mail/default/Makefile.am: added support for macedonian (mk)
    welcome message

2006-03-03  Vincent van Adrighem  <adrighem@gnome.org>

    * default/nl/Inbox: Tino Meinen updated the Dutch welcome message.

2006-03-03  Žygimantas Beručka  <zygis@gnome.org>

    * default/Makefile.am: Added Lithuanian to SUBDIRS.
    * default/lt/*: Added Lithuanian translation for default mailbox.

2006-03-02  Ilkka Tuohela  <hile@iki.fi>

    * fi.po: Updated Finnish inbox to actually use 2.6 example, not
    the old one...

2006-03-01  Ilkka Tuohela  <hile@iki.fi>

    * default/Makefile.am: added "fi" to SUBDIRS
    * default/fi/*: Added localized default mailbox for Finnish,

2006-02-28  Srinivasa Ragavan  <sragavan@novell.com>

    ** Fixes bug #332832

    * em-composer-utils.c (em_utils_compose_new_message_with_mailto):
    Added code to raise the window when a composer is created due to
    mailto: uri

2006-03-01  Andre Klapper  <a9016009@gmx.de>

    * default/C/Inbox: Update the Welcome mail.

2006-02-27  Jeffrey Stedfast  <fejj@novell.com>

    * em-format-html-display.c (efhd_xpkcs7mime_validity_clicked):
    Make the verify/decrypt gpg diagnostic text selectable in the
    security dialog that comes up when you click the button in a
    message. Fixes bug #268414.

2006-02-24  Sankar P  <psankar@novell.com>
    
    * em-account-editor.c (emae_check_complete, emae_identity_page):
    Added code to handle the case if the account is marked as default.
    Fixes #332034

2006-02-21  Veerapuram Varadhan <vvaradhan@novell.com>

    ** Fixes bug #329733

    * em-folder-properties.c (emfp_dialog_got_folder): Fetch both
    VISIBLE and DELETED count from the folder and adjust it according
    before showing it in the properties dialog w.r.t user preferences.
       
2006-02-21  Tor Lillqvist  <tml@novell.com>

    * em-composer-utils.c: Use the same Win32 macro for gmtime_r()
    that guards against gmtime() returning NULL as elsewhere. gmtime()
    is thread-safe on Win32.
    (attribution_format): Check if camel returns
    CAMEL_MESSAGE_DATE_CURRENT for Date:, try the date from Received:
    then. If that doesn't work either, use current date.

2006-02-20  Srinivasa Ragavan <sragavan@novell.com>

    ** Fixes bug #322160 and committed for PRSuman.

    * em-utils.c: Added code to pass a variable to overwrite/ro mode.

    * mail-ops.[ch]: Added code to take care of overwrite and set the file
    mode.

t2006-02-20  Parthasarathi Susarla <sparthasarathi@novell.com>
    
    ** Fixes bug 33139

    * mail-vfolder.c: (mail_vfolder_shutdown):
    assign 'vfolder_hash' to NULL after destroying.

    Committed Patch on behalf of Joe Marcus Clarke (marcus@freebsd.org)

2006-02-16  Srinivasa Ragavan  <sragavan@novell.com>

    ** Fixes bug #331215
    
    * em-folder-browser.c: (emfb_activate): Uncommented the code to set
    the preview pane position.

2006-02-15  Parthasarathi Susarla <sparthasarathi@novell.com>

    * mail-mt.c (do_op_status): need to show the stauts message

2006-02-15  Shi Pu <shi.pu@sun.com>

    See bug ** 325967
    
    * em-account-editor.c (emae_service_url_changed): When username
    entry value of "Sending Email" page/tab is not empty, check combo
    box of authmech, to pick up the authmech information.

2006-02-13  Karsten Bräckelmann  <guenther@rudersport.de>
 
    * em-account-editor.c: Fix the Account Editor / Security option to
    finally be descriptive, rather than obscuring. Fixes the UI part
    of bug #321797.

2006-02-13  Rohini S  <srohini@novell.com>

    ** Fixes bug #221270.

    * mail-send-recv.c (build_dialog): Removed white space before :
    when displaying account information in Send/Receive dialog.

2006-02-13  Andre Klapper <a9016009@gmx.de>

    * mail-mt.c: uncommenting a string. Fixes bug 271734.

2006-02-13  Sushma Rai  <rsushma@novell.com>

    * mail/em-account-editor.c (emae_option_checkspin)
    (emae_receive_options_extra_item): Creating the widget with 
    "use_underline" property. Fixes #330504.

2006-02-11  Andre Klapper <a9016009@gmx.de>

    * mail-config.glade: changed string and added translator comments.
    Fixes bug 256907.

2006-02-11  Karsten BrÀckelmann  <guenther@rudersport.de>

    * message-list.c (message_list_construct): 
    * em-format-html-display.c (efhd_attachment_button, efhd_add_bar): 
    * em-account-prefs.c (em_account_prefs_treeview_new): 
    Change a11y names. Fixes part of bug #330723.

2006-02-10  Karsten BrÀckelmann  <guenther@rudersport.de>

    * em-utils.c (em_utils_edit_filters): Fix Filters dialog window
    title to be HIG compliant. Fixes bug #330650.

2006-02-09  Sushma Rai  <rsushma@novell.com>

    * em-mailer-prefs.c (em_mailer_prefs_construct): Freeing font value 
    string. See #309316.

2006-02-08  Karsten BrÀckelmann  <guenther@rudersport.de>

    * mail.error.xml: Fix typo and correct phrasing. Fixes bug #330387.

2006-01-09  Kjartan Maraas  <kmaraas@gnome.org>

    * em-account-editor.h: s/int/guint/g for 1-bit bitfield.
    * em-composer-utils.c: (em_utils_redirect_message): Remove cruft
    * em-folder-tree.c: (emft_drop_target): use guint for 1-bit bitfield
    and rename a variable with a name clash.
    * em-folder-utils.c: (em_folder_utils_rename_folder): Rename var to
    avoid name clashes.
    * em-folder-view.c: guint for 1-bit bitfields.
    * em-folder-view.h: Same as above.
    * em-format-html-print.h: Again.
    * em-format-html.c: (efh_text_html), (efh_multipart_related): Add comments
    * em-format.c: (emf_multipart_alternative): Add comment about using var that
    is passed in rather than a local variable.
    * em-inline-filter.c: (emif_scan): Remove unused var. Mark code static.
    * em-mailer-prefs.h: guint for 1-bit bitfields.
    * em-migrate.c: (em_migrate_folder): mark a struct static. remove unused var
    * em-subscribe-editor.c: guint for 1-bit bitfield
    * em-utils.c: remove unused function
    * em-vfolder-rule.c: mark array static
    * importers/mail-importer.c: (decode_status): Remove unused code. Use guint
    for 1-bit bitfield.
    * mail-autofilter.c: (rule_from_message): rename a variable
    * mail-component.c: guint for 1-bit bitfield
    * mail-folder-cache.c: (update_1folder): remove unused code
    * mail-mt.c: mark some structs static
    * message-list.c: (message_list_select_uid), (ml_value_to_string),
    (ml_tree_value_at), (find_next_undeleted), (build_tree),
    (build_flat): Remove unused code and fix some format specifiers.

2006-02-08  Rajeev ramanathan <rajeevramanathan_2004@yahoo.co.in>

    **Fixes #329586

    * em-account-prefs.c:

    * em-account-prefs.h: Changed the ODD behavior of Default button
    by checking whether an account is default or not and disabling the
    button when default account is in focus.

    Committing to head on behalf of rajeev
    
2006-02-08  Claudio Saavedra  <csaavedra@alumnos.utalca.cl>

    * em-account-prefs.c (em_account_prefs_construct): Reordering
    construction of dialog to prevent critical warnings (#328325).

2006-02-07  Andre Klapper <a9016009@gmx.de>
    * mail.error.xml: fixing one typo.

2006-02-06  Srinivasa Ragavan  <sragavan@novell.com>

    ** Fixes bug #328651
    
    * em-folder-view.c:
    * em-format-html-display.c:
    * evolution-mail.schemas.in.in:
    * mail-config.c (config_cache_labels):

2006-01-27  Rajeev ramanathan <rajeevramanathan_2004@yahoo.co.in>
    
    ** Fixes bug #325786

    * em-folder-browser.c: Added code to display a prompt before
    marking All messages as Read.

    * mail-error.xml: Added a new error message for marking all
    message as read.

2006-02-06  Veerapuram Varadhan <vvaradhan@novell.com>

    ** Fixes #326147

    * em-account-editor.c: (em_account-editor.c): Modify e_source to
    reflect to the reverted changes.
    
2006-02-05  Karsten BrÀckelmann  <guenther@rudersport.de>

    * importers/pine-importer.c (pine_getwidget): Correcting
    "Addressbook" to properly read "Address Book".  Fixes bug #326256.

2006-02-02  Parthasarathi Susarla <sparthasarathi@novell.com>
    
    * em-composer-utils.c (em_utils_handle_receipt): check if account
    is null before accessing it

2006-01-30  Harish Krishnaswamy  <kharish@novell.com>

    * mail-config.glade: s/T_erminal/Fi_xed width/ for consistency with other
    GNOME applications.

2006-01-30  pavithran <pavithran@gmx.de>

    ** Fixes bug #316223

    * em-utils.c (emu_save_parts_response): Added a confirmation
    dialog for overwriting existing file during save all.

2006-01-27  Rajeev ramanathan <rajeevramanathan_2004@yahoo.co.in>

    ** Fixes #327000

    * em-format-html-display.c: Added code to change cursor to notify
    user on image fit to width

2006-01-26  Oswald Rodrigues <ozzy_rodrigues@yahoo.com>

    * em-popup.c: Corrected typo. changed Add to Addressbook to Add 
    to Address Book. Fixes bug 326256.

2006-01-23  Andre Klapper <a9016009@gmx.de>

    * mail.error.xml: fixed a typo. Fixes bug 328306.

2006-01-23  Ranjan Somani  <sranjan@novell.com>

    ** Fixes #326795

    * em-message-browser.c: Pressing Esc key lets u close the window

2006-01-20  Nancy Cai <nancy.cai@sun.com>
    
    ** Fixes #326649

    * em-account-prefs.c (mail_accounts_load): select the first row

2006-01-23  Srinivasa Ragavan  <sragavan@novell.com>

    * em-format-html-display.c (efhd_attachment_bar_refresh),
    (efhd_mnemonic_show_bar), (efhd_add_bar): Added Mnemonics for Save
    / Save All and for show/hide attachment bar.

2006-01-19  Ranjan Somani  <sranjan@novell.com>

    ** Fixes #318785

    * mail-config.glade: Resizing of Default n Enable button
 
    committing on behalf of Ranjan -partha
     
2006-01-19  Parthasarathi Susarla <sparthasarathi@novell.com>
    
    ** See bug 324327

    * em-composer-utils.c (em_utils_handle_receipt): account can be
    null. Not necessary to send receipt when account is not enabled

2006-01-16  Harish Krishnaswamy  <kharish@novell.com>

    * mail-component.c (impl__get_userCreatableItems): remove shortcut
    keys (UI Hackfest - See
    http://go-evolution.org/Shortcut_Keys_Review).

2006-01-16  Srinivasa Ragavan  <sragavan@novell.com>

    ** Fixes bug #326877

    * em-folder-view.c (emfv_enable_menus): Reverting the patch to
    hide junk/not junk toolbuttons in disabled state.

2006-01-16  Srinivasa Ragavan  <sragavan@novell.com>

    ** Fixes bug #218570

    * em-folder-browser.c (emfb_expand_all_threads),
    (emfb_collapse_all_threads), (emfb_set_folder), (emfb_activate):
    Added code to handle expande/collapse all and call e-tree for regen of
    the list.
    * message-list.c (load_tree_expand_all),
    (message_list_set_threaded_expand_all),
    (message_list_set_threaded_collapse_all),
    (message_list_set_expand_all), (regen_list_regened): Added code to
    conditionally check for expand/collapse all and save the state after
    the operation.
    * message-list.h: Added state variable for expand/collapse all of
    threads.

2006-01-12  Rohini S  <srohini@novell.com>

    ** Fixes bug #221270.

    * mail-send-recv.c (format_url, build_dialog): Changed to display
    account name in Send/Receive dialog.

2006-01-16  Srinivasa Ragavan  <sragavan@novell.com>

    * em-format-html-display.c (em_format_html_display_new): Changed
    event to scroll_event in rajeev's patch.

2006-01-12  Rohini S  <srohini@novell.com>
    
    ** Fixes bug #246257

    * mail-dialogs.glade: Interchange of label and checkbox 
    positions in Find message dialog

    * em-format-html-display.c (efhd_update_matches),
    (em_format_html_display_search): Hide Matches Label on dialog open
    and Show Matches Label when required. Fixes bug 246257.

2006-01-16  Srinivasa Ragavan  <sragavan@novell.com>
    
    ** Fixes bug #239929 (Committing Rajeev's patch)

    * em-format-html-display.c (efhd_scroll_event),
    (em_format_html_display_new): Adds handler to zoom-in/out on
    control scroll.
    
2006-01-13  Srinivasa Ragavan  <sragavan@novell.com>

    * em-folder-browser.c (emfb_etree_unfreeze, emfb_list_built):

    * message-list.c (message_list_setup_etree):

    Fixes the scroll issue with the message list.

2006-01-12  Srinivasa Ragavan  <sragavan@novell.com>

    * GNOME_Evolution_Mail.server.in.in:

    Changes MailView accel from Control+F1 to Control+1.

2006-01-10  Simon Zheng  <simon.zheng@sun.com>

    * em-composer-utils.c:
    * em-folder-tree-model.c (em_folder_tree_model_save_state):
    * em-format-html.c:
    * em-migrate.c (cp_r, em_migrate_folder),
    (em_migrate_pop_uid_caches_1_4),
    (em_migrate_folder_expand_state_1_4),
    (em_migrate_folder_view_settings_1_4), 
    (em_migrate_imap_cmeta_1_4),
    (em_migrate_1_4, emm_setup_initial), 
    (em_migrate):
    * em-popup.c:
    * em-utils.c (em_utils_save_part_to_file):
    * mail-component.c (mail_component_init):
    * mail-config.c:
    * mail-folder-cache.c:
    * mail-mt.c:
    * mail-ops.c:
    * mail-tools.c (mail_tool_get_local_movemail_path):
    Use e_util_mkdir_hier() instead of e_mkdir_hier().

    Use e_util_strstrcase() instead of e_strstrcasea().
    
    use e_strftime() in evolution-data-server/
    libedataserver/e-data-server-util.c instead of the copy in 
    evolution/e-util/e-util.c.
 
    use e_filename_make_safe() in evolution-data-server/
    libedataserver/e-data-server-util.c instead of the copy in 
    evolution/e-util/e-util.c.
    
    use e_utf8_strftime() in evolution-data-server/
    libedataserver/e-data-server-util.c instead of the copy in 
    evolution/e-util/e-util.c.

2006-01-06  Andre Klapper <a9016009@gmx.de>

    * evolution/mail/mail-ops.c:

    * evolution/mail/mail-send-recv.c:

    * evolution/mail/mail-session.c: changing "cancelled" (British
    English) to "canceled" (American English). Fixes bug 325334.

2006-01-06  Simon Zheng <simon.zheng@sun.com>

    * em-account-editor.c:
    * em-account-prefs.c:
    * em-composer-utils.c:
    * em-folder-tree-model.h:
    * em-migrate.c:
    * em-subscribe-editor.c:
    * em-utils.c:
    * importers/netscape-importer.c:
    * mail-config.c:
    * mail-crypto.c:
    * mail-ops.h:
    * mail-send-recv.c:
    * mail-vfolder.c:
    use libedataserver/e-account-list.h instead of e-util/e-account-list.h.
    use libedataserver/e-account.h instead of e-util/e-account.h.

2006-01-04  Srinivasa Ragavan  <sragavan@novell.com>

    * mail-tools.c: Uncommented mail_tool_get_local_movemail_path for
    non-win32 builds since it is used in non-win32 build.

2006-01-04  Parthasarathi Susarla <sparthasarathi@novell.com>
    
    * em-composer-utils.c (em_utils_composer_send_cb): Use the
    composer window as the parent window while showing the error
    message.

2006-01-02  Shreyas Srinivasan  <sshreyas@novell.com>

    * mail.error.xml: Fix 313095, Add error identifier
    ask-delete-proxy-accounts. 
    
2006-01-02  Harish Krishnaswamy  <kharish@novell.com>

    * em-folder-view.c (emfv_setting_notify): Remove the first check
    in the previous commit.  This is redundant as it is always
    guaranteed that the component has been activated at this point.
    And when not, it ought to crash :-).

2006-01-02  Harish Krishnaswamy  <kharish@novell.com>

    reviewed by: Parthasarathi <sparthasarathi@novell.com>

    * em-folder-view.c (emfv_setting_notify): Set the properties on
    the bonobo component only if it already has been activated. Fixes
    #325375 (critical warning crasher).

2006-01-01  Changwoo Ryu  <cwryu@debian.org>

    * em-folder-properties.c (emfp_dialog_got_folder): translate
    the labels of emfp_items.

    * em-account-editor.c (em_account_editor_construct): translate
    the labels of emae_{editor,druid}_items.
    
2006-01-01  Harish Krishnaswamy  <kharish@novell.com>


    * em-utils.c (em_utils_prompt_user),
    mail-config.glade, mail.error.xml:
    s/don't/do not/ string changes. Fixes #325276.

2005-12-30  Andre Klapper <a9016009@gmx.de>

    * mail.error.xml: Fixing several typos and harmonizing
      capital/small letters. Partially fixes bug 306117.

2005-12-30  Andre Klapper <a9016009@gmx.de>

    * mail-session.c: changing "canceled" to "cancelled" to stay
      consistant to the rest.  Fixes bug 325116.

2005-12-30  Andre Klapper <a9016009@gmx.de>

    * evolution-mail.schemas.in.in: added quotes to literal values.
      Fixes bug 272772.

2005-12-29  Andre Klapper <a9016009@gmx.de>

    * em-folder-properties.c: removed wrong singular string.
      Fixes bug 311472.

2005-12-22  Andre Klapper <a9016009@gmx.de>

    * mail-config.glade: changed one duplicated mnemonic.
      Fixes bug 313801.

2005-12-20  Andre Klapper <a9016009@gmx.de>

    * mail-config.glade: changing file selector window title from
      "Execute command..." to "Select sound file". Fixes bug 324173.

2005-12-19  Andre Klapper <a9016009@gmx.de>

    * mail-config.glade: changed 3 HIG-violating mnemonics.
      Fixes bug 256913.

2005-12-23  Srinivasa Ragavan  <sragavan@novell.com>

    ** Fixes bug #228040, #324677

    * em-folder-view.c (emfv_popup_flag_completed),
    (emfv_popup_flag_clear, emfv_enable_menus): Added menus for
    complete and clear. Also added code to refresh preview on setting
    flags. Also added code to hide junk/not-junk menu depending on
    their sensitivity.

    * em-utils.c (tag_editor_response, em_utils_flag_for_followup):
    Added code to refresh preview.
    
2005-12-22  Shreyas Srinivasan  <sshreyas@novell.com>

    * mail-component.[c,h]: Handle Network Disconnect
    sent by the shell. Add function status_check which 
    handles various Network states.
    
2005-12-21  Tor Lillqvist  <tml@novell.com>

    * em-camel-stream.c (em_camel_stream_init)
    * em-sync-stream.c (em_sync_stream_init): Use
    g_io_channel_win32_new_socket() on Win32 instead of
    g_io_channel_unix_new() to avoid confusion between file
    descriptors and sockets (which can and do overlap!). We know that
    e_msgport_fd() returns a socket on Win32.

2005-12-21  Not Zed  <NotZed@Ximian.com>
 
    * mail-component.c (impl_createView, view_changed_cb): api
    updates.
 
2004-12-21  Not Zed  <NotZed@Ximian.com>

    ** See bug #60354.

    * mail-component.c (view_changed_cb): set the shell window title
    as well.
    (impl_createView): renamed from createControls, just return a
    EComponentView instead.

    Committed on behalf of notzed - partha

2005-12-21  Jeff Cai <jeff.cai@sun.com>

    ** See bug 324473

    * em-account-editor.c (em_account_editor_construct): delete
    reference to account editor to make sure be destroyed when it is
    closed.

2005-12-21  Sam Yang  <sam.yang@sun.com>

    Fixes #324670

    * em-folder-view.c (emfv_setting_notify): Respond to the change of
    mail/display/paned_size in gconf.

2005-12-20  Veerapuram Varadhan  <vvaradhan@novell.com>

    Fixes #246256

    * mail-dialogs.glade: Change "Case _Sensitive" to "Case _sensitive".
    
2005-12-20  Boby Wang <Boby.Wang@sun.com> 

    ** See bug 324319

    * em-format-html-display.c (efhd_add_bar): Add the accessible name
    of arrow button, and the attachment bar can be opened by gok.

2005-12-20  Parthasarathi Susarla <sparthasarathi@novell.com>
    
    ** See bug 234008

    * em-folder-tree-model.c:
    * mail-folder-cache.c:
    Make sure that the Draft folder highlights the number of messages in
    it
    
2005-12-18  Tor Lillqvist  <tml@novell.com>

    * Makefile.am: Use THREADS_CFLAGS and _LIBS. Don't need CAMEL_LIBS.

    * em-account-editor.c
    * em-account-prefs.c
    * em-filter-editor.c
    * em-folder-browser.c
    * em-folder-view.c
    * em-format-html.c
    * em-format-html-display.c
    * em-mailer-prefs.c
    * em-message-browser.c
    * em-migrate.c
    * em-subscribe-editor.c
    * em-sync-stream.c
    * em-utils.c
    * em-vfolder-editor.c
    * em-vfolder-rule.c
    * mail-autofilter.c
    * mail-component.c
    * mail-config.c
    * mail-folder-cache.c: Use gstdio wrappers. Construct pathnames of
    glade, xml, etspec and png files at run-time. Use
    g_filename_{to,from}_uri().

    * em-folder-browser.c (emfb_init)
    * em-folder-view.c (emfv_finalise)
    * em-message-browser.c (emmb_init): As EMFolderView::ui_files now
    always is a list of filenames constructed with g_build_filename(),
    use g_free() on each list entry before calling g_slist_free() on
    the list.

    * em-folder-tree-model.c (em_folder_tree_model_load_state): Use
    e_xml_parse_file().

    * em-migrate.c: Bypass all the code for upgrading from 1.x on Win32.
    (emm_setup_initial): Use GDir instead of dirent.

    * em-sync-stream.c
    * mail-folder-cache.c: Use pthread_equal() to compare pthread_t
    values.

    * em-vfs-stream.c: No EINPROGRESS or ELOOP on Win32.

2005-12-17  Tor Lillqvist  <tml@novell.com>

    * mail-mt.c: Add copyright blurb. Use separate flag field to
    indicate whether a pthread_t field is valid or not. Use
    e_util_pthread_id() in debugging output.

    * mail-mt.c
    * mail-session.c
    * mail-vfolder.c: Include just <gtk/gtk.h> and not a handful of
    individual gtk headers. Harmonize #include order and syntax. Use
    pthread_equal() to compare pthread_t values.

    (em_channel_setup): Call g_io_channel_win32_new_socket() on Win32
    instead of g_io_channel_unix_new(). This avoids the occasional
    "giowin32.c:1661: 12 is both a file descriptor and a socket, file
    descriptor interpretation assumed." style warnings, which indicate
    a real problem in this case.

    * mail-ops.c: Use gstdio wrappers. Open file in binary mode.

    * mail-signature-editor.c
    * mail-tools.c
    * mail-vfolder.c
    * message-list.c
    * message-tag-followup.c: Beautify #include order and syntax. Use
    gstdio wrappers. Construct pathnames of files to be read at
    run-time instead of using compile-time paths.

    * mail-tools.c (mail_tool_get_local_movemail_path): Not used, put
    in #if 0.

    * importers/elm-importer.c
    * importers/evolution-mbox-importer.c
    * importers/evolution-outlook-importer.c
    * importers/mail-importer.c
    * importers/netscape-importer.c
    * importers/pine-importer.c: Use GLib API when
    applicable.

2005-12-16  Sam Yang  <sam.yang@sun.com>

    ** Fixes bug #323867.

    * em-folder-view.c (emfv_setting_notify): Respond to the change of
    /apps/evolution/mail/display/show_deleted and thread_list in
    gconf.

2005-12-12  Karsten BrÀckelmann  <guenther@rudersport.de>

    * em-folder-view.c: Mail Context Menu re-ordered correctly,
    fixes bug #323140.

2005-12-12  Shreyas Srinivasan  <sshreyas@novell.com>

    * mail.error.xml: Fix #47857
    
2005-12-05  Shi Pu  <shi.pu@sun.com>

    See bug ** 323253

    * mail-send-recv.c (format_url): If url->host is NULL or it is
    emtpy, don't print it out in send & receive dialog.

2005-11-28  Jeffrey Stedfast  <fejj@novell.com>

    * em-folder-view.c (emfv_setting_notify): literal strings do not
    need to be \0 terminated, they are already nul-terminated by
    definition.

2005-11-28  Sam Yang  <sam.yang@sun.com>

    ** See bug #322414

    * em-folder-view.c (emfv_setting_notify): Respond to the change of
    /apps/evolution/mail/display/show_preview in gconf.

2005-11-25  Tor Lillqvist  <tml@novell.com>

    * em-composer-prefs.c (sig_add_script_response): Use gstdio
    wrappers.
    (url_requested): Use g_filename_from_uri()
    instead of just stripping off the "file:" prefix.
    (em_composer_prefs_construct): Construct glade file pathname at
    run-time for Win32 install-anywhere.

2005-11-23  Parthasarathi Susarla <sparthasarathi@novell.com>
    
    ** See bug #315987

    * em-composer-utils.c (em_utils_composer_send_cb): Send only if
    account is enabled
    (em_utils_composer_save_draft_cb): Save message to server folder
    only if the account is enabled, else save it locally
    (generate_account_hash): Add default account into the account hash
    only if the account none of the account is enabled.
    (guess_account): use only enabled account

    * mail.error.xml: Add error message for send-no-account-enabled

2005-11-11  Boby Wang <boby.wang@sun.com>

    ** See bug 321214.

    * mail-config.glade: Focus on the Tools-> Settings-> Composer
    Preferences -> Forward Style and Reply Style comboboxes.Comboboxes
    are named after their current settings. Now the names were
    corrected.

2005-10-26  Vivek Jain <jvivek@novell.com>
    
    **See #313096

    * em-junk-hook.c (emjh_construct) load the plugin only if it is
    enabled.

2005-10-22  Parthasarathi Susarla <sparthasarathi@novell.com>

    * mail-config.c (mail_config_get_default_account): Return valid
    transport, only if the account is enabled.

2005-10-22  Parthasarathi Susarla <sparthasarathi@novell.com>

    * em-composer-utils.c (create_new_composer): If the account
    corresponding to the fromuri is not enabled.  Then load the
    preferred account from the composer.

2005-10-21  Jeff Cai <jeff.cai@sun.com>

    Reverse previous patch because of bug 319376.   
    * em-folder-view.h:

2005-10-21  Jeff Cai <jeff.cai@sun.com>

    * mail/em-folder-view.h: Change the declaration of flag
    'preview_active' from one bit of int to one bit of guint because
    it will be -1 on linux if being declared one bit of int.

2005-10-19  Philip Van Hoof <pvanhoof@gnome.org>
    
    ** See bug 318611

    * mail/em-composer-utils.c: data hiding

2005-10-19  Harish Krishnaswamy <kharish@novell.com>

    * em-format-html-display.h: Include e-attachment-bar.h relative to
    the top dir, so it stops borking the print-message plugin.

2005-10-18  Srinivasa Ragavan <sragavan@novell.com>

    * em-folder-browser.c (emfb_focus_search, emfb_tools_vfolders):
    Make '/' to focus on search bar entry. Fixes bug #268027

    * em-folder-view.c (emfv_enable_menus): Set the target widget.

    * em-format-html-display.[ch] (em_format_html_display_get_bar):
    Added a function to get the attachment bar.

    * em-utils.c (em_utils_temp_save_attachments): Added function to
    save parts of the attachments.

2005-10-03  Srinivasa Ragavan <sragavan@novell.com>

    * em-folder-view.c (emfv_ena) (emfv_popup_items): Mark visible
      with junk flags as well.

    * em-popup.[ch] (em_popup_target_new_select): Set the flags for
      junk respectively.
    
2005-10-18  Sankar P  <psankar@novell.com>
    
    - Enhances Signature-Preferences. 
    - Added shortcuts for common operations.
        -- Delete on Del key
        -- Edit on Dbl.Click
    - Prevents adding duplicate and NULL signatures

    * mail-signature-editor.c (menu_file_save_cb:
    (mail_signature_editor, sig_name_changed):
    (menu_file_save_close_cb, delete_event_cb):
    (do_exit): Modified the functions for handling the above
    scenarios.

    * mail.error.xml: Added error strings for duplicate and NULL
    signatures.

    * em-composer-prefs.c (em_composer_prefs_construct):
    (sig_delete_cb, sig_add_cb): Modified the functions so as to
    handle the keyboard accelarators and to grab focus to the list on
    deletion/insertion of signatures.

    * em-composer-prefs.c (signature_key_press, sig_tree_event_cb):
    Added new functions to handle the keypress events on the
    signatures list tree.

    Fixes #269749
    
2005-09-29  Parthasarathi Susarla <sparthasarathi@novell.com>
    
    ** See bug 317284
    
    * em-mailer-prefs.c (emmp_header_add_header): Check if its a valid
    header and only then add it
    
2005-09-28  Tor Lillqvist  <tml@novell.com>

    * em-composer-utils.c (reply_get_composer, get_reply_list):
    (post_reply_to_message):

    * em-folder-view.c (emfv_format_link_clicked):

    * importers/netscape-importer.c (netscape_get_boolean): Use
    g_ascii_str(n)casecmp() instead of str(n)casecmp(). We are
    comparing to literal ASCII strings in these cases, so just
    casefolding ASCII is enough. Also better for portability.

    * em-format-html-display.c

    * message-list.c: Define localtime_r() for Win32 using localtime()
    (which is thread-safe in Microsoft's C library).

    * mail-tools.c (mail_tool_do_movemail): Not implemented on Win32.

2005-09-28  Parthasarathi Susarla <sparthasarathi@novell.com>
    
    See bug ** 317329

    * em-vfolder-rule.c (em_vfolder_rule_add_source): Do not add a
    NULL uri.

2005-09-26  S.Antony Vincent Pandian <santony@gmail.com>

    Fixes #208647

    * em-folder-tree.c: Have added a menu item Empty Trash in the
    folder tree's context menu and also added its callback.

2005-09-22  Carsten Guenther <carsten.guenther@scalix.com>

    Fixes #316983

    * em-composer-utils.c (em_utils_send_receipt):
    Exchanged the FROM and TO fields so that a read
    receipt actually goes to the sender of the original
    message.

2005-09-21  Sankar P  <psankar@novell.com>

    * em-account-editor.c (emae_defaults_page): Added code to enable
    the sent folder button for accounts with "None" set as the
    Receiving Server type.  Fixes #315506

2005-09-15  Sankar P  <psankar@novell.com>

    * em-folder-tree-model.c (em_folder_tree_model_set_folder_info):

    * em-folder-tree.c (render_pixbuf): Added enum and the code to
    change the icon for sent items folder. Fixes #257321
    
2005-09-02  Harish Krishnaswamy  <kharish@novell.com>

    * default/C/Inbox: Update the Welcome mail.

2005-08-25  Not Zed  <NotZed@Ximian.com>

    ** See bug #314440.

    * em-format-html.c (efh_url_requested): check the content object's
    mime type, not the container, when seeing if the data should be
    written.
    (efh_write_text_html): add some debug.

    * em-format-html-display.c (efhd_html_button_press_event): fix
    debug.

2005-08-22  Srinivasa Ragavan <sragavan@novell.com>

    * em-format-html-display.c (efhd_bar_resize): Dont call update.
    Just set the width on the bar.

2005-08-23  Not Zed  <NotZed@Ximian.com>

    * mail-tools.c (mail_tool_uri_to_folder): cast warning away.

    * mail-folder-cache.c: include missing header for
    e_filename_make_safe.

    * em-junk-hook.h: Fix some header includes, fix the include guard
    to use the right name.
    (EMJunk): Ugh, this is an object, properly derive from it!  How
    did this work?

    * em-junk-hook.c (em_junk_check_junk): fix bool conversion.

    * em-format-html-display.c (efhd_bar_popup_position): another
    wraning, why this crap isn't in the attachment bar like i said it
    should be, i'll never know.
    (efhd_xpkcs7mime_viewcert_foad): only define if used.

    * em-account-editor.c (emae_defaults_page): attempt to fix parentheses
    (emae_security_page): fix conditional compilation warnings.

2005-08-19  Not Zed  <NotZed@Ximian.com>

    ** See #312668.

    * mail-component.c (setline_done, impl_setLineStatus): change the
    camel-session online status before (if we're going online) or
    after (if we're going offline) actually doing offline processing.

2005-08-19  Not Zed  <NotZed@Ximian.com>

    * em-format.c (emf_multipart_encrypted): put the s/mime message
    back, awaiting string approval for a change otherwise.

2005-08-18  Not Zed  <NotZed@Ximian.com>

    * em-format-html-display.c (efhd_message_add_bar): dont add
    attachment bar if it is disabled.
    (efhd_attachment_button): dont add attachments if there is no bar.

    * em-format.c (emf_inlinepgp_signed, emf_inlinepgp_encrypted): fix
    the error messages for consistency.  We dont need to check
    content-type, since we only get called with the right one.
    (emf_multipart_encrypted): fix up wrong s/mime error.

    * em-format-html.c (efh_inlinepgp_signed)
    (efh_inlinepgp_encrypted): moved to em-format.c; otherwise this
    will break replying, etc.

    ** See #271894.

    * em-format.c (emf_multipart_encrypted): use the content object's
    content-type to check types.

2005-08-16  Not Zed  <NotZed@Ximian.com>

    ** See #312668.

    * mail-component.c (impl_setLineStatus): new offline interface.
    (setline_check, setline_done): and implementation.

    * mail-offline-handler.[ch]: destroyed, burnt, dissolved in acid.

2005-08-17  Srinivasa Ragavan <sragavan@novell.com>

    * em-format-html-display.c 
    (efhd_bar_save_selected): Fix a warning.
    (efhd_bar_resize): Fix the bar size to match other widgets.
    (efhd_bar_scroll_event): Fix scroll issue over bar. bug #312224.
    (efhd_add_bar): Add a frame around the attachment bar. bug #312033

2005-08-17  Kaushal Kumar  <kakumar@novell.com>

    * em-composer-prefs.c (url_requested): Add the close call for fd.

    See bug #307375.

2005-08-15  Not Zed  <NotZed@Ximian.com>

    ** See #313440.

    * Makefile.am (mailinclude_HEADERS): Include the idl generated
    headers.

2005-08-16  Srinivasa Ragavan <sragavan@novell.com>

    * em-format-html-display.c (efhd_attachment_button): Sets the filename
    in the attachment structure instead of the part
    
2005-08-15  Christian Kellner  <gicmo@gnome.org>

    * mail-send-recv.c (get_folders): Honour the check_all flag for
    the scalix provider.  Fixes bug #313582.

2005-08-14  Rodney Dawes  <dobey@novell.com>

    * em-folder-view.c (emfv_popup_items): Fix two mnemonic conflicts
    in the context menus for the mailer

2005-08-12  Vivek Jain <jvivek@novell.com>

    * em-account-editor.c (emae_check_complete): first prepare the
    page and then validate **Fixes #273842

2005-08-11  Not Zed  <NotZed@Ximian.com>

    ** See #232499.

    * mail-folder-cache.c (rename_folders): rename view meta-data
    along with the folder.

2005-08-11  Vivek Jain <jvivek@novell.com>
    
    * em-folder-tree-model.c (account_changed): check if the account
    is enabled, before adding the store

    ** Fixes #313057
    
2005-08-11  Parthasarathi Susarla <sparthasarathi@novell.com>

    * em-folder-view.c (emfv_enable_menus): return the target in any
    case.  It will be an empty target and not NULL.

    Fixes bug 312420

2005-08-11  Srinivasa Ragavan <sragavan@novell.com>

    * em-format-html-display.c (efhd_attachment_bar_refresh):
    (efhd_bar_resize, efhd_add_bar): Fix to hide the attachment bar
    when no attachments and to resize when the window is resized.

2005-08-10  Not Zed  <NotZed@Ximian.com>

    ** See #271985.

    * mail-config.c (mail_config_write_on_exit) 
    (mail_config_get_account_by_source_url) 
    (mail_config_get_account_by_transport_url) 
    (mail_config_get_default_transport): 

    * mail-component.c (load_accounts): check url for content before
    using it.

2005-08-09  Not Zed  <NotZed@Ximian.com>

    ** See #312715.

    * em-folder-tree.c (emft_drop_folder_rec): removed.
    (emft_drop_folder): call em_folder_utils_copy_folders to perform
    the operation rather than: doing it sync when it shouldn't be, and
    2; copying code redundantly.

    * em-folder-utils.c (em_folder_utils_move_folder): remove this
    redundant api.
    (em_folder_utils_copy_folder): add delete flag.
    (em_folder_utils_copy_folders): export this function.  fix strange
    argument order.

2005-08-10  Tor Lillqvist  <tml@novell.com>

    * Makefile.am: Link with all needed libraries. Use -no-undefined
    on Win32. Work around annoying MSYS feature on Win32 when
    installing the schemas: Echo the command to a temporary .bat file
    and run it with cmd.exe...

    * importers/Makefile.am: Use the bootstrap import library for
    libevolution-mail.la on Win32 as libevolution-mail.la hasn't been
    built yet when we come here. Use -no-undefined on Win32. Use
    privsolib instead of privlib. (See ../ChangeLog.)

2005-08-08  Not Zed  <NotZed@Ximian.com>

    ** See bug #304938.

    * mail-ops.c (mail_send_message): don't try to dereference the
    transport if we don't have one.

2005-08-04  Not Zed  <NotZed@Ximian.com>

    ** See bug #300881.

    * em-account-editor.c (emae_setup_signatures): don't add the
    signature listener if we've already added it.

2005-08-08  Vivek Jain <jvivek@novell.com>

    * em-format.c (emf_multipart_appledouble): check part before using
    it, else dump source

2005-08-05  Not Zed  <NotZed@Ximian.com>

    ** See bug #312397.

    * em-format-quote.c (emfq_format_message): if we are rendering an
    attached message, include the headers always and a marker for it.

2005-08-07  Rodney Dawes  <dobey@novell.com>

    * em-folder-browser.c (emfb_search_items):
    * em-folder-tree-model.c (sort_cb, em_folder_tree_model_load_state):
    * em-folder-tree.c (emft_drop_target):
    * em-folder-view.c (emfv_popup_items, emfv_uri_popups):
    * em-utils.c:
    * em-vfolder-editor.c (em_vfolder_editor_new):
    * em-vfolder-rule.c (em_vfolder_editor_sourcelist_new):
    * mail-dialogs.glade:
    * mail-vfolder.c (vfolder_setup_desc, vfolder_setup_do):
    (vfolder_adduri_desc, vfolder_load_storage, vfolder_edit):
    (vfolder_edit_rule, vfolder_gui_add_rule):
    * mail.error.xml:
    Change instances of "vfolder" that appear in the UI to use the term
    "Search Folder" instead
    Update some comments to use the term "Search Folder" instead of vfolder
    
2005-08-05  David Malcolm  <dmalcolm@redhat.com>

    * em-account-editor.c (emae_option_checkspin): initialize local
    variable "label".

2005-08-04  Not Zed  <NotZed@Ximian.com>

    ** See bug #273885.

    * em-utils.c (em_utils_edit_filters): setup filter source names
    properly translated.

    * em-filter-editor.c (em_filter_editor_construct): take an array
    of structs for the filter source so the incoming/outgoing is
    properly translated.

    ** See bug #312397.

    * em-format-quote.c (emfq_format_message): dont quote credits
    here.
    (emfq_format_message_prefix): new prefix handler for credits.
    (emfq_format_clone): invoke the message prefix before anything
    else.

    ** See bug #310840.

    * em-icon-stream.c (em_icon_stream_get_image): check for /0
    possibility.

    ** See bug #308512.

    * em-account-editor.c (emae_authtype_changed): take into account
    the writability of the password when sensitising remember
    password.
    (get_password): small hack to disable the save-password button
    when appropriate.

2005-08-05 Srinivasa Ragavan <sragavan@novell.com>

    * em-format-html-display.c (efhd_init, efhd_complete):
    (efhd_message_add_bar): Fixes the bug #312410.
    
2005-08-04  Srinivasa Ragavan <sragavan@novell.com>

    * em-utls.c (emu_update_save_path): Killed a warning.

2005-08-03  Not Zed  <NotZed@Ximian.com>

    * em-folder-browser.c (emfb_set_folder): not here.
 
    * em-folder-view.c (emfv_set_folder): ref the folder here.

2005-08-03  Not Zed  <NotZed@Ximian.com>

    * em-folder-view.c (emfv_message_reply): try to fix #309647, only
    act if the selection is actually active.

2005-07-29  Arunprakash <arunp@novell.com>

    * mail/em-folder-utils.c (em_folder_utils_delete_folder):
    Allocated a new string to be used for the error dialog response to
    avoid multiple frees.

2005-08-01  Shakti Sen <shprasad@novell.com>

    * em-composer-prefs.c: Included 'gtkentry.h' to resolve the
    symbol 'GTK_ENTRY'.

    Partly fixes bug #231968.

2005-08-02  Srinivasa Ragavan <sragavan@novell.com>

    * em-utils.c (emu_get_save_filesel, emu_save_part_response):
    (emu_save_messages_response): Fixed a bug where the last path is
    not preserved well.

2005-08-01  Not Zed  <NotZed@Ximian.com>

    * em-subscribe-editor.c (sub_fill_level): always process all nodes
    we have, even if we have already seen the top result.

2005-07-29  Not Zed  <NotZed@Ximian.com>

    ** See bug #300607.

    * mail-vfolder.c (store_folder_renamed_rec, store_folder_renamed):
    rename all folders in the folder tree renamed.

2005-07-29  Shreyas Srinivasan  <sshreyas@novell.com>

    * mail-ops.c: Fix #311223. Include <camel/camel-multipart.h>
    so that lazy binding does not fail on CAMEL_IS_MULTIPART.
    
2005-07-29  Shreyas Srinivasan  <sshreyas@novell.com>

    * em-account-editor.c (emae_defaults_page): Fix #307538. Check if
    the provider type exists  before senisitizing widgets.
    
2005-07-28  Not Zed  <NotZed@Ximian.com>

    ** See bug #311440.

    * em-utils.c (em_utils_in_addressbook): handle NULL address.
    
2005-07-28  Praveen Kumar <kpraveen@novell.com>

    * em-account-editor.c (emae_check_complete) : Update the "Full Name" 
    text entry with the detected real name of the user. Fixes bug 311778
    
2005-07-27  Srinivasa Ragavan <sragavan@novell.com>
    
    * mail-config.glade: Changed "Host" to "Server"

2005-07-27  Not Zed  <NotZed@Ximian.com>

    * mail-send-recv.c (get_folders): hack to make it honour the
    'refresh only inbox' imap/groupwise setting.

2005-07-26  Harish Krishnaswamy  <kharish@novell.com>

    * Makefile.am: fix make distcheck issues.

2005-07-25  Srinivasa Ragavan <sragavan@novell.com>

    * em-format-html-display.c (efhd_init, efhd_finalise):
    (efhd_attachment_image, efhd_attachment_button):
    (efhd_format_attachment): Added code to create a attachment bar.

    * em-format-html.c (efh_format_message) Added code to add bar at
    the beginning of the message.

    * em-popup.[ch] (em_popup_target_new_attachments)
    (emp_part_popup_set_background)
    (emp_standard_menu_factory): Added code to handle the popup menu
    inside the attachment bar.

    * em-utils.[ch] (em_utils_edit_filters, emu_get_save_filesel)
    (em_utils_save_part, em_utils_save_messages): Added code to handle
    save selected and save all options of the attachment bar.

2005-07-21  Not Zed  <NotZed@Ximian.com>

    * em-folder-browser.c: reverted dobey's busted view->hide* menu
    stuff.

    * em-account-editor.c (emae_option_entry): if we get a null
    default, then set "" on the entry.
    (emae_option_entry): set the default value on the url if it
    doesn't exist already.

2005-07-20  Not Zed  <NotZed@Ximian.com>

    * mail-send-recv.c (refresh_folders_desc, refresh_folders_get)
    (refresh_folders_got, refresh_folders_free, get_folders)
    (receive_update_got_folderinfo, receive_update_got_store): refresh
    all the folders manually and directly.

    * mail-folder-cache.c (setup_folder): propagate even -1 unread
    counts, they get ignored later.

    * em-composer-utils.c (emu_handle_receipt_message)
    (em_utils_handle_receipt): use getmessagex too, so we can always
    clear any error.

    * em-folder-view.c (emfv_message_selected_timeout)
    (emfv_list_done_message_selected): use getmessagex and do
    something meaninful with the error.

    * mail-ops.c (mail_get_messagex): added new get message which
    returns an exception.

2005-07-19  Not Zed  <NotZed@Ximian.com>

    * mail-tools.c (mail_tool_uri_to_folder): dont get the service
    connected, it will connect if it needs to.

    * mail-ops.c (get_folderinfo_get): * em-folder-utils.c
    (emft_copy_folders__copy)
    (emfu_delete_folders): * em-folder-tree.c
    (emft_get_folder_info__get): Always request subscribed folders, if
    the backend doesn't implement it it will ignore it.

2005-07-13  Not Zed  <NotZed@Ximian.com>

    * mail-send-recv.c (mail_autoreceive_init, auto_online): listen to
    session online events, and if we are online, trigger an
    auto-receive of all auto-check accounts.

2005-07-11  Not Zed  <NotZed@Ximian.com>

    * mail-send-recv.c (auto_account_commit): force an update
    immediately if we're setting up the timeout to start with.

    * em-folder-tree-model.c (em_folder_tree_model_set_unread_count):
    noop if the unread count < 0.
    (em_folder_tree_model_set_folder_info): only set the unread count
    if we actually have one.

    * em-folder-tree.c (emft_tree_row_expanded): get the folder list
    'fast'.

    * mail-ops.c (get_folderinfo_get): get the folder list 'fast'.

2005-07-19  Srinivasa Ragavan <sragavan@novell.com>

    * em-folder-tree.c (emft_popup_move): calling the wrong api to
    move a folder. Infact it was copying for move.

2005-07-14  Vivek Jain <jvivek@novell.com>

    * em-composer-utils.c: included missing header file
    camel-multipart.h

    **Fixes #310330

2005-07-13  Kjartan Maraas  <kmaraas@gnome.org>

    * em-mailer-prefs.c (em_mailer_prefs_construct): Free font name

    * mail-config.c (config_write_style): Free font name and name of
      citation color.

    * message-list.c (regen_list_regened, regen_list_free): Free
      search string. Thanks to Michael Zucchi for walking me through
      this one. My brain wasn't running on all it's cylinders...

2005-07-10  Shreyas Srinivasan <sshreyas@novell.com>

    * mail-config.[ch]: Add new functions to remove proxy accounts and
    proxies created by the account.

    * mail-compnent.c: Remove proxy accounts at startup

    * mail.error.xml: Add warnings for proxy disable and removal of a
    proxy when its parents are removed.

    * em-account-prefs.c: Add checks not to display proxies and
    handling of parent removal/ disabling.
    
2005-07-06  Vivek Jain <jvivek@novell.com>

    * em-junk-filter.c: moved to plugins/sa-junk-plugin

    * em-junk-filter.h: removed

    * em-junk.plugin.[ch]: removed

    * em-junk-hook.[ch]: added new files to have a new hook

    * Makefile.am: updated to removed/add these files.

    * mail-session.c (mail_session_init): assign NULL to junk_plugin,
    remove included file "em-junk-filter.h"

    * mail-component-factory.c (make_factory): register type for
    EMJunkHook

2005-07-05  Not Zed  <NotZed@Ximian.com>

    * em-format-html-display.c (efhd_attachment_image): use the cache,
    since we set it up.
    (efhd_image): added a (private!) format handler for all the image
    types so we intercept them and handle them directly.
    (efhd_image_fit, efhd_image_unfit): replace the resize callback
    with two much simpler ones.

    * em-icon-stream.c (em_icon_stream_get_image): added 'fit to'
    arguments.  Changed dramatically to get approximate fit-to image,
    update cache, etc.
    (em_icon_stream_is_resized): added 'fit to' arguments.  changed to
    manipulate the cache properly.
    (emis_fit): helper to fit an image to a size.
    (em_icon_stream_new): added 'fit to' arguments rather than poking
    structures.

    * em-format-html-display.c (efhd_attachment_image): fixed a memory
    leak, various style issues.  Removed all scaling code.
    (efhd_attachment_popup): show menu's appropriately.  add back the
    hide/show menu always.
    (efhd_image_popup): fix formatting.

    ** Applied patch from Srini for scaling images to fit by default.

2005-07-04  Veerapuram Varadhan <vvaradhan@novell.com>

    * mail-component.c (handleuri_got_folder): Added "forward"
    command-line option.
    
2005-07-06  Not Zed  <NotZed@Ximian.com>

    * importers/evolution-mbox-importer.c (mbox_getwidget): wrap the
    widgets in another vbox so they display properly.

    * importers/pine-importer.c (pine_getwidget): pack the 'mail'
    widget.

    * importers/pine-importer.c (pine_import):
    importers/elm-importer.c (elm_import):
    importers/evolution-mbox-importer.c (mbox_import): Dont create
    widgets anymore, report progress through the EImport and handle
    cancel.

2005-07-01  Not Zed  <NotZed@Ximian.com>

    * importers/Makefile.am: remove shell/importer link & take out
    netscape & outlook temporarily.

    * Makefile.am: Removed importer link.

2005-06-24  Matt Brown  <matt@mattb.net.nz>

    * em-inline-filter.c: implement extraction of inline
    signed/encrypted pgp parts and package them into
    x-inlinepgp-signed/x-inline-pgp-encrypted parts.

    * em-format-html.c: Formatters to verify/decrypt and then display
    the parts generated by the inline filter.

2005-06-25  Not Zed  <NotZed@Ximian.com>

    ** See bug #307398

    * mail-session.c (alert_user): copy the prompt string, in 'no
    cancel' mode we run asynchronously.
    (free_user_message): & free it.

2005-06-24  Not Zed  <NotZed@Ximian.com>

    * em-format-html.c (efh_url_requested): dont pass data gtkhtml
    definitely can't handle, to gtkhtml.  This is no security patch,
    but stops gtkhtml wasting time tying to render malicious mails or
    other rubbish.

2005-06-21 Brian Mury <b.mury@ieee.org>

    ** See bug #301466.

    * filtertypes.xml, searchtypes.xml, vfoldertypes.xml: fix the
    "match all" case to actually work.

2005-06-18  Tor Lillqvist  <tml@novell.com>

    * GNOME_Evolution_Mail.server.in.in: Use SOEXT.

2005-06-08  Not Zed  <NotZed@Ximian.com>

    * mail-component.c (view_changed_cb): make this run a timeout so
    we don't update too often and suck loads of cpu time.

2005-06-07  Andre Klapper <9016009@gmx.de>

    * mail.error.xml: Fixing typo (bug 306151)

2005-06-02  Not Zed  <NotZed@Ximian.com>

    * Evolution-Mail.idl: only let this be included once.

    * mail-component.c (mail_component_class_init): Setup a test
    function, and fix the bonobo init function so we're actually a
    mailcomponent and not just an evolutioncomponent.
    
2005-06-02  Not Zed  <NotZed@Ximian.com>

    * mail-component.c: change this to sub-class evolution-component,
    not bonobo-object.

    * Evolution-Mail.idl: Made the mail component sub-class
    Evolution.Component so it can add new interfaces for remote gui
    mail operations.

2005-05-31  Rodney Dawes  <dobey@novell.com>

    * em-folder-browser.c (emfb_view_hide_read, emfb_view_show_selected):
    (emfb_view_show_all): Update these methods to use the listener method
    of access from bonobo as they are radio buttons now
    (emfb_verbs): Comment out the verbs for the above methods, as they are
    configured through add_listener now
    (emfb_enable_map): s/ViewHideSelected/ViewShowSelected/
    (emfb_activate): Add the listeners for the radio buttons for filtering
    the message list for unread, selected, or all messages
    
2005-05-24  Rodney Dawes  <dobey@novell.com>

    * em-folder-selector.c (folder_created_cb): Remove this unused method
    (emfs_response): Remove unused variable declarations

    * em-folder-view.c (emfv_popup_{load_images,selectall}): Remove
    these unused methods
    
    * mail-component.c: Include em-folder-utils.h to fix warnings
    
2005-05-20  Not Zed  <NotZed@Ximian.com>

    * mail-component.c (mail_component_peek_session): add helper for
    plugins to get mail session.

2005-05-19  Chenthill Palanisamy  <pchenthill@novell.com>

    * mail.error.xml: Added a error message required for
    marking messages as read in subfolders.

2005-05-19  Not Zed  <NotZed@Ximian.com>

    * em-format-html-print.c (em_format_html_print_raw_message): new
    function to print a non-foldered message.  untested.

2005-05-19  Not Zed  <NotZed@Ximian.com>

    * em-folder-utils.h: fix rodney's name choices.  fix
    multiple-inclusion.  fix forward references.  fix all callers.
    add many fixme's for the busted api's.

    * em-format-quote.c (emfq_format_clone): use pseudo mime type to
    find message formatter.

    * em-format-html-display.c (efhd_format_message): remove, it
    didn't do anything.

    * em-format-html.c (efh_format_message): make this a handler
    callback.

    * em-format.c (emf_message_rfc822): make this use the pseudo
    mime-type x-evolution/message/rfc822 instead of the hardcoded
    format_message callback.

    * em-format-html-display.c (efhd_message_prefix): make this use a
    pseudo-mime-type handler rather than hard-coded, so it can be
    overridden by a plugin.

2005-05-17  Radek Doulik  <rodo@novell.com>

    * em-format-html.c: removed include of htmlengine.h which wasn't
    needed

    * em-format-html-display.c: use top level gtkhtml API instead of
    lower level one

    * em-folder-view.c (emfv_popup_selectall): use gtk_html_select_all
    instead of calling html engine directly

2005-05-16  Not Zed  <NotZed@Ximian.com>

    * mail-vfolder.h: 
    * mail-autofilter.h: forward-reference structures

    * *.h: Make installed headers includable from mail/

    * Makefile.am (mailinclude_HEADERS): install various mail headers
    as first cut at public plugin api.

    * move e-error into e-util/

2005-05-16  Srinivasa Ragavan <sragavan@novell.com>

    * GNOME_Evolution_Mail.server.in.in: Added tooltips
        
2005-05-13  Rodney Dawes  <dobey@novell.com>

    * Makefile.am: Add new em-folder-utils.[ch] abstraction

    * em-folder-browser.c: Update for new menu layout
    Add new methods to handle the actions that were previously only
    available from the context menu when right-clicking on a folder

    * em-folder-selector.c (emfs_response): Just call emfu_folder_create
    if the user wants to create a new folder in the selector dialog
    (em_folder_selector_get_selected_path): Clean up the code to fix a
    couple potential crashes

    * em-folder-tree.[ch]: Add methods to get pointers to a CamelFolder or
    CamelFolderInfo object for the selected item in the tree
    Add a method to get a pointer to an EMFolderTreeModelStoreInfo object
    for the selected store in the tree
    Move folder operations out into em-folder-utils.[ch] so that they
    are abstracted from the tree and can be used by methods other than
    the internal context menu

    * em-folder-utils.[ch]: Move the folder operations code to here

    * em-folder-view.c: Update for the new menu layout
    Fix Mark as Read/Unread in the context menu to only show up in the list

    * mail-component.c (create_item): Just call emfu_folder_create here
    when the user requests to create a new folder from the New toolbar item

2005-05-13  Shreyas Srinivasan  <sshreyas@novell.com>
    
    * Fixes bug #273868, #300113, #302831.
    
    * mail-offline-handler.c : Add check for Camel Offline
    store to is_service_relevant.

2005-04-21  Jeffrey Stedfast  <fejj@novell.com>

    * em-composer-utils.c (post_reply_to_message): Use the real folder
    and real uid (not the virtual if replying to a message in a
    vfolder). Fixes bug #269129.

2005-05-06  Vivek Jain <jvivek@novell.com>

    * em-folder-view.c: EPopupItem emfv_popup_items[] replace Print
      with Print... Fixes #272242

2005-05-07  Sankar P  <psankar@novell.com>
    
    * mail-ops.c (mail_send_message)
    Added code to prevent copying of sent items, based on provider type

    * em-account-editor.c (emae_defaults_page)
    Added code to disable the Sent Folders button

2005-05-06  Not Zed  <NotZed@Ximian.com>

    * mail.error.xml: renamed from mail-errors.xml, add i18n tags, fix
    some whitespace issues.  Removed some unecessary translations.

2005-05-06  Chenthill Palanisamy  <pchenthill@novell.com>
    
    * evolution-mail.schemas.in.in: Removed the schema 
    /schemas/apps/evolution/mail/junk/sa/daemon_port
    since its not used anymore.

2005-05-06  Sarfraaz Ahmed <asarfraaz@novell.com>

    * mail/mail-errors.xml : Fixed a typo for #272786

2005-05-05  Radek Doulik  <rodo@site>

    * em-folder-view.c (em_folder_view_get_popup_target): use
    gtk_html_command to ask if selection is active tto avoid using
    selection API directly
    (emfv_popup_copy_text): use gtkhtml API instead of engine API
    (emfv_message_reply): use new gtk_html_get_selection_html function
    to avoid using low level gtkhtml APIs

2005-05-03  Radek Doulik  <rodo@site>

    * em-format-html-display.c: removed include of htmlinterval.h as
    it's not needed

2005-04-28  Parthasarathi Susarla <sparthasarathi@novell.com>

    * em-folder-view.c (emfv_set_folder): remove a call to
      refresh folder from here
    * em-folder-browser.c (emfb_set_folder): call 
      mail_refresh_folder here
    
2005-04-28  Not Zed  <NotZed@Ximian.com>

    * message-list.c: add some message list loading/profiling points,
    "list".

    * em-folder-view.c: add some message display/loading profiling
    points, "goto".

2005-04-12  Not Zed  <NotZed@Ximian.com>

    ** See bug #273752

    * em-folder-tree.c (emft_drop_folder_rec): handle NULL
    "parent_name" - dropping to store node.

2005-04-08  Jeffrey Stedfast  <fejj@novell.com>

    * em-composer-utils.c (em_utils_send_receipt): Simplify the
    scanning for '@' by using strchr().

2005-04-08  Not Zed  <NotZed@Ximian.com>

    * em-composer-utils.c (em_utils_ask_receipt): removed.
    (em_utils_handle_receipt): asynchronously load message if none is
    supplied.

    * em-folder-view.c (emfv_set_seen): pass message in.

    * em-composer-utils.c (em_utils_ask_receipt): strip leading lwsp
    on the disposition address.
    (em_utils_ask_receipt): added a comment about which rfc.
    (em_utils_handle_receipt): merged ask_receipt into here.  Changed
    api to take a message instead, so we don't have to load the
    message every time.  Also only set receipt-handled if we have a
    receipt requested in the first place.

2005-04-05  ERDI Gergo  <cactus@cactus.rulez.org>

    * mail-errors.xml: Added new dialog for receipt requests

    * em-composer-utils.c (em_utils_guess_account): Made guess_account
    public, to be callable from em-folder-view
    (em_utils_send_receipt): New function to send an RFC
    2298-compliant message delivery notification

2005-04-05  Not Zed  <NotZed@Ximian.com>

    ** See bug #74320

    * em-format.c (em_format_part_as): if the snooped type is NULL,
    fall back to application/octet-stream.

2005-04-04  Rodney Dawes  <dobey@novell.com>

    * em-folder-view.c (emfv_popup_items): Add Mark as Read/Unread back
    to the context menu (#73192)
    Fix the ordering values for some menu items in the context menu that
    had duplicate order values

2005-03-31  Not Zed  <NotZed@Ximian.com>

    ** See bug #72935

    * em-folder-view.c: always enable the stop button.

2005-03-31  Not Zed  <NotZed@Ximian.com>

    ** See bug #72518

    * em-folder-tree.c (emft_popup_delete_folder): prompt for vfolder
    case differently.

2005-03-31  Not Zed  <NotZed@Ximian.com>

    * message-list.c (on_selection_changed_cmd): only noop if we only
    have 1 message selected, otherwise we don't update the menu's.
    Fixes a problem introduced by 64987's fix.

2005-03-30  Li Yuan  <li.yuan@sun.com>

    * em-account-prefs.c: (em_account_prefs_treeview_new):
    add a11y name to Mail Accounts Table
    * mail-config.glade:
    add a11y name to tables in Mail Preferences page and 
    Composer Preferences page.
    Fixes #73914

2005-03-16  Jeffrey Stedfast  <fejj@novell.com>

    * em-format-html.c (efh_format_headers): Don't show multiple
    "Mailer" headers even if multiple x-mailer/user-agent/whatever
    headers exist. Fixes bug #70394.

2005-03-16  Not Zed  <NotZed@Ximian.com>

    ** See bug #73363

    * em-folder-view.c (emfv_list_message_selected): insert a timeout
    before loading the message.
    (emfv_message_selected_timeout): handle the timeout, start loading
    the message.
    (emfv_set_folder, emfv_destroy): cleanups for above.

2005-03-16  Not Zed  <NotZed@Ximian.com>

    ** See bug #73559
    
    * em-filter-source-element.c
    (em_filter_source_element_get_sources): check the url != "" and decoded
    before using it.

2005-03-16  Not Zed  <NotZed@Ximian.com>

    ** See bug #71003, again.

    * mail-component.c (impl_quit): fix sense of 'can quit' logic.

2005-03-14  Not Zed  <NotZed@Ximian.com>

    ** See bug #73550

    * em-format-hook.c (emfh_format_format): if we are disabled, don't
    invoke handler, try to invoke old handler if there was one.

2005-03-10  Not Zed  <NotZed@Ximian.com>

    ** See bug #73293

    * message-list.c (main_folder_changed): emit a 'list built' signal
    if we just modified it too.

2005-03-10  Vivek Jain  <jvivek@novell.com>
    
    **fixes bug #73139
    * em-folder-tree.c (render_pixbuf):change the shared-folder icon names 
    to the names in gnome-icon-theme 

2005-03-03  Not Zed  <NotZed@Ximian.com>

    ** See bug #66592

    * mail-tools.c (mail_tool_make_message_attachment): jus call
    camel_medium_remove_header to remove the bcc header, don't need to
    loop.

    * mail-ops.c (mail_send_message): try to find the account by uid
    first, fall back to name.

    * em-composer-utils.c (composer_get_message): set
    x-evolution-account by uid, not name.

2005-03-02  Not Zed  <NotZed@Ximian.com>

    ** See bug #66592

    * em-composer-utils.c (got_post_folder): no longer needed.
    (composer_get_message): remove 'post' and 'no_recipeints' args.

    * mail-ops.c (mail_send_message): change for xev changes. Also
    handle postto if set.

    * mail-tools.c (mail_tool_remove_xevolution_headers) 
    (mail_tool_restore_xevolution_headers): fix for api change.
    (mail_tool_destroy_xevolution): remove.

    * mail-tools.h: remove XEvolution, just use a struct _header_raw
    for it.

    * em-composer-utils.c (em_utils_composer_send_cb): don't post
    message here, just queue it like any other outgoing mail.

2005-03-02  Not Zed  <NotZed@Ximian.com>

    ** See "bug" 73100

    * mail-dialogs.glade: empty out the license_top_label text, it is
    always overwriten by the code.

2005-03-01  Not Zed  <NotZed@Ximian.com>

    * message-list.c: include atkutil.h
    (message_list_construct): cast warning.

    * mail-session.c (mail_session_set_interactive): remove unused
    variable since we can no longer terminate password requests.

    * mail-autofilter.c (em_vfolder_rule_from_address): properly
    define in header.

    * em-utils.c (emu_get_save_filesel): only define filename in the
    !gtkfilechooser case.

    * em-mailer-prefs.c (restore_labels_clicked): cast for warning.
    (em_mailer_prefs_construct): same.

    * em-format-html.c (efh_format_header): remove unused variable.

    * em-account-editor.c (emae_widget_druid_glade): remove unused
    variable.

    * importers/mail-importer.h: forward-delcare struct
    _MailComponent.

    * *c: remove/disable various debug.

2005-03-02  Harry Lu <harry.lu@sun.com>

    Fix for 71733.

    * mail-signature-editor.c: (mail_signature_editor): if is_new,
    let name_entry get the focus.

2005-02-28  JP Rosevear  <jpr@novell.com>

    * em-utils.c (em_utils_configure_account): pass in accountDruid
    config id

    * em-account-prefs.c (account_add_clicked): pass in accountDruid
    config id
    (account_edit_clicked): pass in accountWizard config id
    
    * em-account-editor.h: update protos

    * em-account-editor.c (em_account_editor_new_with_config_id):
    create a new account editor with a specific config id
    (em_account_editor_new): pass
    (em_account_editor_construct): make this static and take the
    config id as an arg

2005-02-24  Not Zed  <NotZed@Ximian.com>

    ** See bug #72609

    * em-inline-filter.c (emif_scan): try to convert the filename
    based on the incoming charset or the locale charset.  This will
    make sure it is always valid.

2005-02-28  Not Zed  <NotZed@Ximian.com>

    * em-folder-browser.c: reverted Mengjie's patch for 72545.

2005-02-27  Frank Arnold  <farnold@cvs.gnome.org>

    * default/de/Inbox: Added German translation of default inbox.

2005-02-25  Mengjie Yu  <meng-jie.yu@sun.com>

    * em-folder-browser.c (emfb_edit_select_all): make the 'select
    all' work in all conditions.

    Fixes #72545

2005-02-24  Not Zed  <NotZed@Ximian.com>

    ** See bug #68459

    * em-composer-utils.c (get_reply_sender): check the followup-to
    header before the newsgroups header.
    (reply_get_composer, get_reply_sender, get_reply_all): change
    post-to to be a CamelNNTPAddress not a string pointer.

2005-02-21  Not Zed  <NotZed@Ximian.com>

    ** See bug #71003

    * mail-component.c (impl_quit): add a new state MC_QUIT_THREADS to
    wait for all mail threads to finish before quitting.

2005-02-23  Jeffrey Stedfast  <fejj@novell.com>

    * em-format-html.c (efh_format_header): Don't use the pre-UTF-8
    converted subject header string from the CamelMimeMessage object,
    decode it ourselves using the the user's override charset. Fixes
    bug #62109.

2005-02-21  Not Zed  <NotZed@Ximian.com>

    ** See bug #34153 and no doubt duplicates

    * mail-component.c (impl_requestQuit): use the VISIBLE count not
    the TOTAL count to check if there are unsent emails.

2005-02-21  Not Zed  <NotZed@Ximian.com>

    ** See bug #71528.

    * em-migrate.c (remove_system_searches, em_migrate_1_4): remove
    all 'system' searches when upgrading from pre 2.0.

2005-02-21  Not Zed  <NotZed@Ximian.com>

    ** See bug #71967

    * em-account-editor.c (emae_receive_options_extra_item): make sure
    we track the keep_on_server setting in the e-account, not just the
    url (hack).

2005-02-23  Hans Petter Jansson  <hpj@novell.com>

    * mail-session.c:
    * mail-config.c: Include <libedataserverui/e-passwords.h>.

2005-02-22  Not Zed  <NotZed@Ximian.com>

    * em-account-editor.c (emae_send_page): fix argument order to
    memset.
    (emae_security_page): fix the non-have_nss case.

2005-02-22  Marco Pesenti Gritti  <marco@gnome.org>

    * mail/em-popup.c (emp_apps_open_in, emp_standard_menu_factory):
    Use gnome-vfs API to launch external applications

2005-02-22  Not Zed  <NotZed@Ximian.com>

    ** See bug #40515

    * mail-config.c (mail_config_signature_run_script): run the script
    using /bin/sh -c, so arguments may be passed to the script.

2005-02-22  Not Zed  <NotZed@Ximian.com>

    ** See bug #68866

    * em-format-quote.c (emfq_format_headers): line-feed after all
    headers for blind people.

2005-02-21  Not Zed  <NotZed@Ximian.com>

    ** See bug #35219

    * em-utils.c (em_utils_flag_for_followup_clear): clear the flag
    tags rather than setting them to "".  Also change to using newer
    messageinfo api.
    (tag_editor_response, em_utils_flag_for_followup)
    (em_utils_flag_for_followup_completed): some cleanup/api stuff.

2005-02-21  Not Zed  <NotZed@Ximian.com>

    ** See bug #64987

    * message-list.c (message_list_select_thread): select the paths
    with one call.
    (on_selection_changed_cmd): get the cursor_uid from the cursor.

2005-02-21  Not Zed  <NotZed@Ximian.com>

    ** See bug #72337

    * mail-component.c (store_info_new, store_info_unref): refcount
    the storeinfo's.
    (mc_add_store_done): noop if removed.
    (store_hash_free, mail_component_remove_store): mark storeinfo
    removed.

2005-02-21  Not Zed  <NotZed@Ximian.com>

    ** See bug #70718

    * em-folder-view.c (emfv_list_built): handle list_built events -
    whenever the list changes.
    (emfv_gui_folder_changed, emfv_folder_changed): removed, we want
    to run off the viewed list, not the physical folder.

2005-02-22  Rodney Dawes  <dobey@novell.com>

    * em-account-editor.c (emae_security_page): The GladeXML object is
    no longer a part of the private structure, and we need to reference
    it directly as it is a local variable now

2005-02-14  Not Zed  <NotZed@Ximian.com>

    ** See bug #61363 & e-util/ChangeLog

    * em-account-editor.c: All sorts of changes to make the ui more
    dynamic, re-create all widgets when it needs a reconfigure.  A bit
    slower and it flickers a bit.
    
    * em-account-editor.c (emae_setup_service): take xml file pointer.
    (emae_send_page): create a new send page every time we need to,
    don't re-use the old oneq.
    (emae_setup_authtype): renamed to refresh_authtype.
    (emae_setup_service): init authtype pointer.
    (emae_needs_auth): use the auth_frame pointer directly.
    (emae_refresh_providers): rename from setup_providers.

2005-02-11  Not Zed  <NotZed@Ximian.com>

    * em-account-editor.c (emae_setup_service): set needs_auth to NULL
    if we don't, so it gets reset if the ui changes.

2005-02-10  Not Zed  <NotZed@Ximian.com>

    * em-account-editor.c (emae_setup_providers): don't include any
    providers which are store and transport in the transport page.
    (emae_send_page): show no send options page at all if the provider is
    store and transport.
    (emae_uri_changed): copy store url to transport if as above.

2005-02-09  Not Zed  <NotZed@Ximian.com>

    ** See bug #70795

    * em-folder-view.c (em_folder_view_open_selected): set the search
    on the browser to match the current view.

    * message-list.c (mail_regen_list): save the search if no folder
    set, incase the folder gets set later on.

2005-02-18  Rodney Dawes  <dobey@novell.com>

    * mail/em-folder-view.c (emfv_popup_copy_text): New method to copy
    the selected text in the mail display, to the clipboard
    (emfv_popup_items): Restructure this list for the new context menus
    layout that we are moving to, to improve the UI
    (emfv_popup): Add a third argument for whether we are on the mail
    display or not, so that we can pop up the correct portion of the menus
    Pass the on_display argument on to create the popup target
    Only generate the label items if we are on the list and not the display
    (emp_uri_popup_vfolder_{sender,recipient}): New methods to create
    vfolders to and from mailto: addresses from the context menu
    (emfv_enable_menus): Create the target here for clicking on the list
    (em_folder_view_get_popup_target): Add a third argument so that we
    can tell whether we are on the display or not
    Set the appropriate flags on the target for whether we are on the
    message display,, and whether or not there is selected text in it
    (emfv_list_right_click): We aren't rigt-clicking on the display here
    (emfv_popup_menu): We aren't right-clicking on the mail display here
    (emfv_uri_popups): Add the submenu for creating a vfolder from mailto:
    (emfv_format_popup_event): We are right-clickingo nt he display here

    * mail/em-folder-view.h: Add the new flags we need for the mail
    context menus popup target here
    (em_folderiew_get_popup_target): Add the on_display argument

    * mail/em-popup.c (emp_standard_uri_popups): Fix the label and mnemonic
    for the Send New Message popup item for mailto: addresses

    * mail/mail-autofilter.c (rule_from_address):
    (em_vfolder_rule_from_address): New methods to create a vfolder based
    on a CamelInternetAddress object that we get from the mailer

    * mail/mail-vfolder.[ch] (vfolder_gui_add_from_address): New method to
    create a vfolder rule based on the mailto: addresses

    Fixes #23822

2005-02-15  Radek Doulik  <rodo@novell.com>

    * em-junk-filter.c: use camel_debug

2005-02-10  Not Zed  <NotZed@Ximian.com>

    ** See bug #72266

    * em-folder-selection-button.c
    (em_folder_selection_button_clicked): if the selector is already
    up, just raise it.
    (em_folder_selection_button_destroy): destroy the selector if it
    is still up.

2005-02-09  Not Zed  <NotZed@Ximian.com>

    ** See bug #71429
    
    * em-folder-view.c (emfv_activate): setup the plugin menu's after
    the main ones.

2005-02-08  Not Zed  <NotZed@Ximian.com>

    ** See bug #72228

    * mail-ops.c (mail_send_message): fix this god-awful goto-loop
    crap, and delete the message if it worked.
    (mail_send_message): fix a major-leak with sent messages never
    being unreffed.
    (send_queue_send): don't get messages ourself.
    (mail_send_message): dont lose the exception if we
    can't even open the sent folder.

2005-02-07  Not Zed  <NotZed@Ximian.com>

    ** See bug #72209

    * em-folder-tree.c (emft_popup_copy_folder_exclude): implement one
    for copying/moving folders.

    * em-folder-selection.c (em_select_folder): add an excluded func
    argument, fix callers.

    * em-folder-tree.c
    (em_folder_tree_set_exclude_func): allow custom callback for
    exclusion.
    (emft_select_func): handle the custom excluded callback.

2005-02-07  Harry Lu  <harry.lu@sun.com>

    Fix for 72275.
    * em-folder-view.c: (emfv_popup_menu): try to bring up menu for
    preivew html object.  
    (emfv_format_popup_event): handle event == NULL case.
    * em-format-html-display.c: (em_format_html_display_popup_menu):
    New function to popup context menu.
    * em-format-html-display.h: add new function declaration.

2005-02-04  Not Zed  <NotZed@Ximian.com>

    * em-subscribe-editor.c (sub_folderinfo_get): reverted jeff's
    patch for the subscribed hint.

    ** See bug #65329

    * em-folder-properties.c (emfp_dialog_got_folder): translate
    local-store special folders.

    * mail-session.c (alert_user, do_user_message): if we aren't
    waiting for cancel, then don't worry about waiting on the reply
    port, otherwise we could block when we don't need to, if there is
    another window already up.

2005-02-03  Jeffrey Stedfast  <fejj@novell.com>

    * message-list.c (message_list_set_folder): Use
    g_hash_table_foreach_remove() instead so the keys don't point to
    free'd values.
    (normalised_free): Return TRUE.

2005-02-02  Rodney Dawes  <dobey@novell.com>

    * em-subscribe-editor.c (em_subscribe_editor_new): Use the
    gtk_widget_ensure_style method instead of gtk_widget_realize when
    setting the border widths of the dialog containers for HIG compliance

    Fixes #68743

2005-02-02  Jeffrey Stedfast  <fejj@novell.com>

    Fixes bug #70454

    * em-subscribe-editor.c (sub_folderinfo_get): Request subscription
    info (new flag).
    (sub_fill_level): Fixed the FIXME here (imap4 now implements
    CAMEL_FOLDER_SUBSCRIBED flag properly).

2005-02-01  Rodney Dawes  <dobey@novell.com>

    * em-folder-browser.c: Replace "_Virtual Folder" with "_vFolder" for
    the search menu to create a vfolder from a search

    * em-folder-tree-model.c (sort_cb): s/VFolders/vFolders/ for sorting
    in the folder tree
    (em_folder_tree_model_load_state): s/VFolders/vFolders/ in a comment

    * em-folder-view.c: s/VFolder/vFolder/ for the popup menu

    * em-vfolder-editor.c (em_vfolder_editor_new): Replace the string
    "Virtual _Folders" with "v_Folders" for the label

    * em-vfolder-rule.c (em_vfolder_editor_sourcelist_new): Repalce the
    string "VFolder source" with "vFolder source"

    * mail-errors.xml:
    * mail-errors.xml.h: Replace "virtual folder" with "vFolder" in an
    error string

    * mail-vfolder.c (vfolder_setup_desc): s/vfolder/vFolder/
    (vfolder_setup_do): s/vfolder/vFolder/
    (vfolder_load_storage): s/VFolders/vFolders/
    (vfolder_edit_rule): s/VFolder/vFolder/
    (vfolder_gui_add_rule): s/VFolder/vFolder/

    Fixes #68137
        
2005-02-01  Not Zed  <NotZed@Ximian.com>

    ** See bug #65329.

    * mail-component.c (view_changed_cb): translate special names on
    the local store.

    * em-folder-tree-model.c (sort_cb): use the type hint to sort for
    inbox, not the name.
    (emft_is_special_local_folder): removed.
    (em_folder_tree_model_set_folder_info): special-case the
    local-store case, handle translated names and the name hints.

    * em-folder-tree.c (render_pixbuf): use the camel folderinfo
    folder type to determine the icon, don't hardcode based on name.

    ** See bug #71310

    * em-composer-prefs.c (sig_add_script_response): force a save of
    the signatures as soon as they change.  Also save the script name
    if we were just editing it, not just the signature name.

    ** See bug #71312.

    * em-folder-view.c (em_folder_view_open_selected): if we're
    looking at a vfolder, then look open the original folder if we need
    to perform any edits.

2005-01-31  Hans Petter Jansson  <hpj@novell.com>

    * importers/mail-importer.h (mc): Remove unused global symbol.

2005-01-28  Jeffrey Stedfast  <fejj@novell.com>

    * message-list.c (message_list_set_folder): Reset the normalised
    string sort table.

2005-01-31  JP Rosevear  <jpr@novell.com>

    Fixes #71937

    * evolution-mail.schemas.in.in: fix spelling error

    * mail-errors.xml: fix two spelling errors

2005-01-31  Not Zed  <NotZed@Ximian.com>

    ** See bug #67083

    * em-format-html.c (efh_format_text_header): no-wrap the header line.

    ** See bug #69850
    
    * mail-autofilter.c (rule_from_message): dont crash if we're
    missing the requested headers.

    ** See bug #71521.

    * em-account-editor.c (emae_url_set_hostport): dont ever set a
    NULL host.

2005-01-28  Not Zed  <NotZed@Ximian.com>

    * em-account-editor.c (emae_service_provider_changed): handle
    'hide' bits, don't get/set values from the widgets at all.

    * em-account-editor.c: put some tables back into the
    druid and editor, since econfig supports tables now.

    * em-account-editor.c (emae_service_provider_changed): handle
    'hide' bits, don't get/set values from the widgets at all.

    * em-account-editor.c: put some tables back into the
    druid and editor, since econfig supports tables now.

    * em-account-editor.c (emae_service_provider_changed): handle
    'hide' bits, don't get/set values from the widgets at all.

    * em-account-editor.c: put some tables back into the
    druid and editor, since econfig supports tables now.

    ** See bug #71520.
    
    * em-account-prefs.c (account_edit_clicked): repeat the nasty hack
    from account_edit, to refresh the list after edit.

2005-01-27  Not Zed  <NotZed@Ximian.com>

    * See bug #69815.
    
    * mail-component.c (impl_quit): shutdown vfolders as first step.

    * mail-vfolder.c (vfolder_setup_do): if we're shutdown during
    processing, just noop.
    (vfolder_adduri_do): same.
    (mail_vfolder_shutdown): set the shutdown flag.

2005-01-27  Rodney Dawes  <dobey@novell.com>

    * mail-config.glade: Fix the labels in the account druid to be
    left aligned, and justified left
    Fix the border and spacing for all the vboxes in the account druid
    pages to be HIG compliant
    Fix the account naming info label to be more concise

    Fixes #68696

2005-01-27  Rodney Dawes  <dobey@novell.com>

    * mail-send-recv.c (build_dialog): Fix the dialog to have borders
    that are HIG-compliant and fix up the spacing and padding of the
    internal widgets to do the right thing to be HIG compliant

2005-01-27  JP Rosevear  <jpr@novell.com>

    * em-format-hook.c: add a d(x) debugging define and default to off

2005-01-26  Mengjie Yu  <meng-jie.yu@sun.com>

    Fixes #71774 

    * em-folder-tree.c (emft_popup_rename_folder): we should check
    whether the 'new_name' is a NULL pointer to avoid Evolution
    crashes.

2005-01-25  Mengjie Yu  <meng-jie.yu@sun.com>

    * em-mailer-prefs.c: (restore_labels_clicked),
    (em_mailer_prefs_construct):
    add a11y names for color pickers.

2005-01-24  Hans Petter Jansson  <hpj@novell.com>

    * Makefile.am (libevolution_mail_la_LIBADD): Pull in the contact
    editors, so we can pass pointers to their creation functions to
    ENameSelectorEntry.

2005-01-24  JP Rosevear  <jpr@novell.com>

    * searchtypes.xml: add back body contains

2005-01-21  JP Rosevear  <jpr@novell.com>

    Fixes #46287
    
    * mail-config.glade: remove enable/disable button

    * em-composer-prefs.h: remove unused button

    * em-composer-prefs.c (spell_language_toggled): handle the cell
    being toggled
    (spell_setup): enable/disable button is gone
    (em_composer_prefs_construct): setup a listener for the toggle
    cell

2005-01-24  Radek Doulik  <rodo@ximian.com>

    * em-popup.[ch]: removed EM_POPUP_SELECT_MARK_[NO]JUNK masks

2005-01-20  Radek Doulik  <rodo@ximian.com>

    * em-folder-view.c: patch from Chris Lahey, makes Mark as Junk/not
    Junk items active on all messages, removes calls to
    message_list_get_selected where not needed

2005-01-24  Not Zed  <NotZed@Ximian.com>

    * searchtypes.xml: changed for 69122.

2005-01-21  JP Rosevear  <jpr@novell.com>
    
    Fixes #46404
    
    * em-folder-view.c (emfv_print_response): use the config in the
    print data and free it
    (em_folder_view_print): load the config from e_print and use the
    dialog from e_print

2005-01-21  Not Zed  <NotZed@Ximian.com>

    ** See bug #60664.

    * em-format-html-display.c (efhd_init, efhd_gtkhtml_style_set): if
    the style changes, re-calculate the page colours, and redraw.

2005-01-20  Jeffrey Stedfast  <fejj@novell.com>

    * em-folder-tree.c (emft_copy_folders__desc): Added a description
    function for copying folders (so we don't get a "Working 0x..."
    status message).

    * mail-mt.c (do_op_status): Always g_free(what) since we always
    strdup it.

2005-01-20  Not Zed  <NotZed@Ximian.com>

    ** See bug #55831.

    * evolution-mail.schemas.in.in: added open_many prompt key.

    * mail-errors.xml: added ask-open-many

    * em-folder-view.c (em_folder_view_open_selected): put back the
    'you're opening too many are you sure' thing.

2005-01-19  Jeffrey Stedfast  <fejj@novell.com>

    * em-folder-properties.c (emfp_get_folder_item): Increment i each
    time thru the loop or we lose widgets.

2005-01-19  Not Zed  <NotZed@Ximian.com>

    ** See bug #66943.

    * em-composer-utils.c (save_draft_done): check if the
    editor_engine is still there before trying to invoke a method on
    it.
    (em_utils_composer_save_draft_cb): grab resources before getting
    the folder, so the composer doesn't go away.

2005-01-18  Rodrigo Moya <rodrigo@novell.com>

    * em-filter-source-element.c:
    * mail-config.c: removed e-url.h include.

2005-01-18  Not Zed  <NotZed@Ximian.com>

    ** See bug #70768.

    * em-folder-browser.c (emfb_mark_all_read): get the uid list from
    the message-list (view) rather than folder (model).

    * message-list.c (message_list_foreach): removed, no longer used.
    (message_list_get_uids): new function replacing ml_foreach, get
    visible uids's of messages.

2005-01-18  Not Zed  <NotZed@Ximian.com>

    ** See bug #71105.

    * em-folder-tree.c (emft_popup_rename_folder): dont let a user
    rename a folder to one including '/'.

    * em-format-html.c (emfh_gethttp): kill old 'load http 0 now=0' debug.

    ** See bug #70563.

    * em-utils.c (emu_set_proxy, emu_proxy_setup)
    (em_utils_get_proxy_uri): make sure the init code is called from
    main thread (gconf usage), and add locking for data consistency.

2005-01-14  Not Zed  <NotZed@Ximian.com>

    ** Related to changes for #65178.

    * mail-vfolder.c (mv_find_folder): changed from my_list_find, take
    store arg and use camel_Store_Folder_uri_equal() instead of wrong
    uri_cmp function.
    (mail_vfolder_delete_uri): same.
    (mail_vfolder_rename_uri): same.
    (uri_is_ignore): take store arg, and same as above.  use the right
    uri for checking sent folder.
    (mail_vfolder_*): convert to storing uri's in camel form.

2005-01-13  Not Zed  <NotZed@Ximian.com>

    ** See bug #71029.

    * em-account-editor.c (emae_option_toggle): revert menjie's patch
    and do it using object args.

2005-01-12  Not Zed  <NotZed@Ximian.com>

    ** See bug #70990.

    * em-account-editor.c (emae_service_url_changed): if the value is
    "" then don't set it

    ** See bug #70018.

    * mail-signature-editor.c (mail_signature_editor): use the right
    version for the gtkhtml editor control.

2005-01-11  Vivek Jain  <jvivek@novell.com>

    * em-folder-tree.c (render_pixbuf): Added conditions to check for
    shared folders to display different icon if it is a shard folder.   

2005-01-07  Not Zed  <NotZed@Ximian.com>

    * em-account-prefs.c (account_add_clicked): remove old code, setup
    transient parent and weak ref for refresh.

2005-01-06  JP Rosevear  <jpr@novell.com>

    * Makefile.am: install schemas properly

2005-01-06  Jeffrey Stedfast  <fejj@novell.com>

    * mail-folder-cache.c (mail_note_store): Handle the
    CamelOfflineStore case just like the CamelDiscoStore case.

    * mail-ops.c (prep_offline_do): Since we can't kill off
    CamelDisco* (groupwise is using it), we have to handle both
    CamelOfflineFolder and CamelDiscoFolder for now.
    (set_offline_do): Same.

2005-01-05  Not Zed  <NotZed@Ximian.com>

    * em-menu.c: (emph_targets[]): Add the widget target, missed this.

2005-01-05  Not Zed  <NotZed@Ximian.com>

    * em-menu.c (em_menu_target_new_widget): add a semi-dummy target
    for widget target.

    * mail-component.c (handleuri_got_folder): handle the "reply"
    parameter, if set.

    * em-composer-utils.c (em_utils_reply_to_message): only ref the
    source if supplied.
    (reply_to_message): only unref the source if supplied.

2004-12-28  Mengjie Yu  <meng-jie.yu@sun.com>

    * em-folder-tree.c: (em_folder_tree_new_with_model):
    add atk name for the treeview.

2004-12-22  Not Zed  <NotZed@Ximian.com>

    * em-account-editor.c (emae_needs_auth): moved to after
    emae_authtype_changed to fix warning.

2004-12-17  Not Zed  <NotZed@Ximian.com>

    * em-format-html-display.c (efhd_attachment_popup): 

    * message-list.c (ml_tree_drag_data_received): 

    * em-folder-view.c (emfv_popup, emfv_format_popup_event): 

    * em-folder-tree.c (tree_drag_data_received): api changes.
    (emft_popup): 

    * em-popup.c (emp_standard_menu_factory) 
    (emp_standard_menu_factory): api changes.

2004-12-21  Not Zed  <NotZed@Ximian.com>

    * em-account-editor.c (emae_needs_auth): if we're turned on, then
    record the current authtype setting on the widgets, if we're
    turned off, clear the authmech setting.
    (emae_setup_service): setup the needs auth after the authtype, and
    get setting from url->authmech.
    (emae_service_provider_changed): only clear the url->authmech if
    we don't have the current one in our list.

2004-12-20  Takeshi AIHANA <aihana@gnome.gr.jp>

    * default/Makefile.am: Added 'ja' and 'nl' to install.

2004-12-14  Rodney Dawes  <dobey@novell.com>

    * mail-account-gui.c: Remove this from CVS
    
    * mail-config.glade: Use em_account_editor_folder_selector_button_new
    instead of mail_account_gui_folder_selector_button_new

2004-12-14  JP Rosevear  <jpr@novell.com>

    Fixes #68759
    
    * mail-account-gui.c (service_check_supported): fix typo in
    routine name

2004-12-08  Hans Petter Jansson  <hpj@novell.com>

    * importers/pine-importer.c: Include <libebook/e-destination.h> from
    evolution-data-server.

2004-12-08  Rodney Dawes  <dobey@novell.com>

    * em-folder-tree.c:
    * mail-component.c (impl__get_userCreatableItems): 
    Use stock_new-dir instead of stock_folder for "New Folder" creation

2004-12-07  Mengjie Yu  <meng-jie.yu@sun.com>

    * mail-config.glade: add mnemonic for buttons, labels, etc.
    * mail-dialogs.glade:add mnemonic for buttons, labels, etc.
    * message-tags.glade:add mnemonic for buttons, labels, etc.

2004-12-08  Not Zed  <NotZed@Ximian.com>

    * mail-component-factory.c (make_factory): and put them here
    instead so they're available even when the mailer isn't activated
    yet.

    * mail-component.c (mc_startup): remove plugin hook registrations.

2004-11-22  Not Zed  <NotZed@Ximian.com>

    * em-account-editor.c (emae_receive_options_extra_item): dont
    track containee widgets anymore, they are automagically destroyed
    by the container if required.

2004-11-25  Radek Doulik  <rodo@ximian.com>

    * em-junk-filter.c (em_junk_sa_test_spamd): do not call gconf here
    as we may be called from worker thread
    (em_junk_filter_get_plugin): read alternative spam[cd] binaries
    paths here, use init lock to be sure no one is accessing spam[cd]
    binaries paths

    Fixes #69623

2004-12-01  Mengjie Yu  <meng-jie.yu@sun.com>

    * em-account-editor.c:according to the HIG, remove accelerators in 
    the notebook tab labels 

2004-12-01  Mengjie Yu  <meng-jie.yu@sun.com>

    * em-account-editor.c: (emae_option_toggle),
    (emae_receive_options_item):add mnemonic for buttons.
    * em-format-html-display.c: (efhd_attachment_button):add atk name
    for the popup button.
    * mail-account-gui.c: (mail_account_gui_build_extra_conf):add 
    access key for checkbox.
    * message-list.c: (message_list_construct):add a atk name for the
    message list.

2004-11-22  Not Zed  <NotZed@Ximian.com>

    ** See bug #69339.

    * em-format-html.c (efh_format_do): after closing the base output
    stream, re-loop if more jobs were queued.

2004-11-19  Not Zed  <NotZed@Ximian.com>

    ** See bug #69339.

    * em-format-html.c (efh_format_do): close the stream/html after we're
    finished, since the multipart/related stuff may write more content
    for orphaned attachments.

2004-11-23  Not Zed  <NotZed@Ximian.com>

    ** See bug #69579.

    * em-folder-properties.c (em_folder_properties_show): check to see
    if the vfolder is the unmatched folder before letting the user try
    to see its properties.

2004-11-30  Not Zed  <NotZed@Ximian.com>

    ** See bug #68958.

    * em-folder-browser.c (emfb_list_built): if the pending selected
    uid isn't in the folder (yet), don't clear it, just keep it
    around.  Hook/unhook folder_changed events.
    (emfb_folder_changed, emfb_gui_folder_changed): if a select_uid is
    set, and the message is now available, then select it.

2004-11-28  S.Çağlar Onur <caglar@uludag.org.tr>

    ** See bug #69446.

    * evolution-2.0.2/mail/mail-account-gui.c (mail_account_gui_setup): 
    some strcasecmp() calls changed with g_ascii_strcasecmp() for Turkish
    character conversiton problems [ http://www.i18nguy.com/unicode/turkish-i18n.html ]

2004-11-26  JP Rosevear  <jpr@novell.com>

    * em-format.c: wrap printf's in debug defines

2004-11-26  JP Rosevear  <jpr@novell.com>
    
    * em-format-html-display.c (efhd_xpkcs7mime_button): get image
    widget directly from icon factory

    * mail-send-recv.c (build_dialog): ditto
    
2004-10-12  Radek Doulik  <rodo@ximian.com>

    * em-junk-filter.c: when starting new spamd, call it with
    --socketpath parameter to use unix sockets instead of opening TCP
    port. kill such started daemon in finalize callback which is
    installed by atexit. also try to respawn spamd in case spamc
    returns error, if respawning is too fast (8 restarts in last 5
    minutes) fallback to spamassassin

    * mail-component.c (impl_quit): call mail_session_quit

    * mail-session.c (mail_session_init): call junk plugin init
    (mail_session_quit): new method, called on evo exit

2004-11-22  Joan Sanfeliu  <joan@fibranet.com>

    * mail-config.glade : Evolution word spelled with an uppercase E

    Fixes #61065

2004-11-16  Not Zed  <NotZed@Ximian.com>

    * Makefile.am:
    * importers/Makefile.am: Removed camel linking.

2004-11-15  Not Zed  <NotZed@Ximian.com>

    * *.c: Moved various things from e-util to libedataserver.

    * GNOME_Evolution_Mail.server.in.in: remove the startup wizard stuff.

    * mail-config-druid.[ch]:
    * mail-account-editor.[ch]:
    * mail-account-gui.[ch]: removed & deleted.

    * mail-session.c (mail_session_init): and here too.
    * em-migrate.c (em_migrate_1_4): init camel-provider library too.
    (e_path_to_physical): copy from e-util/e-path.c.

    * Makefile.am (libevolution_mail_la_LIBADD): link to new libcamel
    provider too.

2004-11-12  Not Zed  <NotZed@Ximian.com>

    * filtertypes.xml:
    * vfoldertypes.xml: 
    * searchtypes.xml: Added 'match all' rules.

    ** Merge in notzed-messageinfo-branch.

2004-11-11  Radek Doulik  <rodo@ximian.com>

    * em-format-hook.c (emfh_enable): l = g_list_next (l); in inner
    loop instead of g = g_list_next (l).. probably typo after c'n'p

    * em-format.c (em_format_class_remove_handler): in case the old
    handler doesn't exist, remove 'info' handler from type_handler
    table

2004-11-03  Not Zed  <NotZed@Ximian.com>

    * em-folder-view.c (emfv_popup): Fix the popup id.
    
2004-11-03  Not Zed  <NotZed@Ximian.com>

    * em-folder-view.c (emfv_list_done_message_selected): revert
    jeff's last change - we do actually want to know when we couldn't
    load a message.  the crash he was fixing was fixed elsewhere.
    also fix the unref ordering stuff.

    * em-format-html.c (efh_format_timeout): removed the fixme i
    added.

2004-11-01  Not Zed  <NotZed@Ximian.com>

    ** See bug #67496.

    * em-format-html.c (efh_text_html): use the base on the emformat
    to calculate our absolute iframe uri.
    (efh_multipart_related): same as emf_multipart_related.

    * em-format.c (emf_multipart_related): remove content-location
    handling, now done in format_part_as.
    (em_format_part_as): track content-base (& absolute
    content-location) of all parts here.

2004-11-02  Not Zed  <NotZed@Ximian.com>

    * em-event.c (eme_target_free, em_event_target_new_message):
    handle NULL folder or message.

2004-11-02  Jeffrey Stedfast  <fejj@novell.com>

    * em-folder-view.c (emfv_list_done_message_selected): Check for
    NULL messages (happens if the message isn't available).

2004-11-02  Radek Doulik  <rodo@ximian.com>

    * em-format-html.c: replace 3 nested html tables used to create
    this gray border around parts content with div block with border
    style
    use shorthand border: property

2004-11-01  Jeffrey Stedfast  <fejj@novell.com>

    * em-account-editor.c: Change the labels back to the same as they
    were in 2.0

2004-11-12  Not Zed  <NotZed@Ximian.com>

    * mail-send-recv.c (auto_account_finalised): fix the callback
    signature.

2004-11-11  Not Zed  <NotZed@Ximian.com>

    * mail-component.c (mc_add_store):
    (mc_add_store_done): Let the counters know about the junk/trash
    folders that have already been opened.

    * em-vfs-stream.[ch]: Added stream class to read/write gnome-vfs
    data from camel.  NFI if this will work, depends on how
    thread-safe gnome-vfs is.

2004-11-08  Not Zed  <NotZed@Ximian.com>

    * mail-vfolder.c (uri_is_spethal): fix the special check for local
    folders.

2004-10-30  Not Zed  <NotZed@Ximian.com>

    * */*.c, *.c: camel api changes.

2004-10-28  Not Zed  <NotZed@Ximian.com>

    * mail-folder-cache.c (real_flush_updates): 
    * em-message-browser.c (em_message_browser_new): 
    * em-mailer-prefs.c (em_mailer_prefs_construct): 
    * em-format-html-display.c (efhd_attachment_popup): 
    * em-folder-view.c (emfv_popup, emfv_list_done_message_selected) 
    (emfv_format_popup_event): 
    * em-folder-tree.c (emft_popup): 
    * em-folder-properties.c (emfp_dialog_got_folder): 
    * em-folder-browser.c (em_folder_browser_new): 
    * em-composer-utils.c (em_utils_reply_to_message): 
    * em-composer-prefs.c (em_composer_prefs_construct): 
    * em-account-editor.c (em_account_editor_construct): added hook
    docs, and cleaned up some of the hook point names.

2004-10-22  Jeffrey Stedfast  <fejj@novell.com>

    * em-folder-tree.c: Give the Rename item a different path than the
    Delete item.

2004-10-22  Not Zed  <NotZed@Ximian.com>

    * em-event.c (eme_target_free): duh, they're camel not gobjects.

    * em-folder-view.c (emfv_list_done_message_selected): added a
    message.reading event.

2004-10-22  Nat Friedman  <nat@novell.com>

    * em-event.c: Add a REPLY_ALL flag to the Message target.
    * em-composer-utils.c (em_utils_reply_to_message): Set the
    REPLY_ALL flag when appropriate.

2004-10-21  Not Zed  <NotZed@Ximian.com>

    * em-composer-utils.c (em_utils_reply_to_message): emit a
    'message.replying' event with a message target.

2004-10-21  Nat Friedman <nat@novell.com>

    * em-event.c (em_event_target_new_message): new target type for
    message-related events.

2004-10-21  Not Zed  <NotZed@Ximian.com>

    * em-folder-view.c (emfv_format_popup_event): put 'evolution' back
    in the popup hook names.

2004-10-19  JP Rosevear  <jpr@novell.com>

    * em-account-editor.c, em-composer-prefs.c, em-config.c,
    em-event.c, em-folder-browser.c, em-folder-properties.c,
    em-folder-tree.c, em-folder-view.c, em-format-hook.c,
    em-format-html-display.c, em-mailer-prefs.c, em-menu.c,
    em-message-browser.c, em-popup.c, message-list.c: convert to
    org.gnome hook names

2004-10-19  JP Rosevear  <jpr@novell.com>
    
    * message-list.c: convert to G_DEFINE_TYPE

2004-10-11  Not Zed  <NotZed@Ximian.com>

    ** See bug #67014.

    * mail-errors.xml: added "checking-service" error.

    * em-account-editor.c (em_account_editor_construct): keep track of
    the dialogue
    (emae_editor_destroyed): , and clean up when destroyed.

    * em-account-editor.c (emae_check_authtype)
    (emae_check_authtype_response, emae_check_authtype_done): handle
    checking authtype gui here.

    * mail-config.c (check_service_describe, check_service_check) 
    (check_response, mail_config_check_service): removed.

    * mail-ops.c (mail_check_service): moved here from mail-config,
    and modified to be a re-usable threaded function.

2004-10-18  Not Zed  <NotZed@Ximian.com>

    ** See bug #68006.

    * em-folder-view.c (emfv_init): dont ref/sink the invisible.
    (emfv_destroy): just destroy it here.

2004-10-15  Not Zed  <NotZed@Ximian.com>

    * em-composer-utils.c (create_new_composer):
    (em_utils_compose_new_message, forward_non_attached): do noting if
    the composer couldn't be created.  We get a popup from elsewhere
    to let the user know.

2004-10-14  Sivaiah Nallagatla <snallagatla@novell.com>

    * mail-errors.xml : Remove Pango markup from groupwise 
    account setup error message 

2004-10-12  Not Zed  <NotZed@Ximian.com>

    * em-format-html-display.c (efhd_find_handler): use builtin
    handlers (and plugins) always overriding bonobo ones.

2004-10-11  Not Zed  <NotZed@Ximian.com>

    ** See bug #67408.

    * em-folder-view.c (emfv_gui_folder_changed): noop if we were
    destroyed.
    (emfv_destroy): set destroyed bit.

2004-10-11  Not Zed  <NotZed@Ximian.com>

    * mail-component.c (mc_startup): register the formatter types
    before registering the formatter hook.

2004-10-08  JP Rosevear  <jpr@novell.com>
 
    * mail-account-gui.c (browse_clicked): use "Select a file"
    
2004-10-08  Harry Lu  <harry.lu@sun.com>

    * em-folder-tree.c: (em_folder_tree_class_init), (real_popup_menu),
    (emft_popup_menu), (emft_tree_button_press): implement popup_menu
    so that popup menu can be shown with Shift+F10 on folder tree.
    * em-folder-view.c: (emfv_popup), (emfv_list_key_press):
    same as above.

2004-10-07  Not Zed  <NotZed@Ximian.com>

    * mail-component.c (mc_startup): dont init the base plugin system
    here anymore, only register the hook types for mail hooks.

2004-09-28  Not Zed  <NotZed@Ximian.com>

    * em-composer-utils.c (forward_non_attached): put back in the
    attachment attaching code.  Doesn't work for s/mime and pgp, but
    why bother arguing about it.

2004-10-06  Not Zed  <NotZed@Ximian.com>

    * em-folder-tree.c (emft_get_folder_info__desc): fix busted cast.

    * *.c: e-popup api changes.

2004-10-06  Not Zed  <NotZed@Ximian.com>

    * em-folder-tree.c (emft_tree_button_press): remove some debug
    that made it in accidentally.

2004-10-05  Not Zed  <NotZed@Ximian.com>

    * em-folder-tree.c (emft_popup_copy_folder_selected): remove old
    debug which no longer works.

    ** See bug #66991 (related to #64377).

    * em-folder-tree.c (em_folder_tree_set_selected): if we get a NULL
    uri or "", just clear the list.
    (emft_tree_button_press): select the new path as well as move the
    cursor there, otherwise emft_tree_user_event clears the selection.

2004-09-30  David Malcolm  <dmalcolm@redhat.com>

    * em-migrate.c (upgrade_passwords_1_2): fix uninitialised pointer.

2004-09-27  Jeffrey Stedfast  <fejj@novell.com>

    * em-account-editor.c: Changed the SSL option menu labels.

2004-09-21  Not Zed  <NotZed@Ximian.com>

    ** See bug #63521.

    * mail-ops.c (fetch_mail_fetch): delete all the messages on the
    server if we're not in keep on server mode and everything worked.
    uncancel ourselves before saving the cache uid since it could be
    cancelled otherwise.

2004-09-24  Not Zed  <NotZed@Ximian.com>

    ** See bug #66706.

    * em-subscribe-editor.c: add a sequence number to EMSubscribe and
    the subscribe_msg structures.  NOOP if the sequence has changed in
    all callbacks.  up the sequence number when we refresh.

2004-09-20  Not Zed  <NotZed@Ximian.com>

    ** See bug #65329.

    * em-folder-tree-model.c (emft_is_special_local_folder): added
    helper for finding local folders for translation.
    (em_folder_tree_model_set_folder_info): translate the special
    local folder names.

    * mail-component.c: mark standard folder names for translation.

2004-09-23  Not Zed  <NotZed@Ximian.com>

    ** See bug #65058 (again again).

    * em-format-html.c (efh_text_html): calculate our location uri
    ourselves (content id).

    * em-format.c (em_format_add_puri): if we have no content-location
    key, don't fallback to any container's location.

2004-09-23  Not Zed  <NotZed@Ximian.com>

    * em-folder-tree.c (emft_get_folder_info__desc): describe the
    get-folder process.  This also makes it cancellable.

    ** See bug #64972.

    * em-composer-utils.c (em_utils_reply_to_message): pass the folder
    to guess_account.

2004-09-03  Not Zed  <NotZed@Ximian.com>

    ** See bug #65058.

    * em-format-html.c (efh_image): use the content-id rather than
    the uri for tracking our image reference.  Makes more
    sense anyway, its guaranteed unique.

2004-09-21  David Malcolm  <dmalcolm@redhat.com>

    * em-folder-tree-model.c (em_folder_tree_model_set_selected): Fix
    a typo setting the root node.

2004-09-09  Jeffrey Stedfast  <fejj@novell.com>

    * em-message-browser.c (emmb_set_message): Ignore the
    emfv->mark_seen for deciding whether or not to mark the message as
    seen. Fixes bug #65448.

2004-09-09  Jeffrey Stedfast  <fejj@novell.com>

    * mail-account-gui.c (mail_account_gui_new): If built with
    gtkfilechooser support, we need to add a checkbox in the chooser
    so that the user can select files or folders (allowing him to
    choose - otherwise they won't be able to setup certain types of
    accounts). Fixes bug #64974.

2004-09-12  JP Rosevear  <jpr@novell.com>

    Fixes #65703
    
    * em-popup.c: use proper stock icon name

2004-09-08  Not Zed  <NotZed@Ximian.com>

    ** See bug #60515.

    * mail-account-gui.c (sig_fill_menu): connect to the activate
    signal for the none item.

2004-09-03  Not Zed  <NotZed@Ximian.com>

    ** See bug #59717.

    * mail-config.c (mail_config_check_service): Make the dialog
    modal.  Not ideal but a problem with the way the function works,
    it should be fully async instead.

2004-09-01  Jeffrey Stedfast  <fejj@novell.com>

    Fix for bug #63377 and prevention of similar cases.

    * em-format.c (emf_finalise): Free the default_charset.
    (emf_format_clone): Clone the default_charset - this prevents the
    particular crash described in bug #63377.

    * em-utils.c (em_utils_message_to_html): If source is NULL, set
    our own default charset (from the user's gconf key) on the
    formatter to make sure there's always a source charset for
    conversion to UTF-8.

2004-08-30  Jeffrey Stedfast  <fejj@novell.com>

    * em-folder-tree.c (emft_popup_delete_folder): Set the store and
    full_name info on the dialog.
    (emft_popup_delete_response): Use the requisite data stored on the
    dialog object rather than examining the selection again. Fixes bug
    #62665.

2004-08-30  Not Zed  <NotZed@Ximian.com>

    ** See bug #64377.

    * em-folder-selector.c (emfs_response): only set the uri if we
    have one to set.

    * em-folder-tree.c (em_folder_tree_finalize): Removed
    cose using selected_path and selected_uri strings.
    (emft_popup_new_folder): "
    (emft_popup_copy_folder_selected): "
    (emft_tree_selection_changed): 
    (emft_tree_row_activated): ", free paths after use.

    * em-folder-selector.c (emfs_create_name_changed): free
    get_selected_uri return.
    (emfs_create_name_activate): "
    (em_folder_selector_get_selected_path): handle api change, store
    the selected_path too.

    * em-folder-tree.c (em_folder_tree_get_selected_uri):
    de-constify,and get the selection directly from the tree.
    (em_folder_tree_get_selected_path): same.

2004-08-27  Not Zed  <NotZed@Ximian.com>

    ** See bug #63456.

    * message-list.c (main_folder_changed): noop if the async_event
    pointer is NULL which can happen during destroy.

2004-08-27  JP Rosevear  <jpr@novell.com>

    * importers/mail-importer.c (import_folders_rec): utf8_filename
    should be char * not char

2004-08-27  Hans Petter Jansson  <hpj@ximian.com>

    * em-utils.c (emu_can_save): Don't crash if we're passed a NULL
    path. GtkFileChooser can return NULL filenames that get passed
    to this function.

2004-08-26  Christian Neumair  <chris@gnome-de.org>

    * GNOME_Evolution_Mail.server.in.in:
    Don't mark component menu accel for translation.

2004-08-24  Jeffrey Stedfast  <fejj@novell.com>

    Fix for bug #63177

    * em-folder-tree.c (emft_drop_async_drop): Check full_name == NULL
    rather than full_name[0] since store's have NULL full_names, not
    empty string (like they used to).
    (emft_drop_folder): Same.
    (tree_drag_data_received): Don't abort the drop if the user
    dropped on a store, this is allowed (depending on the store).

2004-08-25  Not Zed  <NotZed@Ximian.com>

    * mail-component.c (store_info_new): only open the trash or junk
    if they're vfolders here.  Some stores that implement their own
    trash folders are unacceptably slow to open otherwise.

2004-08-25  Frederic Crozat  <fcrozat@mandrakesoft.com>

    * importers/evolution-mbox-importer.c (load_file_fn):

    * importers/evolution-outlook-importer.c (load_file_fn):

    * importers/mail-importer.c (import_folders_rec): Convert filename
    to UTF-8 from local encoding before displaying it.

2004-08-23  Not Zed  <NotZed@Ximian.com>

    * em-folder-tree.c (em_folder_tree_set_selected): store the
    select-uri on the view not in the thread message.
    (emft_get_folder_info__free):
    (emft_get_folder_info__got): select_uri removed.
    (em_folder_tree_set_selected_list): don't set each selected
    separately, do it as a list.
    (emft_maybe_expand_row): if this is a selected row, select it too.
    (emft_get_folder_info__got): do no pending set selection stuff
    here.
    (em_folder_tree_set_selected): just call set_selected_list with
    one item.
    (emft_expand_node): if this is a selected row, select it too.
    (emft_get_folder_info__got): no longer need to track lost folders.
    (emft_tree_row_activated): clear the pending select list.
    (emft_tree_selection_changed): and here too.
    (em_folder_tree_get_selected_uris): get the lost folders from the
    un-applied selected ones now.  also fixes a list appending error.
    (emft_tree_user_event): find out when the user hits a key or mouse
    button to override any pending single-user select and don't
    override the cursor setting either.
    (emft_tree_row_expanded): set the 'load subdirs' false before we
    load it, so we don't try to load it again if its still being
    loaded.
    (emft_get_folder_info__got): don't check the loaded flag here, it
    should be set by the callee, also check the exception return.

2004-08-13  Jeffrey Stedfast  <fejj@novell.com>

    Fix for bug #62812

    * em-format-html-display.c (em_format_html_display_search): Set
    the search_dialog to be transient for the parent window and make
    sure to destroy the search_dialog when the parent gets destroyed.

2004-08-21 Sivaiah Nallagatla <snallagatla@novell.com>

    * mail-erros.xml: changed the groupwise account setup error
    message

2004-08-16  Not Zed  <NotZed@Ximian.com>

    ** See bug #62963.

    * message-list.c (build_tree, build_flat): define selected in
    declaration block, not inline. Spotted by Vincent Noel
    <vnoel@cox.net>

2004-08-13  Not Zed  <NotZed@Ximian.com>

    * em-utils.c (em_utils_message_to_html): don't include the
    terminating NUL in the data length.
    (em_utils_part_to_html): nor here.

2004-08-12  Carlos Garnacho Parro  <carlosg@gnome.org>

    * em-utils.c: Optionally use GtkFileChooser if compiled against
    Gtk+ >= 2.4.0

    * mail-config.glade: added the "use_filechooser" property to the
    various GnomeFileEntries

2004-08-10  Jeffrey Stedfast  <fejj@novell.com>

    Partial fix for bug #62771

    * em-format-quote.c (emfq_format_header): Same.

    * em-format-html.c (efh_format_header): Decode the
    X-Mailer/User-Agent headers.

2004-08-10  Not Zed  <NotZed@Ximian.com>

    * mail-session.c (get_password): just call
    e_passwords_ask_password directly.
    (pass_activate, pass_response, request_password, do_get_pass)
    (do_free_pass, main_forget_password): no longer required as
    e_password now handles the magic, and is thread safe.

    * mail-config.c (mail_config_write_on_exit): epasswords api
    change.

2004-08-06  Jeffrey Stedfast  <fejj@novell.com>

    * em-folder-tree-model.c (em_folder_tree_model_get_selected):
    Return NULL not FALSE on error.

2004-06-08  Karsten BrÀckelmann  <guenther@rudersport.de>

    * em-format-html-display.c (smime_encrypt_table[4]): minor typo,
    uppercase 'the' corrected.

2004-08-03  Jeffrey Stedfast  <fejj@novell.com>

    * em-composer-utils.c (format_sender): If type="{Sender}" and name
    is an empty string, use the addr. Fixes bug #62377

2004-08-01  JP Rosevear  <jpr@novell.com>

    * default/C/Inbox: Update to just call us "Evolution" and be more
    accurate about the new features included

2004-07-29  Sivaiah Nallagatla <snallagatla@novell.com>

    * mail-errors.xml: add the error message needed for groupwise
    account setup

2004-07-28  Not Zed  <NotZed@Ximian.com>

    ** See #61958.

    * mail-folder-cache.c (real_flush_updates): remove the soreinfo
    lookup, it isn't used anywhere anymore.
    (mail_note_folder): hook onto the events outside of the lock, and
    don't pass the mfi pointer anymore.
    (mail_note_store): hook onto the events outside of the lock.
    (folder_changed, folder_finalised, folder_renamed): lookup the mfi
    if needed, it is no longer passed to the callback.
    (unset_folder_info): change unhook calls for new parameters.

2004-07-28  Not Zed  <NotZed@Ximian.com>

    ** See #61940.

    * em-composer-utils.c (composer_set_body): add emformat source arg.
    (em_utils_reply_to_message): take source arg.  Fixed callers.

    * em-utils.c (em_utils_message_to_html): take a source formatter
    argument, so we can copy/honour settings from it.
    (em_utils_part_to_html): similar.

2004-07-27  Not Zed  <NotZed@Ximian.com>

    ** See #57972.

    * message-list.c (search_func): removed.
    (ml_search_path): new function to just search, not actually change
    the cursor like e_tree_find does.
    (message_list_can_select): new function, returns true if the
    selection specified is possible without changing the selection.
    (message_list_select): rewritten.
    (select_path): helper to select a path in a way that 'works
    reliably'.
    (message_list_select_next_thread): rewritten to use the
    table-adapter, so it properly handles arbitrary sorting.

    * em-folder-view.c (em_folder_view_get_popup_target): setup
    next/prev flags as appropriate.
    (emfv_enable_map[]): setup next/prev flags.

    * em-folder-view.h: added last and first message status bits to
    folder view select mask.

2004-07-23  Radek Doulik  <rodo@ximian.com>

    * added len parameter to em_utils_part_to_html and
    em_utils_message_to_html. it is used to return length of returned
    buffer. we use that info later when setting composer body content.

2004-07-22  Not Zed  <NotZed@Ximian.com>

    * mail-component.c (impl_createControls): dont call
    e_error_default parent here, we dont have access to the toplevel
    yet.

2004-07-23  Not Zed  <NotZed@Ximian.com>

    ** See bug #61824.

    * em-popup.c (emp_part_popup_reply_sender)
    (emp_part_popup_reply_list, emp_part_popup_reply_all): use new
    api.  We have no uid/folder to update here.

    * em-folder-view.c (emfv_message_reply): use new api for replying
    so we can supply the message content and have flags updated.

    * em-composer-utils.c (em_utils_reply_to_message): added optional
    folder and uid.
    (em_utils_reply_to_message_by_uid): removed, use the other
    interface instead.
    (reply_to_message): just call reply_to_message if we get a message
    to reply to.
    (em_utils_reply_to_message): if no message supplied, load it via
    the uid.

2004-07-22  Not Zed  <NotZed@Ximian.com>

    * em-utils.c (em_utils_part_to_html, em_utils_message_to_html):
    set the session on the formatter.  See #61767.

2004-07-22  Not Zed  <NotZed@Ximian.com>

    ** See bug #61747.

    * message-list.c (search_func): don't emit a message_selected here
    (god knows why we did?).  Don't update cursor_uid either, just
    clear it.
    (message_list_select): select the path if we find it here, causing
    the cascade of selection action.

2004-07-19  Jeffrey Stedfast  <fejj@novell.com>

    * em-migrate.c (em_migrate_folder): Free uri and name
    strings. Fixes a leak.

2004-07-13  Jeffrey Stedfast  <fejj@novell.com>

    * em-folder-view.c (emfv_message_reply): Chck that the selection
    is active. Hopefully this will fix bug #61427.

2004-07-13  Dan Winship  <danw@novell.com>

    * em-utils.c (em_utils_selection_set_urilist):
    (em_utils_temp_save_part): free return value from e_mkdtemp

2004-07-09  Not Zed  <NotZed@Ximian.com>

    * em-folder-browser.c (emfb_folder_expunge): only call expunge if
    the folder is set.
    (emfb_enable_map[]): only enable expunge menu item if we have a
    valid folder set.

    ** See bug #60900.

    * em-format-html.c: convert the text_inline_parts hash to be keyed
    off the partid.
    (efh_free_inline_parts): -> efh_free_cache and fix to do it.

    * em-format.c (emf_free_cache): make the inline table cache other
    info too based on partid, this frees the structure.
    (emf_clone_inlines): copy all of the cache data.
    (em_format_is_inline): use the new data structure to determine
    state.
    (em_format_set_inline): same for setting.
    (emf_multipart_signed): cache/lookup the cached part.
    (emf_insert_cache): helper to add a cache entry.
    (emf_multipart_encrypted): cache decrypted part.
    (emf_application_xpkcs7mime): same.

2004-07-08  Not Zed  <NotZed@Ximian.com>

    ** See bug #60900 (related only).

    * em-format-html-display.c (efhd_attachment_show): let set_inline
    do the redraw itself if required.  kill some dead code.

    * em-format.c (em_format_set_inline): trigger a redraw here like
    the other em_format_set methods, if the state changed.

    * em-format.c (emf_format_clone): free inline table keys & setup
    string hash table.

    * em-format-quote.c (emfq_format_attachment): 
    * em-format-html-display.c (efhd_format_attachment): 
    * em-format-html.c (efh_format_attachment): is_inline api changes.

    * em-format-html-display.c (efhd_attachment_show): set_inline api
    changes.

    * em-format.c (em_format_is_inline): make this use the partid
    rather than the part address as a key, which may change.
    (emf_init): make the inline talbe a string hashtable.
    (emf_finalise): free inline keys.
    (emf_clone_inlines): copy the key string.

2004-07-07  Jeffrey Stedfast  <fejj@novell.com>

    Fix for bug #61199.

    * em-format-html.c (efh_format_address): Same.

    * em-format-quote.c (emfq_format_address): Make sure 'real' isn't
    NULL before using.

2004-07-08  Frederic Crozat  <fcrozat@mandrakesoft.com>

    * Makefile.am:
    tarball should ship .schemas.in.in files, not generated files.

2004-07-02  JP Rosevaer  <jpr@novell.com>

    * Makefile.am (SUBDIRS): Revert previous error change

2004-09-10  Not Zed  <NotZed@Ximian.com>

    * em-*: various doco updates.

    * em-format-quote.c (emfq_builtin_init): instead of removing the
    type, just add an override noop.  Changed api's.

2004-09-09  Not Zed  <NotZed@Ximian.com>

    * em-format.c (em_format_class_remove_handler): Change this to use
    the original structure only, not by type.

    * em-format-hook.c (emfh_enable): implement hook enablation.

2004-09-07  Not Zed  <NotZed@Ximian.com>

    * em-account-editor.c (emae_setup_providers): set the provider
    shown selected on the store as well.

    * mail-config.glade: moved the druid 'help text' directly into the
    glade file.

    * em-account-editor.c (emae_check_complete): add pre-load for
    management page options.

    * em-utils.c (em_utils_configure_account): remove use of
    mail-config-druid.

    * em-account-editor.c (emae_remove_childen): removed.
    (*): removed service->url, always get it from/set it to the
    e-account so it doesn't have side-effects with plugins.

    * mail-dialogs.glade: fix up the names of the various license
    dialog fields.

2004-09-06  Not Zed  <NotZed@Ximian.com>

    * em-account-editor.c (emae_receive_options_extra_item): store the
    config widgets in the item entry itself.
    (emae_auto_detect): wasted a whole lot of time on this crap.

    * em-account-prefs.c (account_able_clicked): removed some redundant logic.

    * mail-send-recv.c (mail_autoreceive_setup): renamed to
    mail_autoreceive_init and rewrote all the callbacks.  now it
    listens to events on the accountlist directly and doesn't need
    invoking manually.  It also runs relative to the account always,
    rather than copying the uri.  Removed all callers except the mail
    component one.

    * em-account-editor.c (em_account_editor_provider_selector_new):
    removed becaus eof below.
    (em_account_editor_construct): copy the account to a working
    object if supplied, else create a new one.

    * mail-config.glade: make the provider selectors just use
    em_account_editor_dropdown new for the dropdown menu.

    * em-account-editor.c (prepare_signatures): removed, merged into
    the identity page code.
    (sig_fill_menu): removed.
    (emae_setup_signatures): new function to setup signatures on a
    gtkcombobox.
    (clear_menu): removed.
    (signature_changed): removed.
    (emae_signature_changed): new function for changed.
    (signature_removed): removed.
    (emae_signature_removed): new function for removed.
    (emae_signature_get_iter): helper for finding the right row for
    this signature.
    (signature_added): removed.
    (emae_signature_added): new function for added.
    (sig_activate): removed.
    (emae_signaturetype_changed): new function to update the account
    info immediately.
    (sig_add_new_signature): renamed to emae_signature_new.
    (select_account_signature): no longer needed, this happens in the
    setup.

    * mail-config.glade: changed the signature thing to a custom
    widget (gtkcombobox).

    * em-account-editor.c (em_account_editor_construct): updates for
    api change, table sections require table items.
    (emae_setup_service): handle host:port hostname syntax.
    (emae_hostname_changed): and here too.
    (emae_commit): fill this out, and implement it.

2004-09-04  Not Zed  <NotZed@Ximian.com>

    * *.c: include gnome i18.h if needed since camel-object.h was
    fixed.

    * em-format.c (em_format_class_add_handler): if a handler is
    already set for type, link it in.

    * em-format.h: added a link pointer to EMFormatHanlder, so that
    overrides can also fallback.  remove applications member - not
    used anymore.

2004-09-01  Not Zed  <NotZed@Ximian.com>

    * em-popup.h: added some docs.

    * em-popup.c (emp_standard_menu_factory): 
    * em-folder-tree.c (tree_drag_data_received): popup api changes.

2004-08-31  Not Zed  <NotZed@Ximian.com>

    * em-format-html-display.c (efhd_attachment_button_show): use a
    wrapper for the button event since the popup event has changed
    signature.

2004-08-30  Not Zed  <NotZed@Ximian.com>

    * em-popup.c (emp_standard_menu_factory): changed args.
    (struct _open_in_item): removed, use user data instead.
    (*): fix callbacks for new apis.
    (emp_popup_open): Removed some dead popup callbacks never invoked.
    (em_popup_target_new_attachments): new target type for attachment
    bar in composer.

    * em-folder-tree.c (emft_popup*): convert to new e-popup apis.

    * em-folder-view.c: emfv_popup_*: convert to new e-poup callback
    signatures.
    (EMFV_MAP_CALLBACK): fix for e-popup callback change.
    (EMFV_POPUP_AUTO_TYPE): same.
    (emfv_popup): dont bother setting item callback data.
    (emfv_popup_labels_free): api changes.
    (emfv_popup_items_free): new free method.
    (EMFVPopupItem): No longer needed.
    (emfv_uri_popup_free): api changes.
    (emfv_format_popup_event): new api's == simpler code.

    * em-account-editor.c (emae_receive_options_extra_item): add a
    hack for the label item, which is only used by connector to
    override the hostname and username labels.

2004-08-24  Not Zed  <NotZed@Ximian.com>

    * em-account-editor.c (em_account_editor_construct): create the
    window rather than the widget here.

    * mail-config.glade: remove the extra_page from the druid, it is
    autogenerated now.  renamed the "Receiving options" notebook page
    to "Receiving Email" since it isn't hte options page.

    * em-account-editor.c (emae_receive_options_page): no longer
    needed, autogenerated.
    (emae_receive_options_item): setup the auto-receive time values.
    (emae_receive_page): don't setup the auto check time values here.

    * mail-config.glade: Remove the Receiving Mail tab, it is now
    completely auto-generated.

2004-08-17  Not Zed  <NotZed@Ximian.com>

    * em-event.[ch]: mail event dispatcher.

    * mail-component.c (mc_startup): hook into events.

    * mail-folder-cache.c (update_1folder): always set the uri field.
    (real_flush_updates): emit a folder.changed:new event if we have new
    mail.

2004-08-13  Not Zed  <NotZed@Ximian.com>

    * mail-config.glade: replaced ssl selector with custom widget
    (gtkcombobox).  Giv the preferences, composer toplevel unique
    names.

2004-07-29  Not Zed  <NotZed@Ximian.com>

    * mail-config.glade: replaced source and transport selector with
    custom widget (gtkcombobox).

    * em-account-editor.[ch]: copy over mail-account-gui.[ch] and
    rename stuff.  Make a gobject.  Move most internals, internal.

2004-07-28  Not Zed  <NotZed@Ximian.com>

    * em-composer-prefs.c (em_composer_prefs_construct): get the
    toplevel tab as the root.
    (em_composer_prefs_construct): setup plugin metadata for composer
    prefs.

    * em-mailer-prefs.c (em_mailer_prefs_construct): setup plugin
    metadata for mail preferences.

    * em-config.c (em_config_target_new_prefs): new target for 'prefs'
    mode, everything global via gconf.

    * em-mailer-prefs.c (em_mailer_prefs_construct): get the gui from
    the preferences_toplevel not the preferences_tab window which we
    don't need.

    * mail-config.glade: rename the preferences 'toplevel' to
    preferences_toplevel so we can get it unparented.  And the
    composer toplevel to composer_toplevel.

    * em-folder-properties.c (em_folder_properties_show): remove test
    code.

    * em-format.h (struct _EMFormatPURI): add a free function
    callback.

    * em-format.c (emf_clear_puri_node): if the free function is set,
    call it.

2004-07-01  Rodney Dawes  <dobey@novell.com>

    * Makefile.am (BUILT_SOURCES): Remove $(error_i18n)
    (CLEANFILES): Put $(error_i18n) in here

2004-06-29  Not Zed  <NotZed@Ximian.com>

    * em-folder-tree-model.c (folder_created_cb): call
    folder_subscribed directly from the async function not
    foldre_subscribed_cb, otherwise we run out of order.  Part of
    #60775.

    * em-vfolder-rule.c (source_add): setup exclusion for vfolder
    sources, noselect folders.  Bug #60794.

2004-06-23  Jeffrey Stedfast  <fejj@novell.com>

    * em-folder-selector.c (em_folder_selector_get_selected_path):
    Don't prepend the path string with a '/'.

    * em-folder-tree.c (em_folder_tree_create_folder): This takes a
    full_name so update the argument to make that clear.
    (emft_create_folder): Same and also don't strip a leading '/'

2004-06-25  Not Zed  <NotZed@Ximian.com>

    * em-folder-tree.c (folder_tree_new): set search column.  #60152.

2004-06-24  Rodney Dawes  <dobey@novell.com>

    * em-utils.c (em_utils_add_address): Add code to set the parent,
    position, and type hint of the "Add address" dialog

    Fixes #60030

2004-06-23  Not Zed  <NotZed@Ximian.com>

    ** See #54030.

    * e-searching-tokenizer.c (e_searching_tokenizer_match_count):
    only return a count if we're using the primary search string.

    * em-format-html-display.c (efhd_search_response): set the primary
    search string to NULL instead of resetting it.
    (efhd_update_search): dont noop if we have a null search text,
    just set an empty search.

    * e-searching-tokenizer.c (e_searching_tokenizer_reset): remove
    this, revert jeff's fixes for 54030.  this is incomplete and so
    doesn't work either (search text stays remembered and secondary
    search text lost too).

    ** See #60523.

    * em-folder-view.c (emfv_finalise): unhook the folder changed
    before destroying the async thing, and move it all to destroy
    event anyway.
    (emfv_destroy): as above.

2004-06-22  Jeffrey Stedfast  <fejj@novell.com>

    * em-folder-tree-model.c (sort_cb): Same as below.
    (em_folder_tree_model_remove_folders): Same.

    * em-folder-tree.c (emft_maybe_expand_row): As toshok discovered,
    gtk_tree_model_get() strdup's string arguments, *sigh*, so we need
    to free them.
    (tree_drag_data_delete): Same.
    (tree_drag_data_get): Same.
    (tree_drag_data_received): Same.
    (emft_drop_target): Same
    (em_folder_tree_get_selected_uris): Same.
    (get_selected_uris_path_iterate): Same.
    (emft_update_model_expanded_state): Same.
    (emft_tree_row_expanded): Same.
    (emft_tree_row_activated): Same.
    (emft_popup_delete_response): Same.
    (emft_popup_delete_folder): Same.
    (emft_popup_rename_folder): Same.
    (emft_popup_properties): Same.
    (emft_tree_button_press): Same.
    (emft_tree_selection_changed): Same.

2004-06-22  Chris Toshok  <toshok@ximian.com>

    * em-folder-tree.c (render_pixbuf): gtk_tree_model_get on a string
    field allocates the return value.  free path.

2004-06-22  Jeffrey Stedfast  <fejj@novell.com>

    * em-popup.c (emp_apps_open_in): If the app requires a terminal to
    run, give it a bloody terminal (who uses vi in an xterm to view
    attached text files? *sigh*). Fixes bug #51259.

2004-06-21  Chris Toshok  <toshok@ximian.com>

    * em-folder-tree.c (render_display_name): gtk_tree_model_get on a
    string field allocates the return value.  free name.

2004-06-21  Radek Doulik  <rodo@ximian.com>

    * em-junk-filter.c (em_junk_sa_test_spamd): make sure we test for
    -p and --port only and not for other options as --pidfile

    Fixes #60260

    (em_junk_sa_test_spamd): try to get spamd/spamc binaries from
    gconf

    Implements #59368

2004-06-18  Not Zed  <NotZed@Ximian.com>

    ** See #31027.

    * em-vfolder-editor.c (em_vfolder_editor_new): make sure we
    construct the rule editor with a source of 'incoming', otherwise
    newly created rules have no source in the current session.

    * em-vfolder-rule.c (em_vfolder_rule_init): init the vfolder
    source to 'incoming' always.

    * mail-vfolder.c (uri_is_ignore): fix debug statement.

    ** See #60214.

    * em-folder-view.c (em_folder_view_print): re-arrange code to make
    the dialogue async.  We also now load the message every time
    before printing.
    (emfv_print_response): handle response to print.
    
    * em-format-html-print.c (em_format_html_print_message): new api
    to print a specific uid on a specific folder.

2004-06-18  Not Zed  <NotZed@Ximian.com>

    * em-vfolder-rule.c (get_widget): use mail dialogs.glade.

    * mail-dialogs.glade: move the vfolder-source window here from
    mail-config.glade.

    * Makefile.am (glade_DATA): fix the glade list.

    * mail-license.glade, subscribe-dialog.glade, mail-security.glade,
    * mail-search.glade: Merged into mail-dialogs.glade.  Should be
    easier to manage.

    * message-tag-followup.c (construct): use mail dialogs glade file.

    * mail-account-gui.c (display_license): use mail dialogs glade file.

    * em-subscribe-editor.c (em_subscribe_editor_new): use new glade
    file.

    * em-format-html-display.c (em_format_html_display_search): use
    merged glade file.
    (efhd_xpkcs7mime_validity_clicked): same.

    * mail-dialogs.glade: merge various glade files into here.

2004-06-17  Not Zed  <NotZed@Ximian.com>

    ** See #59885.

    ** Moved all of the mail specific filtering stuff from filter/* to
    here.  Renamed appropriately into em* space, etc.

    * em-filter-folder-element.c (emff_copy_value): implement for folders.

    * em-vfolder-rule.c (get_widget): read the vfolder glade from
    mail-config.glade.

    * mail-config.glade: moved the vfolder source selector here.

    * em-search-context.c: new mail search specific rule context.

    * mail-component.c (setup_search_context): use the new
    em_search_context.

    * vfolder-rule.c (validate): change error to mail context.
    
    * filter-folder.c (validate): change error to mail context.

    * Makefile.am (em-filter-i18n.h): added rule for i18n of mail
    filter type stuff.
    (libevolution_mail_la_SOURCES): added in the filter and vfolder
    rule stuff specific to mail.

    ** See #59885.

    * em-format-html-quote.[ch]: remove and remove from build, not
    used.

    * Makefile.am (libevolution_mail_la_LIBADD): add libeabutil and
    evolutionsmime.

    * mail-component-factory.c (factory): there is no mail_config
    anymore.

2004-06-16  Rodney Dawes  <dobey@novell.com>

    * em-folder-properties.c: Include gtk[hv]box.h so we can use them
    (emfp_dialog_got_folder): Fix the border widths and spacings for
    the internal widgets and the dialog's vbox and action area to be
    compliant with the HIG
    Fix the general layout of the dialog to be HIG-compliant as well
    Use ngettext for the row labels for number of messages
    Add a cancel button, since we are not instant-apply
    Align the message counts to the right
    Part of this patch is from Christian Neumair <chris@gnome-de.org>

    * mail-component.c (view_changed_cb): Fix a typo for the sent folder
    send is not a pluralization of sent

2004-06-16  JP Rosevear  <jpr@novell.com>

    * em-composer-prefs.c (spell_set_ui): clear the error, don't free
    it, so NULL is handled properly

2004-06-16  Not Zed  <NotZed@Ximian.com>

    * em-utils.c (em_utils_selection_get_urilist): handle comments in
    the urilist.  Can't remember the rfc for it.

    ** See #56479.

    * em-utils.c (em_utils_in_addressbook): use the main thread to
    setup the addressbook list.
    (em_utils_in_addressbook): only check against the "completion"
    sources, not all of them.

2004-06-15  Not Zed  <NotZed@Ximian.com>

    * em-folder-browser.c (emfb_mail_stop): call mail_cancel_all to
    implement the stop button.

    * em-utils.c (emu_addr_sources_refresh): don't unref the group
    list, otherwise the sources become broken now (?).
    (em_utils_in_addressbook): add some locking.  add cancellation.
    this is almost certainly going to cause issues.

    * mail-mt.c (mail_cancel_hook_add, mail_cancel_hook_remove)
    (mail_cancel_all): new functions to implement a global mailer stop
    button.

2004-06-15  Jeffrey Stedfast  <fejj@ximian.com>

    * mail-ops.c (save_part_save): This code no longer needs to do
    charset conversion. Yay. Fixes bug #60225.

    * em-utils.c (em_utils_save_part_to_file): Use the proper e-error
    namespace.

2004-06-15  Jeffrey Stedfast  <fejj@novell.com>

    * em-folder-tree.c (emft_popup_copy_folder_selected): frombase is
    simply the select_path, since selected_path is now just the
    full_name rather than the path. Fixes bug #60075.

    * em-composer-utils.c (attribution_format): New function to format
    an attribution string (won't crash if translators were sloppy with
    their strftime/printf-style formatters). Also nice/extendable for
    future feature enhancements such as user-customisable attribution
    strings.
    (composer_set_body): Use above function rather than using
    e_strftime/etc ourselves.

2004-06-15  Jeffrey Stedfast  <fejj@ximian.com>

    * em-folder-view.c (emfv_init): Changed the second
    gtk_selection_add_target() to use GDK_SELECTION_CLIPBOARD rather
    than GDK_SELECTION_PRIMARY again. This should fix bug #60022.

2004-06-14  Radek Doulik  <rodo@ximian.com>

    * em-mailer-prefs.c (em_mailer_prefs_construct): the check button
    label has now opposite meaning (after UI changes), call
    toggle_button_init with 'not' parameter set to TRUE
    (toggle_button_toggled_not): new helper function, sets negative
    value to gconf bool key

2004-06-14  Not Zed  <NotZed@Ximian.com>

    * mail-vfolder.c (rule_changed): don't check rule->source, its
    irrelevent to vfolder sources, and clean up the logic a bit.
    #59158.

    * em-folder-tree.c (emft_popup_new_folder_response): destroy the
    create dialogue if we're firing up the vfolder creation window.

    * em-composer-utils.c (get_reply_all): if we removed all of the
    addresses because they were 'us', add the first to
    address back.  otherwise reply-to-all behaves strange.

2004-06-11  Jeffrey Stedfast  <fejj@ximian.com>

    * em-folder-tree.c (em_folder_tree_set_selected): Free any old
    select_uri string we may have.
    (emft_tree_row_expanded): Remove the gross hack that was here.
    (emft_get_folder_info__got): Check for priv->select_uri and try
    selecting it (if we can't select it yet, it'll just be re-queued
    for later).
    (emft_tree_row_activated): Clear the select_uri if set, the user's
    selection overrules any auto-selection.
    (emft_tree_selection_changed): Same.

2004-06-11  Not Zed  <NotZed@Ximian.com>

    * em-folder-tree.c (emft_tree_button_press): rearrange the setting
    up of the target flags, stores can have a null path.

    * em-folder-selector.c (emfs_create_name_changed): use
    get_selected_uri rather than path.  a valid uri may have a null
    path now.
    (emfs_create_name_activate): and here too.
    (em_folder_selector_get_selected_path): check the uri is null for
    a selected path, and then handle a null path.

    * em-folder-tree-model.c (em_folder_tree_model_add_store): revert
    previous change.  Stupid emftm.

    * em-utils.c (em_uri_from_camel): handle a null path or fragment.

    * em-folder-tree-model.c (em_folder_tree_model_add_store): set the
    full name of the store to "".  Fixes #59925 and probably other
    issues.  Related to the removal of folderinfo->path.

2004-06-10  Jeffrey Stedfast  <fejj@novell.com>

    Fixes bug #58825. Ugh. Really Gross Hack (tm).

    * em-folder-tree.c (emft_tree_row_expanded): If the store that we
    are expanding matches the uri that we've been requested to select
    (e.g. from before the store was added to the tree), then give the
    uri to the get_folder_info_op.
    (em_folder_tree_set_selected): If the store for the uri isn't in
    the tree yet, save the uri for later.

    * mail-component.c (folder_selected_cb): Set the selected state of
    the folder-tree and save it.
    (impl_createControls): Restore the selected state on the
    folder-tree.

    * em-folder-tree-model.c (em_folder_tree_model_set_selected): New
    function to set the selected-uri saved state.
    (em_folder_tree_model_get_selected): New function to get the
    selected uri saved state.
    (em_folder_tree_model_save_state): Renamed.

    * em-folder-tree.c (emft_update_model_expanded_state): Don't let
    path be NULL if the node is a store node (path == NULL for any
    other case is a bug).
    (emft_maybe_expand_row): Same.

2004-06-10  Not Zed  <NotZed@Ximian.com>

    * message-list.c (message_list_set_selected): use new
    etreeselectionmodel api to select paths in one call.  Fixes
    #59546.

    * em-folder-view.c (emfv_message_reply): check that we have
    content selected, not just a selection, before trying to reply to
    that content.  #59146.
    (emfv_message_reply): strip call content-* headers (fixme), and
    set transfer-encoding to 8bit.

2004-06-08  Rodney Dawes  <dobey@ximian.com>

    * mail-config.glade: Fix for SSL options appearing for sendmail

2004-06-08  Jeffrey Stedfast  <fejj@novell.com>

    * em-folder-tree.c (em_folder_tree_set_selected): Scroll to the
    selected folder if needed. Fixes bug #59609.

    * em-folder-selector.c (em_folder_selector_construct): Make the
    chooser non-modal. Fixes bug #53735.

    * em-folder-tree.c (emft_tree_row_collapsed): Only change the
    cursor if the currently selected folder is a subfolder of the
    folder collapsed. Fixes bug #59801 without breaking bug #57665.
    (emft_tree_test_collapse_row): Renamed from
    emft_tree_collapse_row() to match the new signal we are connected
    to.

2004-06-07  Jeffrey Stedfast  <fejj@novell.com>

    * em-folder-tree-model.c (em_folder_tree_model_add_store): Set the
    store's FULL_NAME to NULL here. Fixes the crash in bug #59713.

2004-06-07  Dan Winship  <danw@novell.com>

    * em-folder-view.c (emfv_popup_menu, emfv_message_pixmaps):
    s/stock_save_as/stock_save-as/

    * em-popup.c (emp_standard_select_popups,
    emp_standard_object_popups): Likewise   

2004-06-05  Christian Neumair  <chris@gnome-de.org>

    * em-folder-tree.c: Shuffle usage of trailing "..." in menus according
    to the HIG.

2004-06-05  Christian Neumair  <chris@gnome-de.org>

    * mail-component.c (view_changed_cb): Use ngettext for message count
    information.

2004-06-04  Radek Doulik  <rodo@ximian.com>

    * default/C/Inbox (Content-Type): added size info to IMG tags so
    that it loads the message smoother

2004-06-03  William Jon McCann  <mccann@jhu.edu>

    * mail-session.c (request_password): Don't pack entry and checkbox
    widgets directly into the dialog vbox so that they line up
    correctly with the action area buttons.

2004-06-02  Not Zed  <NotZed@Ximian.com>

    * mail-component.c (mc_add_local_store_done): put this back in,
    local folders not being noted properly all the time.

2004-06-01  Jeffrey Stedfast  <fejj@novell.com>

    * em-composer-utils.c (forward_non_attached): Don't attach
    anything ever. This is confusing way too many users who expect it
    to attach all or nothing. Since Forward-Attached is what users
    should be using to forward a message and all attachments, make
    these not attach anything (which is what other mailers do
    anyway). This wlso makes Forward-Quoted consistant with
    Reply-Quoted which is a Good Thing (tm).

2004-06-01  Not Zed  <NotZed@Ximian.com>

    * em-folder-selector.c (em_folder_selector_get_selected_uri): set
    the right path on the url.

    * mail-signature-editor.c (load_signature): ugh, unlike camel
    exceptions, you can't pass NULL to CORBA calls.
    (mail_signature_editor): ditto.  See bug #58815.

2004-05-28  Jeffrey Stedfast  <fejj@novell.com>

    * em-folder-tree.c (d): Disable debug here too - all this code has
    been working fine.

    * em-folder-selector.c (d): Disable debug spew here too (not that
    this debug was ever seen since it never hit those conditions).

    * mail-folder-cache.c (d): Disable debug here too.

    * em-folder-tree-model.c: Disable debug spewage that we don't need
    anymore. The amount of debug spewage on the console is getting to
    be too much to find anything.

    * em-folder-tree.c (emft_expand_node): Use p+1 as the full_name
    rather than p. Fixes bug #59187.

2004-05-27  Jeffrey Stedfast  <fejj@novell.com>

    * em-folder-tree.c (emft_get_folder_info__got): Instead of
    removing the "Loading..." row for toplevel folder nodes on failure
    (which indicates a failure conenct to the server, most likely),
    collapse the store node so that if the user expands the store
    node, it will automagically try connecting again. Fixes bug #57493.

2004-05-27  Rodney Dawes  <dobey@novell.com>

    * Makefile.am (EXTRA_DIST): Add $(error_i18n)

2004-05-26  Not Zed  <NotZed@Ximian.com>

    * mail-vfolder.c (vfolder_adduri_desc): initialise desc to NULL
    before using it later on.  gcc doesn't warn on this if you're not
    optimising.  Sigh.  Probably fix #59070, #59060, #58972 and
    friends.

    * importers/evolution-mbox-importer.c (create_control_fn): set the
    default selection to inbox.

    * importers/evolution-outlook-importer.c (folder_selected)
    (create_control_fn): copied from mbox importer.  fixes a crash &
    lets you choose the target folder.

2004-05-25  Jeffrey Stedfast  <fejj@novell.com>

    * mail-errors.xml: a few fixes.

    * em-format-quote.c (emfq_text_plain): Only strip the signature if
    we are in some wy modifying the content (we don't want to remove
    the signature if we are editing the message as a new
    message). Fixes bug #58826.

2004-05-25  Not Zed  <NotZed@Ximian.com>

    * mail-component.c (mc_add_local_store_done): removed, now
    redundant.

    * em-folder-tree.c (em_folder_tree_set_selected): fix for path changes.

    * em-folder-tree-model.c (em_folder_tree_model_set_unread_count):
    change to use full name rather than path name.

    * em-folder-tree-model.h: renamed path_hash to full_hash.

    * em-folder-tree-model.c (folder_subscribed): dont use
    g_path_get_dirname here, it is os dependent, we want / always.
    (full_hash_free): rename from path_hash free.

    * em-folder-view.c (emfv_popup_menu[]): disable add sender to
    addressbook bar if it is also disabled.  #58955.

2004-05-24  Not Zed  <NotZed@Ximian.com>

    * mail-account-gui.c (mail_account_gui_build_extra_conf): don't
    enable the widget based on its writability if it is a dependent
    option which is now disable.
    (setup_toggle): return whether the widget is sensitive too.
    #57171.

    * em-popup.c (em_popup_target_new_select): only enable add sender
    if we also have 1 selected.  #56663.

    * em-folder-view.c (emfv_enable_menus): remove some debug.

    * em-format-html.c (efh_format_header): output commas between
    newsgroups, and also append_printf.

2004-05-24  Sivaiah Nallagatla <snallagatla@novell.com>

    * mail-account-gui.c (mail_account_gui_build_extra_conf): added
    empty handling for CAMEL_PROVIDER_CONF_HIDDEN
    (extract_values): added handling for CAMEL_PROVIDER_CONF_HIDDEN

2004-05-24  Not Zed  <NotZed@Ximian.com>

    * em-folder-tree.c (em_folder_tree_set_selected): use set_cursor
    instead of scroll_to_row.  See #58383.
    (get_selected_uris_iterate): removed.
    (em_folder_tree_get_selected_uris): use an interative call based
    on gtk_tree_selection_get_selected_rows rather than
    selected_foreach, as the gtk+ docs suggest.  was trying to fix a
    bug but it seems gtktreeselection bug (shift-select rows using
    keyboard only)

    * message-list.c (regen_list_regened): pull the message from the
    regen list before we check the list and pending uid.

    * em-folder-view.c (emfv_enable_menus): remove the hack for
    enabling select delete from here and put it in the right place.
    (em_folder_view_get_popup_target): put it here so its consistent.

2004-05-22  Not Zed  <NotZed@Ximian.com>

    * mail-tools.c (mail_tool_uri_to_folder): put note_store back in.
    Quick hack to fix the issue of folders being opened before we hook
    onto folder_created.

    * mail-folder-cache.c: remove 'name' from update struct, not used
    anymore

    ** Another unread count bug, #58814.

    * mail-vfolder.c (context_rule_added):
    * mail-tools.c (mail_tool_uri_to_folder):
    * mail-component.c (mc_add_local_store_done): don't call mail note
    folder anymore, fix up headers.

    * mail-folder-cache.c (store_folder_opened)
    (mail_note_store_remove, mail_note_store): handle the new
    store:folder_opened signal.  Don't need the mail_note_folder hack
    anymore, mail_tool_uri_to_folder slowly does less.

2004-05-21  Not Zed  <NotZed@Ximian.com>

    * mail-mt.c (do_call): add marshaller for p_ppppp call.

    * mail-session.c (get_password): fix for camel api changes.
    (forget_password): same.

    ** See #58376.

    * message-list.c (mail_regen_list): do some timeout foo so we
    don't keep doing list regnerations if we're getting called too
    often.  God knows what this will break.
    (message_list_set_selected): removede bug printf.
    (regen_list_free): move the message-list poking stuff into
    regen_list_regened.
    (message_list_set_folder): call mail_regen_cancel to cancel any
    regen stuff.
    (mail_regen_cancel): cancel/clear outstanding regenerations.
    (message_list_destroy): do it here too.
    (message_list_select_uid): also set the pending select uid if we
    have a timeout pending.

    * mail-component.c (impl_createControls): set the defualt parent
    to the main folderview as soon as its created.

    * em-folder-tree.c (emft_popup_copy_folder_selected): use
    get_toplevel rather than get_ancestor.  seems the more reliable
    one.  also we're always parented so we shoudl always find a
    toplevel window.
    (em_folder_tree_create_folder): same.
    (emft_popup_delete_response): set error parent.
    (emft_popup_delete_folder, emft_popup_rename_folder) 
    (emft_popup_rename_folder, emft_popup_rename_folder): 

    * em-migrate.c (update_passwords_1_2): finally put the 1.2
    password upgrade patch in.  Untested.  #42721.

2004-05-20  Jeffrey Stedfast  <fejj@novell.com>

    Fixes for bug #57305.

    * mail-account-gui.c (sig_add_new_signature): Updated for changes
    below.

    * em-composer-prefs.c (em_composer_prefs_new_signature): No longer
    takes a script argument (makes no sense to edit a script with an
    HTML editor if we require that the script already exist before we
    let the user add it anyway).
    (sig_add_cb): Updated for above change.
    (sig_add_script_response): Don't pop up an editor window for the
    newly added script, the script has already been created! Instead
    simply create a new ESignature object, set the sig->name, and add
    it to the signature list.

2004-05-20  Radek Doulik  <rodo@ximian.com>

    * em-mailer-prefs.c (em_mailer_prefs_construct): remove "use
    daemon" handling code

    Fixes #56909

2004-05-20  Not Zed  <NotZed@Ximian.com>

    ** See #58388.

    * mail-mt.c (mail_msg_check_error): surpress any errors about
    messages not found because of invalid uid's.  They're really just
    internal errors.

    ** See #57583.

    * message-list.c (build_tree): save/restore the selection when we
    update.
    (message_list_set_selected): util to set the selected messages
    from a list of uids.
    (build_flat): same.  I wonder if etree's unbroken enough to use it
    more directly?

    ** See #58693.
    
    * mail-send-recv.c (mail_autoreceive_setup): add bounds checking
    so sloppy ui work wont break it again.

    * mail-config.glade: put the minimum for autocheck back to 1
    minute.  Naughty jeff.

2004-05-19  Chris Toshok  <toshok@ximian.com>

    * importers/pine-importer.c (import_contacts): use the new
    e_book_new_* and e_book_open apis.

    * em-utils.c (em_utils_in_addressbook): use the new e_book_new_*
    and e_book_open apis.

2004-05-19  Jeffrey Stedfast  <fejj@novell.com>

    * message-tags.glade: Fixed the icon name to get the right one.

    * message-list.c (message_list_init_images): Changed to load an
    empty pixbuf manually rather than relying on the pixbuf returned
    for "" from e_icon_factory_get_icon() since it has changed to
    return a broken image icon.

2004-05-19  JP Rosevear  <jpr@novell.com>

    * Makefile.am: don't dist the error .h file

2004-05-19  Not Zed  <NotZed@Ximian.com>

    * mail-ops.c (send_queue_send): set seen when we set deleted.  ?
    #56549.

    * em-inline-filter.c (emif_add_part): if we end up with an
    application/octet-stream part, pre-snoop it so we set the right
    mime type to start with.  Fixes #58554.

    * em-format.c (emf_snoop_part): removed, now in em-utils.

    * em-utils.c (em_utils_snoop_type): rah rah, snoop a mime part's
    type.

    * em-format-html.c (efh_text_plain): Revert jeff's fix for #56290.
    Ugh, we already have all the citation info in local data.  Removed
    the need for gconf too.

2004-05-19  Not Zed  <NotZed@Ximian.com>

    * em-format-html.c (efh_format_secure): make this match the efhd
    stuff.

    * em-format-html-display.c: removed stock_signature-nokey since it
    doesn't exist in gnome-icon-theme.
    (efhd_xpkcs7mime_button): if there is no signing, but encryption,
    use its icon.  if there's no encryption too, use a broken icon
    (?).

2004-05-05  William Jon McCann  <mccann@jhu.edu>

    * GNOME_Evolution_Mail.server.in.in: Add menu_label and
    menu_accelerator.

2004-05-19  Not Zed  <NotZed@Ximian.com>

    * mail-component.c (mc_quit_sync): fixed up the empty trash on
    exit thing, to update for all stores, not update the timestamp on
    the first store synced.

2004-05-18  Cantona Su <paradisetux@hotmail.com>

    * em-format-html.c: Added header "X-Newsreader" for handle Outlook
    Express as Mailer.
    
2004-05-18  Not Zed  <NotZed@Ximian.com>

    * em-folder-browser.c (em_folder_browser_show_preview): don't
    nomarkseen when we restore the message when we show the preview.
    #58387.

    * mail-folder-cache.c (folder_changed): no new message test if its
    the drafts folder too.

    * mail-vfolder.c (vfolder_adduri_desc): use a nicer, account-based
    formatter for folder names.  Hmm, that was a good waste of time.
    For #55412.

    * em-folder-view.c (emfv_list_selection_change): Listen to the
    tree selection change event directly & proxy out, so we can update
    the status bar properly.  Blah.  For #58600.

    ** Quick fix for #57434

    * em-format.c (emf_format_clone): fix the FIXME about cloning
    headers shown.

    * em-format-html.c (efh_format_headers): only show rupert if we're
    showing rupert.

    * em-format-html-print.c (efhp_init): default show_rupert to off.

    * em-format-html.c (efh_init): default show_rupert to on.

    * em-format-html.h: added show_rupert bit.

    * mail-folder-cache.c (folder_changed): don't emit new mail if its
    any vfolder, not just vtrash folder.  #56350.

    * em-folder-view.c (emfv_list_done_message_selected): run
    enable_menu's to make sure we're up to date.  #58352.

    ** crappy hacks for #58385.

    * em-folder-selection-button.c
    (em_folder_selection_button_clicked): leave Ok button for this
    selection.

    * em-folder-selection.c (em_select_folder): added oklabel here too.

    * em-folder-selector.c (em_folder_selector_new)
    (em_folder_selector_construct, em_folder_selector_create_new):
    Added oklabel- text for ok label.
    (em_folder_selector_create_new): Set the ok label to Create.

    * em-message-browser.c (emmb_set_message): don't mark message seen
    if user has disabled auto-mark seen feature.  #58629.

    * em-format.c (em_format_part): if we have no content-type header,
    then we get no mime-type set, so assume text/plain.  #58470.

2004-05-17  Jeffrey Stedfast  <fejj@ximian.com>

    * em-mailer-prefs.c: #include <gtk/gtkliststore.h>. Fixes bug
    #58407.

2004-05-17  Not Zed  <NotZed@Ximian.com>

    * mail-account-gui.c (mail_account_gui_setup): put the None item
    at the head of the providers list.
    (mail_account_gui_setup): only set the transport default fallback
    if it is not a STORE_AND_TRANSPORT type provider (since that was
    just disabled).  #57939.

    * message-list.c (on_selection_changed_cmd): only NOOP if we have
    no selection and no uid, if we have a selection and no uid, then
    always update.  Fixes #58267 without breaking the double-load
    thing.

    * em-folder-view.c (em_folder_view_open_selected): keep the hide
    deleted status.  Makes #51082 work at last.

    ** Bug #6556.

    * message-list.c (ml_drop_async_desc, ml_drop_async_drop)
    (ml_drop_async_done, ml_drop_async_free, ml_drag_data_action)
    (ml_drop_popup_copy, ml_drop_popup_move, ml_drop_popup_cancel)
    (ml_tree_drag_data_received): implement async drop operations and
    the ask drop option menu.

2004-05-14  Not Zed  <NotZed@Ximian.com>

    ** Bug #6556.

    * message-list.c (ml_selection_received_uidlist): removed, not
    needed anymore.
    (ml_selection_received): call get_uidlist to paste the selection.
    (ml_tree_drag_data_received): same here.

    * em-folder-tree.c (emft_drop_uid_list): removed, not needed
    because of below change.

    * em-utils.c (em_utils_selection_get_uidlist): actually do the
    copy now, don't just decode the data.

    * em-folder-tree.c (tree_drag_data_received): just copy the
    selection data data itself, dont decode yet.
    (emft_import_message_rfc822): removed, not needed, use em utils
    stuff instead.
    (emft_drop_message_rfc822): same.
    (emft_drop_text_uri_list): same.
    (emft_drop_async_free): simply free stuff.
    (emft_drop_async_drop): call em_utils stuff where they exist to do
    the drop.

    * message-list.c (ml_tree_drag_data_get): send x-mailbox instead
    of message/rfc822 for the mailbox.
    (ml_tree_drag_data_received): handle drop of x-mailbox differently
    to message/rfc822.
    (ml_tree_drag_motion): implement so proper options are setup
    whilst dragging.
    (message_list_construct): seutp the drag src/dest types for
    changes typs and with ASK action.

    * em-utils.c (em_utils_read_messages_from_stream): dont unref the
    stream when we get it.
    (em_utils_selection_get_mailbox): add an argument to scan from or
    not, for message/rfc822 vs x-mailbox drops.
    (em_utils_read_messages_from_stream): Same.

    * em-folder-tree.c (tree_drag_motion): default to move properly.

    * message-list.c (ml_selection_received_uidlist): take a move flag.
    (ml_tree_drag_data_received): handle move action.

    * em-folder-tree.c (em_folder_tree_new_with_model): got sick of
    this bloody warning.

    * em-format.c (default_headers[]): just remove x-mailer from the
    header list, if it isn't on by default.  This is the default list.
    (em_format_default_headers): loop through everything.

2004-05-14  Jeffrey Stedfast  <fejj@novell.com>

    * em-popup.h: s/RESEND/EDIT/

    * em-popup.c (em_popup_target_new_select): s/RESEND/EDIT/

    * em-folder-view.c: s/RESEND/EDIT/
    (emfv_popup_edit): Renamed from emfv_popup_resend. Part of the fix
    for bug #58358 (The main fix was just a change to the ui file).

    * mail-config.c (mail_config_init): Build the path to the gtkrc
    filename and store it on the config struct so we don't have to
    keep rebuilding it.
    (config_write_style): Reuse config->gtkrc string instead of
    constructing the path again.
    (mail_config_write_on_exit): Free the gtkrc path.
    (config_write_style): fflush the gtkrc file.

    * em-popup.c (emp_popup_resend): Updated the #if 0'd code for the
    API chanegs made to em_utils_edit_messages().

    * em-folder-view.c (em_folder_view_open_selected): Pass TRUE as
    the replace argument to em_utils_edit_messages() here.
    (emfv_popup_resend): Pass FALSE here. Fixes bug #58357.

    * em-composer-utils.c (em_utils_edit_messages): Now takes a
    'replace' argument specifying whether or not the original message
    should be deleted when the edited message is sent or saved.

    * em-format-html.c (efh_format_secure): Same. Also changed the
    "Valid signature, cannot verify sender" string to "Valid signature
    but cannot verify sender" as I think it reads nicer.

    * em-format-html-display.c (efhd_format_secure): Since signature
    status is a tri-state, use 3 different colours too (yellow for
    valid sig but unknown sender).

2004-05-13  Jeffrey Stedfast  <fejj@novell.com>

    * em-format.c (em_format_default_headers): Don't include the last
    default_header when setting the default headers. If the user has
    configured Evolution to display the Mailer header, then it will be
    set in em-folder-view.c as appropriate when it checks the gconf
    settings. Fixes bug #58217.

    * em-mailer-prefs.c (em_mailer_prefs_construct): Default
    "x-evolution-mailer" header to disabled.

    * em-format-quote.c (emfq_text_plain): Add a stripsig
    filter. Fixes bug #52767.

    * em-stripsig-filter.[c,h]: New filter class to strip
    signatures. Useful when generating forwards/replies.

2004-05-13  Not Zed  <NotZed@Ximian.com>

    * em-migrate.c (em_migrate_folder): move ignore case outside of
    block.  Stupid c language.

    * em-folder-view.c (emfv_format_popup_event): fix warning with
    cast.

    ** See bug #58304.

    * em-junk-filter.c (em_junk_sa_setting_notify): listen to sa
    settings changes, update some globals.
    (em_junk_filter_get_plugin): setup the gconf client here and
    listen to changes.
    (em_junk_sa_get_local_only, em_junk_sa_get_use_daemon) 
    (em_junk_sa_get_daemon_port): removed, use globals instead.

2004-05-13  Not Zed  <NotZed@Ximian.com>

    * em-folder-view.c (emfv_message_reply): re-enabled the reply to
    selection stuff.  I worked out how to make it work; I think.

    * em-format-html-display.c (efhd_html_button_press_event): if we
    aren't on a clickable object, do a null popup event instead.

    * em-folder-view.c (emfv_format_popup_event): do the full popup if
    we aren't on anything (not on a uri or part).  See #8414.

    * GNOME_Evolution_Mail.server.in.in: added "email" to the
    uri_schema's attribute.

    * mail-component.c (impl_handleURI): handle email: uri's, specify
    opening a message on a folder.
    (handleuri_got_folder): open the message.  For some 1337 s3Kr3t
    ha0x.

2004-05-12  Not Zed  <NotZed@Ximian.com>

    ** See bug #58302.

    * em-composer-utils.c (em_utils_post_to_folder): 
    * em-composer-utils.c (em_utils_compose_new_message_with_mailto):
    poke the composer headers from account directly, don't call set
    headers which overwrites stuff.

2004-05-12  Not Zed  <NotZed@Ximian.com>

    * mail-component.c (setup_search_context): enable threading option
    type on the search bar.

    * mail-errors.xml.h: add for translators.

    * Makefile.am (%.xml.h): fix for xml i18n stuff.

    * mail-errors.xml: moved from the .xml.in file.

2004-05-11  Not Zed  <NotZed@Ximian.com>

    * em-utils.c (em_uri_from_camel): pass an exception to
    provider_get, it relies on one.

    * em-migrate.c (em_migrate_1_4): fix some error messages, and fail
    with fatal errors properly.
    (em_migrate_local_folders_1_4): EEP!  Who cares if this fails!
    Well I do.  Setup exceptions and return codes.
    (em_migrate_dir): and here too.  Sloppy!
    (em_migrate_dir): change the code slightly, 1.4 would recurse all
    folders, even if the parent folder doesn't have a
    folder-metadata.xml.  Make sure we copy that mode.
    (get_local_store_uri): Make it copy the 1.4 behaviour properly.
    Any error -> use defaults.
    (em_migrate_dir): lots of changes.
    (mbox_build_filename): take the output string as an arg.
    (cp): add an argument to overwrite/append or require a unique
    empty file.
    (cp_r): add mode arg here too.
    (em_migrate_folder): split the folder copy stuff from em_migrate
    dir entirely.  blah.
    (em_upgrade_accounts_1_4): can't fail, remove return code, etc.
    (em_upgrade_xml_1_4): removed this rather redundant odd api.
    (upgrade_xml_uris): this can't fail, remove return codes etc.
    (em_upgrade_xml_1_0): another oddly redundant function.
    (em_migrate_pop_uid_caches_1_4): error messages, blah blah.
    (em_migrate_folder_expand_state_1_4): no fatal states here.
    (em_migrate_folder_view_settings_1_4): nor here.
    (emm_setup_initial): do i18n 'better', using
    gnome_i18n_get_language_list, rather than hacky code.

2004-05-10  Not Zed  <NotZed@Ximian.com>

    * mail-tools.c: remove e-meta.h, not used anymore.

2004-05-11  Dan Winship  <danw@ximian.com>

    * GNOME_Evolution_Mail.server.in.in: Remove the mail folder
    control factory

    * mail-component-factory.c (factory): Remove support for the mail
    folder control

    * mail-component.c: Remove the property bag stuff
    (mail_control_new): Gone

2004-05-10  David Malcolm  <dmalcolm@redhat.com>

    * em-subscribe-editor.c (sub_queue_fill_level): Fixed warning

2004-05-10  Jeffrey Stedfast  <fejj@novell.com>

    * em-mailer-prefs.c (em_mailer_prefs_construct): Default the
    Mailer header to enabled. Fixes bug #58217.

2004-05-10  JP Rosevear  <jpr@ximian.com>

    * mail-ops.c (mail_send_message): set header to just Evolution
    (mail_append_mail): ditto

    * em-message-browser.c (em_message_browser_window_new): set title
    to just Evolution

2004-05-10  Not Zed  <NotZed@Ximian.com>

    * em-folder-view.c (emfv_activate): cleanup the view menus if they
    were created.

    * em-folder-view.h: added list_active bit, means the view is
    showing the list and needs e.g. view menus.

    * em-folder-view.c (emfv_setup_view_instance): was
    create_view_instance.  Now also setup the menu's if we're showing the list.

    * em-folder-browser.c (emfb_create_view_menus): removed.  moved
    functionality into emfolderview.

2004-05-07  Jeffrey Stedfast  <fejj@ximian.com>

    Fix for bug #57152.

    * em-folder-tree.c (emft_get_folder_info__got): If we queried for
    a recursive folder-info listing, then pass fully_loaded as TRUE to
    set_folder_info().
    (emft_get_folder_info__got): If we find that a folder doesn't have
    children, set the expanded state to FALSE.

    * em-folder-tree-model.c (em_folder_tree_model_set_folder_info):
    Now takes a "fully_loaded" argument to hint to set_folder_info
    whether or not folder-info's without child nodes can possibly have
    children (eg. if fully_loaded is set and fi->child is NULL, then
    'load' will be FALSE no matter what fi->flags contains).

2004-05-07  Radek Doulik  <rodo@ximian.com>

    * mail-config.c (config_write_style): set cite_color property of
    gtkhtml widgets
    (mail_config_init): add /apps/evolution/mail/display dir to gconf
    client and watch for mark_citations and citation_colour changes

    See bug #57587

2004-05-07  Not Zed  <NotZed@Ximian.com>

    * mail-account-editor.c: include missing header.

    ** See bug #57935.

    * em-folder-view.c (emfv_set_message): add new arg, nomarkseen,
    don't mark the selected message seen once its loaded.
    (emfv_list_message_selected): clear the nomarkseen flag once we've
    processed the selection.
    (emfv_list_done_message_selected): handle the nomarkseen flag,
    don't mark a message seen if it was explictly selected.

    * em-folder-browser.c (emfb_list_built): use
    em_folder_view_select_message rather than doing it via the
    messagelist directly.

    ** Dunno why i bothered, but see bug #58090.

    * importers/netscape-importer.c
    (netscape_filter_parse_conditions): check for custom headers
    properly.
    (netscape_filter_flatfile_get_entry): put in some validate checks.
    (netscape_filter_to_evol_filter): implement custom headers properly.
    (ns_filter_condition_types): add missing "status" string.

    ** See #58017.

    * message-list.c (mail_regen_list): use thread_queued, so we don't
    regen out of order.

    * em-folder-view.c (emfv_list_message_selected): use the queue
    thread so we don't get messages out of order.

    * mail-ops.c (mail_transfer_messages): use thread_queued_slow.
    (mail_prep_offline): and here too.

2004-05-06  Jeffrey Stedfast  <fejj@ximian.com>

    * mail-component.c (folder_selected_cb): Check that the folder is
    selectable using the new flags argument.

    * em-folder-selector.c (folder_selected_cb): Updated for below
    changes.

    * em-folder-tree.c (emft_tree_selection_changed): Updated to pass
    a flags argument to the folder_selected signal.
    (emft_tree_row_activated): Same.

2004-05-06  Radek Doulik  <rodo@ximian.com>

    * em-composer-prefs.c (sig_selection_changed): reset the preview
    if no signature is selected

    Fixes #57167

2004-05-05  Jeffrey Stedfast  <fejj@ximian.com>

    * em-folder-tree.c (emft_tree_row_collapsed): Select the row that
    was just collapsed. Fixes bug #57665.

    * mail-autofilter.c (rule_match_thread): Removed.
    (rule_from_message): Removed the AUTO_THREAD bit.

    * em-folder-view.c: Removed vFolder/Filter on Thread. These were
    both broken.
    (struct _filter_data): Removed a bunch of data members since most
    of them weren't used.

2004-05-05  Not Zed  <NotZed@Ximian.com>

    ** See bug #57720.
    
    * em-folder-browser.c (emfb_create_view_menus): removed some stuff
    done in create_view_instance in the superclass.

    * em-folder-view.c (emfv_create_view_instance): moved here from
    em-folder-browser, setup the view instance for the folder.
    (emfv_set_folder): if the folder is set, create the view instance.

    * em-folder-browser.c: moved the galview instance and menu
    pointers to EMFolderView, since they're basically meta-data on the
    messagelist @ to fix issues.

    * em-folder-view.c (em_folder_view_open_selected): copy over the
    threaded list value when the message browser is brought up.

    ** some clean up

    * evolution-mail.schemas.in.in: removed xmailer_mask stuff.

    * em-migrate.c (mail_display_map[]): Removed xmailer_mask stuff.

    * em-folder-view.c (emfv_setting_notify): removed xmailer_mask stuff.

    * em-format-html.c (em_format_html_set_xmailer_mask): removed.
    This isn't used anymore.

    ** Fixes the double-draw on separate mail view.

    * message-list.c (on_cursor_activated_cmd): noop if the cursor and
    uid match for all cases (clearing uid).
    (on_selection_changed_cmd): noop if the cursor and new selection
    hasn't changed & fix a memleak.

2004-05-04  Jeffrey Stedfast  <fejj@ximian.com>

    Fix for bug #55303, but ideally there would be a nicer way of
    doing this - likely with some added ETree API but that's not
    likely to happen anytime soon.

    * em-folder-browser.c (scroll_idle_cb): Recall the saved scrollbar
    position state and set it, then reconnect to the
    message_list_scrolled signal.
    (emfb_list_built): Calculate a default scrollbar position for
    scroll_idle_cb to use if there's no saved state.
    (emfb_set_folder): Disconnect from the message_list_scrolled
    signal and the idle_scroll_id.
    (emfb_list_scrolled): Save the scrollbar position state.
    (emfb_destroy): Disconnect from list_scrolled_id and
    idle_scroll_id.

    Fix for bug #58004.

    * mail-account-gui.c (display_license): Fixed to compile.
    (select_account_signature): Activate the signature menu item.
    (signature_added): Connect to the activate signal for each item.
    (sig_changed): Removed.
    (prepare_signatures): Don't bother connecting to the
    "selection-done" signal, it doesn't seem to work the way we
    expected it to work.

2004-05-04  Sarfraaz Ahmed <asarfraaz@novell.com>

    * mail-account-gui.c (display_license): This now takes CamelProvider
    as argument. Made the display message more generic. Removed the signal
    connects for buttons and replaced those with proper gtk_reponses.
    (mail_account_gui_check_for_license): Modified the gconf key for
    licenses to be a string list.
    * evolution-mail.schemas.in.in: Added the gconf schema entry for a 
    string list to handle the component names whose licenses are accepted.
    * mail-license.glade: Modified the display string and added the
    appropriate gtk_response types for the buttons.
    
2004-05-03  Jeffrey Stedfast  <fejj@ximian.com>

    Fix for bug #57968

    * message-list.c (message_list_set_folder): Save the tree/hide
    state of the current folder before clearing the message-list.
    (message_list_set_folder): Note that a new folder has just been
    set (now needed by the regen code to tell whether or not it should
    save the tree state before clearing the tree).
    (message_list_destroy): Save the tree/hide state before destroying
    the message-info's, not after.
    (regen_list_regened): If the regen is being performed in response
    to a message_list_set_folder, don't save the tree state before
    clearing the tree or we'll clobber the real state with bogus data.

2004-05-03  William Jon McCann  <mccann@jhu.edu>

    * mail-account-gui.c: Add gtkdialog header to fix build.

2004-05-03  Not Zed  <NotZed@Ximian.com>

    * em-composer-utils.c (create_new_composer): take fromuri and
    subject to set the basic headers/account.
    (em_utils_compose_new_message)
    (em_utils_compose_new_message_with_mailto, forward_attached)
    (em_utils_forward_attached, forward_non_attached)
    (em_utils_forward_inline, em_utils_forward_quoted)
    (em_utils_forward_message, em_utils_forward_messages): Take the
    from folder uri to set the from account if it can.  Fixed all
    callers.  For #57964.

    * mail-send-recv.c (receive_update_done): removed.

    * em-mailer-prefs.h:
    * message-tag-followup.h:
    * mail-config-druid.h:
    * mail-tools.h: clean up & use forward decls.  Fix users with
    busted includes.

    * em-composer-utils.c (em_utils_compose_new_message)
    (em_utils_compose_new_message_with_mailto)
    (em_utils_post_to_folder, em_utils_post_to_url)
    (em_utils_edit_message, em_utils_edit_messages)
    (em_utils_forward_attached, em_utils_forward_inline)
    (em_utils_forward_quoted, em_utils_forward_message)
    (em_utils_forward_messages, em_utils_redirect_message)
    (em_utils_redirect_message_by_uid) :
    (em_utils_reply_to_message, em_utils_reply_to_message_by_uid)
    (em_utils_post_reply_to_message_by_uid): Moved these here from
    em-utils.c.

2004-04-30  Priit Laes  <amd@tt.ee>

    * mail-config.glade: fix typo. #53466.

    * evolution-mail.schemas.in.in: use American English instead of
    British. #53466.

2004-04-30  Jeffrey Stedfast  <fejj@ximian.com>

    Fix for bug #56645

    * em-folder-tree.c (tree_drag_motion): If the row the cursor is
    hovering over has children and is not expanded already, setup a
    timer to auto-expand it if the user hovers there long enough.
    (tree_autoexpand): Callback to expand the row.
    (tree_drag_leave): Disconnect the timer.
    (tree_drag_drop): Same.
    (em_folder_tree_destroy): Same.

2004-04-30  Enver ALTIN  <enver.altin@frontsite.com.tr>

    * evolution-mail.schemas.in.in: Fixed a type-o.

2004-04-30  Jeffrey Stedfast  <fejj@ximian.com>

    * message-list.c (message_list_set_folder): Properly initialise
    the strikeout column for both types of folders (trash and not
    trash). Completes the fix for bug #57304.

2004-04-30  Not Zed  <NotZed@Ximian.com>

    * em-utils.c (emu_can_save): fix the overwrite? question.  #57822.

2004-04-29  Not Zed  <NotZed@Ximian.com>

    * mail-errors.xml.in: change all the session-message-* things to
    just be secondary, otherwise they look awful all big fonted.

    * mail-session.c (error_type[]): forgot to prefix error type with
    "mail:"

    * em-account-prefs.c (account_delete_clicked): duh, use the right
    error id.

    * mail-send-recv.c (receive_update_got_store): call
    mail_note_store rather than get_folder_info so that unread counts
    are propagated to the ui too.

    * mail-errors.xml.in: fix the password dialogue text.

2004-04-28  Jeffrey Stedfast  <fejj@ximian.com>

    * em-folder-tree-model.c (sort_cb): Sort the VFolders. Fixes bug
    #56636.

    * em-mailer-prefs.c (citation_color_set): We only want 8bits per
    color. Fixes bug #57588.

    * em-folder-tree-model.c (em_folder_tree_model_remove_store):
    Duh. If the lookup of si fails, don't use si->display_name in the
    warning message. Actually, don't bother with a warning message at
    all, this is a perfectly valid situation. Fixes bug #57746.

    * mail-ops.c (mail_send_message): Don't set the Date header here
    anymore. It has either already been set (when written to the
    Outbox) or will automagially be set to the current time if a Date
    hasn't already been set when the transport sends it. Fixes bug
    #57599.

    * em-composer-prefs.c (sig_add_script_response): Use
    g_shell_parse_argv() to get the actual script path and then check
    that we can exec argv[0] rather than treating the entire
    command-line as the signature script. Fixes bug #57305.

2004-04-28  Not Zed  <NotZed@Ximian.com>

    * message-list.c (ml_selection_clear_event): return the right
    type, related to #53839.

    ** Changed error messages to use EError.

2004-04-27  Not Zed  <NotZed@Ximian.com>

    ** See bug #57659.

    * mail-ops.c (fix_unmatched_info): removed, done in camel now.

    ** See bug #57511.

    * mail-config.glade: gave the whole smime frame (vbox) a name so
    we can use it from code.

    * mail-account-gui.c (mail_account_gui_new): get the smime_vbox
    widget if we have no NSS, the name changed and the HIG patches
    didn't fix it.

2004-04-26  Radek Doulik  <rodo@ximian.com>

    * em-format-html.c (efh_format_timeout): set gtk_html_begin's
    flags to avoid scroll to top of the message and
    reloading+flickering of images

    * em-html-stream.c: added GtkHTMLBeginFlags flags field
    (em_html_stream_set_flags): new helper function to set new flags
    field
    (emhs_sync_write): use gtk_html_begin_full with new flags field
    (em_html_stream_new): zero flags field

    Fixes #51654

2004-04-23  Sarfraaz Ahmed <asarfraaz@novell.com>

    * mail/mail-license.glade: Glade file for displaying the license.

2004-04-23  Not Zed  <NotZed@Ximian.com>

    * em-format-html.c (em_format_html_load_http): fix the check to
    see if we've already loaded the images.  #57450.

2004-04-23  Sarfraaz Ahmed <asarfraaz@novell.com>

    * mail-account-gui.c (mail_account_gui_source_complete): Added a 
    check for HAS_LICENSE flag.
    (mail_account_gui_check_for_license)(display_license)
    (populate_text_entry)(check_button_state)(set_license_accepted)
    (set_license_rejected): Implemented

2004-04-22  Not Zed  <NotZed@Ximian.com>

    * em-migrate.c (em_migrate_imap_cmeta_1_4): do the imap cmeta
    files, it just does the sync offline stuff.  #56674.
    (em_migrate_1_4): non-fatalise some of the options, call above.

    * mail-component.c (view_changed_cb): display selected count
    instead of unread if we have >1 selected.  Also don't do special
    case drafts/sent/outbox stuff if folders are inbox or re-used.
    (view_control_activate_cb): force check of autosaved messages as
    soon as the mailer starts up (well, after a delay, this seems
    wrong).  #57093.

2004-04-21  Not Zed  <NotZed@Ximian.com>

    * em-inline-filter.c (emif_scan): use a better test for non-full
    lines.

    * em-folder-browser.c (emfb_activate): dont desensitise
    HideDeleted just 'cause we have no folder, it needs to depend on
    Trash folder only.
    (emfb_set_folder): set the hidedeleted sensitivity based on
    whether we have a trash folder or not.  Fixed #57226.

    * em-folder-view.c (emfv_class_init): use the right signal
    callback for the changed signal.  Fixes #57246.

    * mail-component.c (impl_createControls): fix for
    e_user_creatable_items api changes.
    (create_item): split out the code to create the item.
    (create_local_item_cb): new callback for local item creation.
    (impl_requestCreateItem): call create_item to do the work.

2004-04-19  Jeffrey Stedfast  <fejj@ximian.com>

    * em-folder-browser.c: Use E_ICON_SIZE_* enums for the menu icon
    sizes.

    * em-folder-view.c: Use E_ICON_SIZE_* enums for the menu/toolbar
    icon sizes.

    * message-tag-followup.c (construct): Same.

    * message-list.c (message_list_init_images): Same.

    * mail-send-recv.c (build_dialog): Same.

    * mail-mt.c (do_op_status): Same.

    * mail-config-druid.c (evolution_mail_config_wizard_new): Same.

    * em-popup.c (em_popup_create_menu): Same.

    * em-format-html-display.c (efhd_format_prefix): Same.

    * em-format-html.c (efh_format_secure): Same as below.

    * em-folder-tree.c (render_pixbuf): Don't use absolute icon sizes,
    use the e-icon-factory enums.

2004-04-19  Jeffrey Stedfast  <fejj@ximian.com>

    * em-composer-prefs.h: Removed variables that got re-added with
    the icon-theme patch somehow.

    * em-account-prefs.c: Don't bother keeping global references to
    the enable_pixbuf anymore, since it's unnecessary.

2004-04-19  Michael Terry  <mike@mterry.name>

    * GNOME_Evolution_Mail.server.in.in:
    * em-account-prefs.[ch]:
    * em-composer-prefs.[ch]:
    * em-folder-browser.c:
    * em-folder-tree.c:
    * em-folder-view.c:
    * em-format-html-display.c:
    * em-format-html.[ch]:
    * em-popup.c:
    * mail-component.c
    * mail-config-druid.c:
    * mail-config.glade:
    * mail-mt.c:
    * mail-send-recv.c:
    * message-list.c:
    * message-tag-followup.c:
    * message-tags.glade: Update the mailer to use icon themes through the
    EIconFactory object in e-util

2004-04-16  David Malcolm  <dmalcolm@redhat.com>

    * importers/netscape-importer.c (netscape_import_accounts):
    Removed unused and uninitialised "url" local that gets g_free-ed

2004-04-15  Jeffrey Stedfast  <fejj@ximian.com>

    * mail-config.c (config_write_style): Change the message display
    widget names to match the ones we are using in 1.5 (rather than
    the ones from earlier versions). Fixes bug #57070.

2004-04-14  Jeffrey Stedfast  <fejj@ximian.com>

    * message-list.c: Added a new "message_list_scrolled" signal so
    our users can listen to this event in order to update saved state.
    (message_list_get_scrollbar_position): Simplified.
    (message_list_set_scrollbar_position): Simplified.

    * em-format.c: Don't complain about message errors ("Internal
    Error: ..."), instead silently fall back to display the message as
    source. Fixes bug #56876.

2004-04-14  Not Zed  <NotZed@Ximian.com>

    * em-folder-view.c (emfv_set_folder_uri): ugh, use the queued
    thread to get the folder, otherwise we can get folders set on the
    display out of order.

    * message-list.c (message_list_set_search): if we set this while
    frozen, save the search elsewhere.
    (message_list_thaw): if we had a frozen-time search, use it when
    we regenerate.

    * em-folder-browser.c (emfb_set_folder): freeze/thaw the
    messagelist around changes so we don't have multiple updates fire
    off changing folders.
    (emfb_activate): remove an unused variable i never used.

    * message-list.c (message_list_freeze, message_list_thaw): lock
    some updates to the ui, so you can do things like set folder and
    search atomically.
    (message_list_set_threaded, message_list_set_hidedeleted)
    (message_list_set_search, message_list_hide_uids)
    (message_list_hide_clear, message_list_set_folder): dont refresh
    the list if we're frozen.

    * mail-component.c (impl_createControls): remove debug comment.

    ** See #56641.

    * em-format-html-display.c (efhd_format_secure): fix a small
    memleak.
    (efhd_bonobo_unknown, efhd_format_attachment): close the <object>
    tag properly, and <br> it as well to make sure its separated.

    * em-sync-stream.c: add some runtime and compile time stream
    logging stuff.

    ** See bug #56149.

    * em-folder-view.c (emfv_edit_cut): similar to below, use focus to
    determine who we select from.
    (emfv_edit_copy): ditto.

    * message-list.c: Remove primary selection stuff.  It just annoys.

    * em-folder-browser.c (emfb_edit_copy): use focus rather than
    selection owner to determine who to copy from.
    (emfb_edit_cut): similarly.

    * em-format.c (emf_multipart_related): hmm, use the right pointer
    when iterating the pending uri list.

2004-04-13  Jeffrey Stedfast  <fejj@ximian.com>

    * mail-component.c (impl_createControls): We don't actually want
    to disallow clicking on \NoSelect folders. Fixes a bug campd has
    been complaining to me about :-)

    * mail-config.c (mail_config_signature_run_script): If we get an
    empty charset string from gconf, don't try to use the result to
    create a charset filter. Real fix for bug #51924.

    * mail-config.glade: Removed crackrock usage of GtkFixed as
    fillter. Also HIGified some other stuff.

2004-04-13  Not Zed  <NotZed@Ximian.com>

    * em-folder-view.c (emfv_set_folder): track the messagelist
    hidedeleted value since it looks it up when we set the folder.

    * em-folder-browser.c (emfb_hide_deleted): use new method below to
    propagate change.
    (emfb_activate): same.

    * em-folder-view.c (em_folder_view_set_hide_deleted): accessor to
    set the hide_deleted state, emits a view_changed event.

    * mail-component.c (view_changed_cb): use VISIBLE rather than
    TOTAL for the displayed total count.  Also deleted if we're not in
    hide deleted mode.  And do spethal things with spethal folders,
    etc.

    * mail-ops.c (mail_refresh_folder): run this in the
    thread_queued_slow, so it runs in sequence and after folder_sync.

    * em-folder-view.c (emfv_set_folder): fire off a refresh_folder
    once the folder is loaded.  Addresses #56871.

    * em-format-html.c (efh_format_headers): use %% for %%.
    (efh_format_done): reset load_http_now once we've done, should
    fix #56338 finally.

    * em-folder-view.c (emfv_init, emfv_finalise, emfv_activate):
    revert dans' creatable items handler patch, moved to
    mail-component instead (which deals with the actual menu's).

    * mail-component.c (impl_createControls): setup a user creatable
    items handler on the view widget.
    (view_control_activate_cb): activate the user creatable items
    handler on the view widget.

    * em-folder-view.c (emfv_init): add a comment about jeff's last
    fix.

    * em-utils.c (forward_non_attached): Set attachments from
    forwardee before we set the body, otherwise images wont resolve
    properly.  Related to #56566.

2004-04-12  Jeffrey Stedfast  <fejj@ximian.com>

    * em-folder-view.c (emfv_init): Need to set the session on the
    preview object. Fixes bug #56862.

    * em-folder-tree.c (em_folder_tree_set_selected): Scroll to the
    auto-selected folder. Fixes bug #56707.

    * message-list.c (message_list_get_scrollbar_position): New
    function.
    (message_list_set_scrollbar_position): New function.

    * em-utils.c (em_uri_to_camel): If the provider is unavailable,
    return euri like the other fail cases. Fixes bug #56846.

2004-04-10  Francisco Javier F. Serrador  <serrador@cvs.gnome.org>

    * evolution-mail.schemas.in.in.h: Correct typo s/hight/height/ at
    "Subscribe dialog default hight"

2004-04-09  Jeffrey Stedfast  <fejj@ximian.com>

    * mail-config.c (mail_config_init): Don't bother adding the
    autogen sig here, e-signature-list.c handles this now.

    * em-migrate.c (em_upgrade_accounts_1_4): Migrate the signature
    uids. Fixes bug #56726.

2004-04-09  Chris Toshok  <toshok@ximian.com>

    * importers/pine-importer.c (import_contact): use
    e_destination_export_to_vcard_attribute instead of exporting to
    xml, and use e_contact_set_attributes.

    * em-utils.c (em_utils_camel_address_to_destination):
    EABDestination -> EDestination.
    (reply_get_composer): same
    (post_reply_to_message): same.

    * em-composer-utils.c (ask_confirm_for_unwanted_html_mail):
    EABDestination -> EDestination.
    (composer_get_message): same.

2004-04-09  Radek Doulik  <rodo@ximian.com>

    * em-format-html.c (efh_format_headers): add width=16 height=16 to
    rupert's image so that it doesn't flicker/move

2004-04-09  Jeffrey Stedfast  <fejj@ximian.com>

    * em-folder-selection.c (em_select_folder): Set the excluded bits
    on the folder-tree. Don't allow the user to xfer messages into
    folders which are: NoSelect, Virtual, nor vTrash. Fixes bug
    #56229.

2004-04-09  Dan Winship  <danw@ximian.com>

    * em-folder-view.c (emfv_init): Create an
    EUserCreatableItemsHandler for the view.
    (emfv_finalise): Unref it.
    (emfv_activate): Activate it

    * mail-component.c (impl__get_userCreatableItems): add
    object/folder flags to the items

2004-04-08  Jeffrey Stedfast  <fejj@ximian.com>

    * em-migrate.c (cp_r): Now takes a pattern argument to limit files
    that get copied over (so we can limit imap cache to only the
    summary files - makes it faster).

    * mail-account-gui.c (mail_account_gui_build_extra_conf): Fixed up
    a bit to look nicer and make it closer to HIG compliant.

    * em-folder-tree.c (emft_drop_folder): We need to recursively copy
    the dragged folder tree over to the drop location, not just the
    parent folder. We also need to subscribe to the newly created
    folder in some cases.

2004-04-08  Not Zed  <NotZed@Ximian.com>

    * em-format-html.c (efh_format_headers): add the monkey button if
    we're from evolution.  See #52977.
    (emfh_gethttp): cast away a warning.

    * mail-folder-cache.c:
    (update_1folder): VJUNK_FOLDER's dont exist, they're VTRASH
    folders now.

    * em-folder-view.c: remove message_changed stuff from camel folder
    stuff.

    * mail-component.c (mail_component_init): don't setup the search
    context here, wait till its requested.  Fixes #56672.

2004-04-07  Not Zed  <NotZed@Ximian.com>

    * mail-component.c (view_changed_cb): hook to update the info
    label when the folderview changes.

    * em-folder-view.c (emfv_class_init): added 2 signals 'loaded' and
    'changed'.  For when a folder is set/cleared or when some state
    changes.
    (emfv_set_folder): emit LOADED signal when we set the folder.
    (emfv_list_message_selected): emit changed event.
    (emfv_gui_folder_changed): emit changed event.

2004-04-07  Jeffrey Stedfast  <fejj@ximian.com>

    * em-folder-tree.c (emft_tree_button_press): Check that
    emft_selection_get_selected() returns TRUE before we try to use
    the iter. Fixes bug #56652.
    (emft_popup_delete_response): Same idea here.
    (emft_popup_delete_folder): Same.
    (emft_popup_rename_folder): Same.
    (emft_popup_properties): Same.

    Fix for bug #56538

    * em-folder-view.c (emfv_set_folder_uri): Don't set the preview
    empty here.
    (emfv_set_folder): If the folder is the same as the folder already
    on the emfv, just return. Otherwise clear the preview and continue
    setting the folder as normal.

2004-04-07  Jeffrey Stedfast  <fejj@ximian.com>

    * em-account-prefs.c (em_account_prefs_apply): Removed.

    * em-mailer-prefs.c (em_mailer_prefs_apply): Removed.

    * em-composer-prefs.c (em_composer_prefs_apply): Removed.

    * mail-config-factory.c (mail_config_control_factory_cb): No
    longer need the Apply stuff.

    * em-mailer-prefs.c (em_mailer_prefs_construct): Don't call a
    function that doesn't exist anymore.

2004-04-06  Jeffrey Stedfast  <fejj@ximian.com>

    * em-mailer-prefs.c (em_mailer_prefs_construct): Changed to save
    the settings in the signal callbacks.
    (em_mailer_prefs_apply): Don't save the settings here.

    * em-composer-prefs.c (em_composer_prefs_apply): Don't save the
    settings here.
    (em_composer_prefs_construct): Changed to save the settings in the
    signal callbacks.

2004-04-06  Not Zed  <NotZed@Ximian.com>

    * em-folder-tree.c (emft_tree_row_expanded): ref the emfoldertree
    in our thread message.
    (em_folder_tree_set_selected): same.
    (emft_get_folder_info__free): unref it.

    * mail-folder-cache.c (ping_store): use thread_queued_slow not
    thread_queued - we dont care when it runs.

    * em-folder-view.c (emfv_set_folder_uri): use thread_new for
    getting the folder, we do elsewhere, and it aids interactivity.

2004-04-05  Jeffrey Stedfast  <fejj@ximian.com>

    * em-migrate.c (em_migrate_dir): Migrate the thread_list
    setting. Fixes bug #56297.

2004-04-05  Not Zed  <NotZed@Ximian.com>

    * em-format-html-display.c (efhd_xpkcs7mime_button): if we have no
    sign status, use signed-nokey, rather than no icon.
    (efhd_xpkcs7mime_viewcert_clicked): show the certificate viewer
    since certificate_viewer_show doesn't show it.
    (efhd_xpkcs7mime_viewcert_foad): foad foad foad.  The api changed
    and we need to foad it ourselves.

    ** See bug #52822.

    * em-format-html-display.c (efhd_xpkcs7mime_add_cert_table): if we
    can't find the cert, then desensitise the cert button.

    ** See bug # 56402.

    * mail-folder-cache.c (update_folders): if we're cancelled, noop.
    (mail_note_store_remove): mark the update data cancelled.

    * mail-ops.c (add_special_info): removed, this is done in camel
    now.
    (fix_unmatched_info): renamed from add_unmatched_info.
    (get_folderinfo_got): Removed the meaningless comment here.

2004-04-02  Jeffrey Stedfast  <fejj@ximian.com>

    * em-migrate.c (cp_r): Revert my "fix" from yesterday. We can't
    necessarily show progress (progress window may have been destroyed
    already).

    Fixes bug #53851

    * em-folder-view.c (emfv_popup_move_cb): Save the uri as the
    default for copy/move.
    (emfv_popup_move): Use the default copy/move uri.
    (emfv_popup_copy): Same.

    * em-folder-selection.c (em_select_folder): Select the uri *after*
    the dialog gets shown.

2004-04-02  Jeffrey Stedfast  <fejj@ximian.com>

    Fixes bug #37416

    * mail-folder-cache.c (update_1folder): Same as below. Also add
    vJunk fodlers to the list of folders that we display the total
    count for (as discussed on the mailing lists).

    * em-folder-tree-model.c (em_folder_tree_model_set_folder_info):
    Use 'total - deleted' as the count for Outbox rather than just the
    total count.

2004-04-02  Not Zed  <NotZed@Ximian.com>

    * em-inline-filter.c: do a per-line validation of the uuencoded
    stuff, based on the length byte.

    ** See bug #56338.

    * em-format-html.c (emfh_gethttp): fix the fugly "load http if"
    that doesn't work to be a fugly "load http if" that does work.
    (efh_format_timeout): dont set load_http_now here, its only an
    override now.

2004-04-01  Jeffrey Stedfast  <fejj@ximian.com>

    * em-migrate.c (cp_r): Report progress. "Fixes" bug #56355.

    * mail-account-gui.c (signature_changed): Set the updated
    sig->name on the menu item.

    * importers/netscape-importer.c (netscape_import_accounts):
    Updated for signature API changes.

    * mail-account-gui.c: Same.

    * mail-signature-editor.c: Same.

    * em-composer-prefs.c: Same.

    * mail-config.c: Rewrote the signature stuff to use ESignatureList
    instead. Much cleaner and less broken.

    * em-mailer-prefs.c (em_mailer_prefs_construct): Always make the
    Add/Remove Header buttons de-sensitised at the start. Fixes bug
    #56284.

2004-04-01  Eric Zhao  <eric.zhao@sun.com>

    * mail-account-gui.c (transport_type_changed): Commented grabbing
    focus on hostname edit, fix the focus issue of Account Assistant.

2004-03-31  Jeffrey Stedfast  <fejj@ximian.com>

    * em-format-html.c (efh_text_plain): Only do citation colouring if
    the user has specified to do so and use the user's specified
    colour when appropriate. Fixes bug #56290.

    * em-subscribe-editor.c (em_subscribe_editor_new): Save/restore
    the subscribe dialog's window size. Fixes bug #56230.

2004-03-31  Not Zed  <NotZed@Ximian.com>

    * mail.h: REMOVED!  And there was much rejoicing.

    * *.[ch]: Cleaned up header inclusions and added plenty of forward
    declarations.  Sped up complete re-compilation by upto 20%.
    
    ** See bug #55950.

    * em-utils.c (em_utils_in_addressbook): utility for checking if an
    email address is in the addressbook.  I can't tell if it works
    'cause it crashes eds.

    * em-format-html.c (emfh_gethttp): handle addressbook checking.

2004-03-30  Not Zed  <NotZed@Ximian.com>

    * mail-config.h: clean up the headers and use some forward decl's
    instead.

    * em-format-html.c (em_format_html_set_load_http): change state to
    an int 'style' instead.

    * em-folder-view.c (emfv_setting_notify): set the format load http
    option to the config value directly.

    ** See bug #56147.

    * message-list.c (clear_info): set the node data to NULL when we
    unref its data.
    (ml_get_save_id): use a different test for the root node, and
    return NULL if we don't have any data on the node (because we're
    cleaing it).

    ** See bug #54962.

    * em-folder-tree.c (emft_popup_new_folder_response): put back the
    old hack to open the vfolder editor if you try to create a folder
    under vfolders.

    ** See bug #55940.

    * mail-autofilter.c (mail_filter_rename_uri): map the uri to an
    email uri before passing to filter code.
    (mail_filter_delete_uri): same here.

2004-03-30  Radek Doulik  <rodo@ximian.com>

    * mail-config.glade: add spellLiveToggled signal

    * em-composer-prefs.c (em_composer_prefs_construct): fix typo,
    call toggle_button_init on prefs->spell_check instead of againg on
    prefs->auto_smileys
    (spell_setup): connect spellLiveToggled signal

    Fixes #55964

2004-03-29  Jeffrey Stedfast  <fejj@ximian.com>

    * em-folder-tree.c (emft_create_folder__free): Free the
    folder-info.

    * em-folder-browser.c (emfb_activate): Instead of comparing
    sstate[0] to '1', compare it against '0' like all the other code
    does.

2004-03-25  Sivaiah Nallagatla <snallagatla@novell.com>

    * Makefile.am : remove local-config.glade from glade_DATA as it 
    is removed from CVS 

2004-03-25  Rodney Dawes  <dobey@ximian.com>

    * em-composer-prefs.c (sig_edit_cb):
    (sig_add_script_cb): Use gtk_window_present instead of doing a show
    then raise, as this also puts the window on the current workspace
    (em_composer_prefs_construct): Fix the border widths for the dialog
    vbox and action area to be HIG-compliant, and realize the window
    Remove the dialog separator
    Use a box_pack_start, rather than box_pack_start_defaults which causes
    some weird behaviour when changing the border widths
    * em-subscribe-editor.c (em_subscribe_editor_new): Realize the dialog
    and set the border widths for its vbox and action area to be compliant
    with the HIG
    * local-config.glade: Removed this file as it is no longer used
    * mail-account-editor.c (construct): Realize the dialog, remove its
    separator, and set the border widths for its vbox and action area to
    be HIG-compliant
    * mail-account-editor.c (source_type_changed):
    (transport_type_changed): Fix the showing and hiding of the widgets
    related to the SSL options
    (mail_account_gui_new): Get the transport/source frames for the SSL
    options, and hide them by default
    Show the default folder buttons by default here
    (mail_account_gui_setup): Only call _show not _show_all here, so we
    don't mess up the shown/hidden state of things
    * mail-account-gui.h: Add ssl_frame widget to the MailAccountGuiService
    * mail-config.glade:
    * mail-search.glade:
    * mail-security.glade: HIG-compliance fixes for the glade dialogs
    * message-tag-followup.c (construct): Don't set border_width on the
    dialog itself
    Remove the separator from the dialog
    Set the border_widths for the dialog's vbox and action areas to be
    compliant with the HIG
    * message-tags.glade:
    * subscribe-dialog.glade: HIG-compliance fixes for these dialogs

    Original patch from Martyn Russell
    
2004-03-24  Danilo Å egan  <dsegan@gmx.net>

    * mail-ops.c (get_messages_desc): Use ngettext for handling plural
    forms (fixes bug #53464).

2004-03-23  Jeffrey Stedfast  <fejj@ximian.com>

    * em-format-html.c (emfh_gethttp): Use sizeof() to decide how big
    buffer is so that in the future, if we change the length of
    bufefr, things will Just Work (tm).

    * em-mailer-prefs.c (em_mailer_prefs_construct): Fixed the key to
    fetch the value from the correct location. It's
    junk/check_incoming, not junk/sa/check_incoming. Fixes bug #55903.

    * em-folder-tree-model.c (em_folder_tree_model_set_expanded):
    Fixed some logic bugs.

2004-03-23  Radek Doulik  <rodo@ximian.com>

    * em-format-html-display.c (efhd_format_attachment): use
    EM_FORMAT_HTML_VPAD

    * em-format-html.h (EM_FORMAT_HTML_VPAD): added new define for
    vertical padding

    * em-format-html.c (efh_format_message): change padding table so
    that it works OK with fixed gtkhtml

2004-03-23  Not Zed  <NotZed@Ximian.com>

    * em-format-html-display.c (efhd_attachment_popup): dont add the
    show/hide menu items if we can't ever show it inline.
    (efhd_attachment_button): disable the ">" button if we can't view
    the content inline.  See #52086.

    * em-format-quote.c (emfq_format_attachment): format inline(d)
    parts automatically into the reply.  Part of #55702.

    * em-utils.c (em_uri_from_camel): if we get an email uri passed in,
    just pass it out again, without first going to camel to do it.

2004-03-22  Not Zed  <NotZed@Ximian.com>

    * em-format.c: 
    * em-mailer-prefs.c: Add Newsgroups to the default header list.

    * em-format-html.c (efh_format_header): handle the newsgroups
    header, output news: url's.  For bug #??? i can't recall, i closed
    it already!

2004-03-19  Jeffrey Stedfast  <fejj@ximian.com>

    Fixes bug #54800.

    * em-folder-tree.c (tree_drag_drop): Remove the autoscroll
    timeout.
    (tree_drag_leave): Remove the autoscroll timeout.
    (tree_autoscroll): New autoscroll timeout callback - automagically
    scrolls the treeview if appropriate.
    (tree_drag_motion): Setup the autoscroll timeout.

2004-03-19  Not Zed  <NotZed@Ximian.com>

    * mail-component.c (mail_component_remove_store): ref the store
    before running the async disconnect, otherwise we unref one too
    many times.

2004-03-18  Jeffrey Stedfast  <fejj@ximian.com>

    * mail-account-gui.c (mail_account_gui_setup): Don't set the
    account source/transport types to disabled simply because the
    provider is NULL (think of the "None" option).
    (source_type_changed): Need to update widget sensitivity based on
    locked'ness here.
    (transport_type_changed): Same.

    * em-utils.c (em_utils_add_address): rfc2047 decode the address
    here before passing it off to the addressbook (which expects it to
    be in human-readable form, not encoded). Fixes bug #55591.

2004-03-18  Not Zed  <NotZed@Ximian.com>

    * mail-account-gui.c (mail_account_gui_new): save the source and
    transport vbox's to enable/disable the whole lot easier.
    (mail_account_gui_setup): enable above based on perms.
    (mail_account_gui_build_extra_conf): also disable extra page, as
    above.

    * em-account-prefs.c (account_cursor_change): disable the whole
    account editor if accounts are ro.

2004-03-17  Not Zed  <NotZed@Ximian.com>

    * em-format-html.c (efh_message_deliverystatus): format as plain
    text too.

    * em-format.c (emf_message_deliverystatus): format delivery
    status messages as plain text, rather than as messages.  since
    they wont be CamelMimeMessages.  Maybe they should be silently
    hidden.

    * mail-offline-handler.c (store_go_online): split this, only call
    add_store/note_store once we've actually set the store online.
    (store_went_online): set the store up once we're fully online.
    Works around a deadlock in #55618.

    * em-account-prefs.c (account_cursor_change): disable
    editing/adding/removing accounts etc if accounts aren't editable.
    (em_account_prefs_construct): call above after setup.

    * mail-component.c (mc_quit_sync): if we have empty on exit days,
    check that.  keep track of the last empty on exit time.

    * em-mailer-prefs.c (emmp_empty_trash_init): init the trash stuff
    here.
    (em_mailer_prefs_apply): save empty trash on exit frequency.

2004-03-16  Not Zed  <NotZed@Ximian.com>

    * mail-account-gui.c (mail_account_gui_auto_detect_extra_conf):
    check extra conf items are writable.
    (mail_account_gui_build_extra_conf): same.
    (setup_service): add gui arg, and do above for auth and ssl args.

2004-03-16  Jeffrey Stedfast  <fejj@ximian.com>

    Fix for bug #55358.

    * em-folder-tree.c (emft_expand_node): Changed to be the callback
    function for em_folder_tree_model_expand_foreach().
    (emft_maybe_expand_row): Renamed from emft_loading_row_cb(). We
    now handle both "loading-row" an "loaded-row" signals. Also
    updated for slight change in key generation.
    (em_folder_tree_new_with_model): Connect to the "loaded-row"
    signal.
    (emft_update_model_expanded_state): Updated for slight change in
    key generation.

    * em-folder-tree-model.c (em_folder_tree_model_add_store): Emit
    the "loaded-row" signal for the newly added store.
    (em_folder_tree_model_set_folder_info): Emit "loaded-row" for the
    row we've just set the info on (but only after we've added a child
    node if there is one, so the signal handler can expand the newly
    added row if appropriate).
    (em_folder_tree_model_class_init): Setup the "loaded-row" signal.
    (em_folder_tree_model_finalize): The tree-state is now an xml file
    and not a binary file, so change the expanded free func.
    (em_folder_tree_model_load_state): Load the expand-state xml
    file. If one doesn't exist, setup some defaults.
    (em_folder_tree_model_get_expanded): Scan the XML tree for the
    node.
    (em_folder_tree_model_set_expanded): Same.
    (em_folder_tree_model_save_expanded): Save the expand-state xml
    tree to disk.
    (em_folder_tree_model_expand_foreach): New function to iterate
    over all xml nodes and call the callback if the expand state is
    "true".

2004-03-16  Jeffrey Stedfast  <fejj@ximian.com>

    * mail-component.c (impl_requestCreateItem): Don't focus the
    name_entry widget here.

    * em-folder-selector.c (em_folder_selector_create_new): Focus the
    name_entry widget here rather than in mail-component.c

    * em-folder-tree.c (emft_drop_async_desc): New function to return
    a description of the async drop operation. Fixes bug #54808.

2004-03-15  Jeffrey Stedfast  <fejj@ximian.com>

    * em-utils.c (reply_to_message): If the mail_get_message() async
    op fails, it will still call us with a NULL message to check for
    that. Fixes bug #55612.
    (post_reply_to_message): Same.

    * em-folder-tree.c (emft_copy_folders__copy): Use
    camel_store_rename_folder() when appropriate (m->tostore ==
    m->fromstore && m->delete)

2004-03-15  Not Zed  <NotZed@Ximian.com>

    * em-format.c (em_format_format_error): make this a varags
    function, which then calls the virtual method to do the work.
    (emf_multipart_appledouble, emf_multipart_mixed)
    (emf_multipart_alternative, emf_multipart_related)
    (emf_message_rfc822): print an error to explain why you're getting
    source content displayed.
    (em_format_format_secure): make this a function.  and if we're
    done formatting a secure part, and we dont have a parent anymore,
    null out the validity.  See #55541.

2004-03-12  Jeffrey Stedfast  <fejj@ximian.com>

    * em-folder-browser.c (emfb_search_search_activated): No-op if
    emfv->folder is NULL (this means we are looking at a store folder?
    or else the folder hasn't loaded yet). Fixes bug #55293.

2004-03-11  Radek Doulik  <rodo@ximian.com>

    * mail-ops.c: remove junk learning thread, it's handled in
    camel-folder.c:folder_changed now

    * em-folder-view.c (emfv_popup_mark_junk): use
    em_folder_view_mark_selected, set junk, junk-learn and seen flags
    (emfv_popup_mark_nojunk): similar, reset junk, set junk-learn flags

2004-03-12  Jeffrey Stedfast  <fejj@ximian.com>

    * mail-ops.c (mail_send_mail): Removed. No longer in use (hasn't
    been since before 1.2).
    (send_queue_send): Before enetring the main send loop, create a
    temporary uid array containing ONLY the messages we will send
    (ie. not any that have been marked deleted) so that we can more
    accurately report the number of messages total that we are
    sending. Also continue sending even if we encounter an exeption in
    mail_send_message() (unless, of course, it is a
    user-cancel). Merge any exceptions we get into the master
    exception variable and ALWAYS sync/expunge the queue folder.

2004-03-11  Jeffrey Stedfast  <fejj@ximian.com>

    * em-folder-browser.c (emfb_set_folder): Reverted signal blocking
    stuff. Doesn't work and is unneeded with the proper fix.

    * em-format-html.c (efh_format_header): Fixed a bug where txt
    wasn't being properly initialised in all cases for Date
    headers. Also fixed the x-evolution-mailer code to simply use the
    ehader->value that was passed in.
    (efh_format_headers): Fixed to handle the special
    X-Evolution-Mailer header.

2004-03-11  Not Zed  <NotZed@Ximian.com>

    * em-folder-browser.c (emfb_set_folder): a really gross hack,
    disable all search handlers before setting the search and set hte
    search manually rather than going through the callbacks.  Partial
    fix for #55267, and ugly as it is.
    (emfb_init): save the search signal id's.
    (emfb_set_folder): ugh, properly set the defaults if the settings
    haven't been stored on the folder, and properly move them upstream
    to the bonobo menus.

    * em-folder-tree-model.c (sort_cb): when we sort, handle not
    having the node in the tree.  otherwise we always compare against
    "" which puts it at the head of the branch, rather than the tail.
    See #55428.

    * em-folder-tree.c (tree_drag_motion): make dnd look funny for
    joe.  #55246.

    * mail-component.c: change stores hash to point to a structure, in
    which we maintain the vtrash and vjunk folders for the entirety of
    the session.  memory use be damned i guess.  #55417 and partially
    #55391. 

2004-03-11  Not Zed  <NotZed@Ximian.com>

    * em-format-html.c (efh_format_header): pass the raw header in
    instead of name and value.
    (efh_format_headers): if we have specific headers to show, iterate
    over all headers and print out all matching ones, so duplicate
    headers are properly displayed.  Related to #55298.

    * em-folder-selector.c (em_folder_selector_construct): dont set
    this to be modal.  otherwise you can't click on error popups. duh.

2004-03-08  Not Zed  <NotZed@Ximian.com>

    * em-folder-selection-button.c
    (em_folder_selection_button_clicked): don't let the user select
    virtual/vtrash folders or non-selectable folders.

    * mail-component.c (impl_createControls): disable selection of
    non-select rows.

    * em-folder-selector.c (em_folder_selector_create_new): exclude
    folders with noinferiors set.

    * em-folder-tree.c (folder_tree_new): add folder tree arg, hook
    onto the selection funciton for the tree selection.
    (emft_select_func): selection override function.  allow certain
    things to be excluded.
    (em_folder_tree_set_excluded): api to set what is excluded from
    the selectability.
    (emft_tree_row_activated): call emft_select_func check to see if
    this row is excluded before emitting an activated signal.

    * em-folder-tree-model.c (em_folder_tree_model_set_folder_info):
    save folder info->flags in the tree store.

    * mail-folder-cache.c (create_folders): use tail recursion.
    (get_folders): tail recurse.

    * (*): Fixed for api changes in camel.

2004-03-10  Jeffrey Stedfast  <fejj@ximian.com>

    Fix for bug #55298.

    * em-format-html.c (efh_format_header): Now takes a default txt
    argument (header value). For address/date headers, if this isn't
    set, default back to the old behaviour of looking it up.
    (efh_format_headers): If we are iterating thru the camel raw
    headers, always pas the header value as the txt argument,
    otherwise always pass NULL.

2004-03-10  Jeffrey Stedfast  <fejj@ximian.com>

    * em-format-html-display.c (efhd_xpkcs7mime_validity_clicked):
    Removed an unused variable left over from an old attempted fix.

    * em-folder-selector.c (emfs_response): Select the same folder in
    the create-folder dialog as is selected in the parent selector
    dialog. Fixes the rest of bug #53862.

    Partial fix for bug #53862.

    * em-folder-selector.c (emfs_response): Connect to the newly added
    "folder-added" signal and save a created_uri string so that we can
    be sure to only listen for the creation of the folder the user
    created in *our* create-folder dilog (and not from some other
    place).

    * em-folder-tree-model.c (folder_subscribed): Emit a new
    "folder-added" signal.

    * mail-session.c (request_password): Focus the entry widget. Fixes
    bug #55330.

2004-03-10  Radek Doulik  <rodo@ximian.com>

    * em-junk-filter.c (pipe_to_sa_with_error): call
    camel_stream_close and close the fds[1]
    (pipe_to_sa_with_error): do not call close, camel_stream_close
    should be enough to be sure the fd was closed

2004-03-08  Jeffrey Stedfast  <fejj@ximian.com>

    * em-folder-tree.c (emft_create_folder): New async function to
    create a folder.
    (em_folder_tree_create_folder): Partly moved into
    emft_create_folder. Might be able to remove this code, but lewing
    might be using it in Connector or something? Need to ask him...
    (emft_popup_new_folder_response): Use emft_create_folder()
    instead.

2004-03-08  Radek Doulik  <rodo@ximian.com>

    * mail-ops.c (mail_filter_junk): new method, filter folder with
    FILTER_SOURCE_JUNKTEST type filter

    * em-folder-view.c: added Filter Junk command and junk icons to
    menus, added apply filters icon to popup menu
    (emfv_popup_filter_junk): new helper method, calls
    mail_filter_junk

2004-03-05  Jeffrey Stedfast  <fejj@ximian.com>

    * em-format-html-display.c (em_format_html_display_search): Don't
    set our parent window as the efhd, ehfd isn't even a widget.

    Fixes bug #54030

    * em-format-html-display.c (efhd_search_response): Reset the
    searching tokeniser on Cancel.

    * e-searching-tokenizer.c (e_searching_tokenizer_reset): New
    function to reset a search tokeniser.

2004-03-05  Not Zed  <NotZed@Ximian.com>

    ** See bug #55096.

    * importers/evolution-mbox-importer.c (process_item_fn): hack,
    unref when complete

    * importers/evolution-outlook-importer.c (outlook_importer_new):
    init status lock.
    (process_item_fn): hack, unref ourselves when we're complete.  i
    think the shell leaks the ref.

2004-03-04  Jeffrey Stedfast  <fejj@ximian.com>

    * em-folder-view.c (emfv_popup): If event == NULL, don't try to
    use event->key.time

    * em-migrate.c (upgrade_vfolder_sources_1_4): New function to
    upgrade vfolder sources.
    (em_upgrade_xml_1_4): If the doc is vfolders.xml, upgrade the
    sources nodes.

2004-03-03  Not Zed  <NotZed@Ximian.com>

    ** See bug #53738.

    * mail-ops.c (fetch_mail_fetch): if we've been cancelled, uncancel
    so syncing can work.  and always sync the folder (with expunge if
    deleting).

    ** See bug #54924.

    * em-utils.c (em_utils_selection_set_urilist): Try to get the drop
    filename from the message subject, or folder name.
    (em_utils_empty_trash): kill warning.

    ** See bug #54121.

    * mail-component.c (impl_requestCreateItem)
    (emc_new_folder_response): Hack in a nastish implementation of
    create folder for the new menu.
    (impl__get_userCreatableItems): add 'new mail folder' to new
    button.

2004-03-03  Not Zed  <NotZed@Ximian.com>

    * em-folder-tree-model.c (em_folder_tree_model_set_folder_info):
    if we have the folder opened already, and its the outbox, then use
    the total count instead of unread count.  Bit of hack, but copies
    mail-folder-cache stuff.

    * mail-component.c (mc_add_store): renamed from
    mail_component_add_store, internal call.  Added a done callback.
    (mc_add_local_store): renamed from mc_add_store, callback for
    local store.
    (mail_component_add_store): call mc_add_store to do the work.
    (mc_add_local_store_done): ugh, the target of all this shit - note
    all the default folders now they should be setup.

    * mail-folder-cache.c (mail_note_folder): clean up the logic a
    bit.  was gonna do osmething else but it didn't work.
    
2004-03-02  Not Zed  <NotZed@Ximian.com>

    * mail-send-recv.c (mail_send): if we're already sending, up the
    again count to tell it we need to re-send again.
    (receive_done): if we've been asked to run a send again while we
    were already running it, run it again to make sure we didn't miss
    any new messages.  See bug #46839.

    * em-mailer-prefs.c (em_mailer_prefs_construct): update
    check_incoming_imap changes for merge conflicts.
    (settings_changed): i have no idea what these changes jeff did do,
    but check_incoming_imap is no longer needed, so i've deleted most
    of it.

2004-02-27  Not Zed  <NotZed@Ximian.com>

    * em-format.c (emf_multipart_encrypted, emf_multipart_signed): If
    validation fails, display as multipart/mixed rather than unkown
    attachment type, and make the error a little clearer that its an
    error.  See #52939.

2004-02-26  Not Zed  <NotZed@Ximian.com>

    * message-list.c (regen_list_regened): NOOP if the folder has
    changed.

    * mail-session.c (mail_session_check_junk_notify): remove
    check_incoming_imap test.
    (mail_session_init): "

    * evolution-mail.schemas.in.in: Remove check_incoming_imap option.

    * mail-config.glade: Remove check incoming imap checkbox.

    * em-mailer-prefs.c (em_mailer_prefs_construct): remove
    check_incoming_imap test.
    (em_mailer_prefs_apply): "
    (settings_changed): "

2004-03-02  Jeffrey Stedfast  <fejj@ximian.com>

    * em-folder-tree.c (emft_tree_button_press): s/||/&&/. Fixes a
    dumb bug I introduced yesterday.

2004-03-01  Jeffrey Stedfast  <fejj@ximian.com>

    * em-folder-selector.c (em_folder_selector_construct): Connect to
    the folder-activated signal.
    (folder_activated_cb): Call gtk_dialog_response() with
    GTK_RESPONSE_OK. Fixes bug #54793.

    * em-folder-tree.c (emft_tree_row_activated): New callback to emit
    the "folder-activated" signal which is needed to fix bug #54793.
    (emft_tree_button_press): Handle button1 double-clicks too (also
    for bug #54793).
    (emft_tree_button_press): On right-click, we also want to select
    the folder the user right-clicked on. Fixes bug #54772.

2004-02-27  Jeffrey Stedfast  <fejj@ximian.com>

    * em-mailer-prefs.c (em_mailer_prefs_construct): Fixed some
    console warnings from my last commit.

    * em-folder-view.c (emfv_setting_notify): If
    gconf_entry_get_value() returns NULL, then it means the key was
    unset or something. Don't use g_return_if_fail() for that.

    First of the lockdown fixes...

    * em-composer-prefs.c (em_composer_prefs_construct): Same as
    below.

    * em-mailer-prefs.c (em_mailer_prefs_construct): Respect
    locked-down keys by disabling their sensitivity to the user.
    (settings_changed): Don't re-enable check_incoming_imap if the key
    is locked.

2004-02-26  Rodney Dawes  <dobey@ximian.com>

    * em-format-html-display.c (efhd_attachment_button): Create the
    arrows in these widgets as GTK_SHADOW_NONE, since the default arrow
    type in GTK+ 2.x is flat triangle arrows, and shadow types are
    generally ignored for arrows anyway, and so we don't look ugly with
    themes that handle shadow types on arrows correctly

2004-02-26  Jeffrey Stedfast  <fejj@ximian.com>

    Fix for bug #54352

    * em-message-browser.c (emmb_class_init): Set update_message_style
    to FALSE.

    * em-folder-view.c (emfv_setting_notify): Only update message
    display style if our subclass wants us to.
    (emfv_class_init): Set update_message_style to TRUE.
    (emfv_view_mode): Don't save the gconf key unless our class allows
    us to.

2004-02-26  Jeffrey Stedfast  <fejj@ximian.com>

    * em-utils.c (em_utils_folder_name_from_uri): Make sure url->path
    is non-NULL before setting folder_name to url->path + 1. Could
    possibly fix bug #54853.

2004-02-25  Jeffrey Stedfast  <fejj@ximian.com>

    * em-format-html-display.c (efhd_attachment_button): Protect
    against using NULL pixbufs. Gets rid of a lot of console warning
    spewage on my system.

    * em-folder-view.c (emfv_list_key_press): Removed Delete/KP_Delete
    from here. Now handled via the bonobo-ui menu accels. Fixes bug #53504.

2004-02-25  Radek Doulik  <rodo@ximian.com>

    * mail-session.c (main_get_filter_driver): set seen flag for junk
    messages

    * em-folder-view.c (emfv_popup_mark_junk): do not set DELETED

2004-02-24  Jeffrey Stedfast  <fejj@ximian.com>

    * mail-account-editor.c (construct): Removed Apply button. As
    discussed on IRC, UI doesn't feel we should have an Apply button
    here.

2004-02-24  Jeffrey Stedfast  <fejj@ximian.com>

    * mail-account-editor.c (construct): Need to listen for changes to
    S/MIME options, the signature option menu, and any extra
    provider-specific config options. Fixes bug #54036.

    * em-folder-view.c (emfv_popup_mark_junk): Set the SEEN flag as
    well.
    (emfv_list_key_press): Removed the skip-to-next-message logic as
    this was already being handled in emfv_popup_delete(). Fixes bug
    #54471.
    (emfv_enable_menus): Re-enable MessageDelete here. Fixes bug
    #54770.

    * em-utils.c (em_utils_folder_is_drafts): Use the new
    camel_store_folder_uri_equal() function.
    (em_utils_folder_is_sent): Same.

2004-02-23  Jeffrey Stedfast  <fejj@ximian.com>

    Fix for bug #54057

    * em-utils.c (em_utils_folder_is_sent): Use provider->url_equal()
    rather than camel_store_uri_cmp() since that function did not do
    anything close to what it claimed to do. Also use
    em_uri_to_camel() here on the account sent_folder_uri.
    (em_utils_folder_is_drafts): Same.

2004-02-23  Jeffrey Stedfast  <fejj@ximian.com>

    * em-message-browser.c (emmb_list_message_selected): Protect
    against NULL uids.
    (emmb_set_message): Same.

    * em-format-quote.c (emfq_format_message): Print the headers when
    forwarding inline/quoted. Fixes bug #53916.

    * em-folder-tree.c (tree_drag_motion): We want UID_LISTs to drop
    with the MOVE action by default. Fixes a common complaint from
    IRC.

2004-02-23  Not Zed  <NotZed@Ximian.com>

    * em-format.c (emf_multipart_signed): check mps->protocol != NULL
    before dereferencing it.  See #54406.

2004-02-20  Jeffrey Stedfast  <fejj@ximian.com>

    * em-folder-view.c (emfv_list_key_press): Delete key should always
    delete, never undelete (bug #53215). Also fixes a bug where
    uids->len was being accessed after uids had been free'd.

    Fix for bug #53997

    * em-folder-view.c (emfv_list_message_selected): Ref the emfv
    before spawning the async event.
    (emfv_list_done_message_selected): Check emfv->preview !=
    NULL. Also unref the emfv when done.

2004-02-20  Dan Winship  <danw@ximian.com>

    * mail-component.c (set_prop): Remove the debug message here.

2004-02-20  Not Zed  <NotZed@Ximian.com>

    * mail-vfolder.c (mail_vfolder_add_uri): fix for vfolder-rule api
    changes.

    * mail-folder-cache.c (unset_folder_info, setup_folder)
    (rename_folders): switch the sense of the no select checks.  TEST!

2004-02-19  Chris Toshok  <toshok@ximian.com>

    * em-format.c (emf_application_xpkcs7mime): wrap code with
    ENABLE_SMIME instead of HAVE_NSS.
    (emf_multipart_signed): same.
    (type_builtin_table): same.

2004-02-19  Rodney Dawes  <dobey@ximian.com>

    * em-folder-tree.c (emft_save_state): Revert previous change, doh

2004-02-19  Rodney Dawes  <dobey@ximian.com>

    * em-folder-tree.c (emft_save_state): Don't set the timeout id to 0
    and then immediately return FALSE, which tries to remove the timeout

2004-02-19  Not Zed  <NotZed@Ximian.com>

    * mail-send-recv.c (get_receive_type): 
    * mail-config.c (mail_config_get_account_by_source_url) 
    (mail_config_get_account_by_transport_url): 
    * mail-component.c (mail_component_load_store_by_uri): 
    * mail-account-gui.c (mail_account_gui_setup) 
    (mail_account_gui_save): 
    * em-utils.c (em_utils_empty_trash, em_uri_from_camel): 
    * em-folder-tree-model.c (account_changed):
    * em-folder-selector.c (em_folder_selector_get_selected_uri): fix
    camel provider api changes.

2004-02-18  Jeffrey Stedfast  <fejj@ximian.com>

    * em-composer-prefs.c (sig_fill_list): Changed the name to not
    imply we are working with a GtkCList widget (since we are using a
    GtkTreeView).

    * em-folder-tree.c (emft_tree_button_press): Pass flags to
    em_popup_target_new_folder() instead of just an isstore arg.
    (emft_tree_button_press): Fake the fi flags for vTrash/vJunk so
    that em-popup.c can disable the delete flag for these.

    * em-popup.c (em_popup_target_new_folder): Instead of taking an
    isstore argument, take a flags argument so that our caller can
    give us hints about the selected folder/store. Also fixed a logic
    bug from my previous commit.

2004-02-12  Jeffrey Stedfast  <fejj@ximian.com>

    * em-folder-tree.c (emft_tree_button_press): Updated for em-popup
    API change (altho currently passes a dummy value).

    * em-popup.c (em_popup_target_new_folder): Check for vTrash/vJunk
    by checking the CAMEL_FOLDER_VIRTUAL info flags bit. (perhaps this
    flag should be renamed to SPECIAL? VIRTUAL might not have been a
    good name). Also changed to check flags & CAMEL_FOLDER_NOSELECT
    rather than checking the uri string for a noselect param.

    * mail-folder-cache.c (unset_folder_info): Instead of checking for
    ";noselect" in the uri, check for a CAMEL_FOLDER_NOSELECT flag on
    mfi->flags.
    (setup_folder): Copy the fi->flags to mfi->flags here.
    (rename_folders): Same.
    (setup_folder): Check fi->flags for CAMEL_FOLDER_NOSELECT here
    instead.
    (rename_folders): Same. Also gets rid of a FIXME.

2004-02-18  Jeffrey Stedfast  <fejj@ximian.com>

    * em-format-html-display.c (efhd_xpkcs7mime_validity_clicked):
    Revert change from yesterday.
    (efhd_xpkcs7mime_button): Use the icon from the table.

2004-02-18  Not Zed  <NotZed@Ximian.com>

    ** See bug #54492.
    
    * em-folder-tree.c (emft_popup_copy_folder_selected): check the
    store flags, not the fragment presence to find out if we use the
    fragment as the path.

2004-02-17  Jeffrey Stedfast  <fejj@ximian.com>

    Fix for bug #54060 (except for the "don't let users copy/move
    messages to Outbox" bit).

    * em-folder-tree.c (emft_drop_target): Rearranged a little. We can
    check for special dest folders right away. Also added a check for
    the default local folders (Drafts/Inbox/Outbox/Sent) since we
    don't want to be able to move them anywhere else (copying is ok).
    (emft_popup_copy_folder_selected): Don't allow moving any of the
    default local folders to be consistant with drag&drop changes.
    (emft_popup_rename_folder): Don't allow the user to rename a
    default local folder.
    (emft_popup_delete_folder): Don't allow deletion of special local
    folders.

    * mail-component.c (mail_component_peek_local_store): New function
    to peek the local store.

2004-02-17  Jeffrey Stedfast  <fejj@ximian.com>

    * em-format-html-display.c (efhd_xpkcs7mime_validity_clicked):
    Display an alternate description based on the trust value if we
    have a trust to work with.

    * em-folder-browser.c (emfb_hide_deleted): Set the hide_deleted
    bool on EMFolderView.

    * em-folder-view.c (emfv_popup_delete): Fix Sarfraaz Ahmed's fix
    to only jump to the previous message if hide_deleted is
    set. Otherwise his fix gets extremely irritating.
    (emfv_list_key_press): Same.

2004-02-17  Not Zed  <NotZed@Ximian.com>

    ** See bug #53914.

    * em-utils.c (guess_account): do some extra checks, message
    source, and source folder.
    (guess_account_folder): helper to guess account based on folder.

    ** See bug #54200.

    * em-popup.c (em_popup_target_new_select): add
    EM_POPUP_SELECT_FOLDER - to find out if we have a folder at
    all.  Handle getting a NULL folder passed in.

    * em-folder-view.c (em_folder_view_get_popup_target): Added
    EM_FOLDER_VIEW_SELECT_FOLDER - to detect when we dont have a
    folder set on the emfolderview.

    * em-folder-browser.c (emfb_mark_all_read): if we don't have a
    folder, dont try and run.
    (emfb_enable_map[]): Disable a bunch of stuff we have no
    folder set.

    * importers/pine-importer.c (import_contact): fix for the
    weird-arsed e-contact list api.  and fix a small memleak.

2004-02-13  Jeffrey Stedfast  <fejj@ximian.com>

    * em-folder-tree.c (emft_drop_folder): Make sure the drop-target
    folder doesn't already contain a folder named identical to the one
    we are dropping by using the new CAMEL_STORE_FOLDER_EXCL
    flag. Fixes bug #53810.

2004-02-13  Radek Doulik  <rodo@ximian.com>

    * evolution-mail.schemas.in.in: added defaults for composer
    width/height

2004-02-13  Sarfraaz Ahmed <asarfraaz@novell.com>

    * em-folder-view.c (emfv_popup_delete): added the code to get
    the previous mail in a list, if get_next_mail fails. This is a
    fix for #54195
    (emfv_list_key_press): Same as above

2004-02-13  Not Zed  <NotZed@Ximian.com>

    * importers/netscape-importer.c: use mail-importer to import the
    mail tree, fix the account stuff to talk directly to mail config.
    Added cancel button.  etc.  This is completely untested apart from
    compiling with no warnings.

    * importers/mail-importer.c (import_mbox_import): dont re-use the
    exception for syncing.

    * importers/evolution-outlook-importer.c: major reworking.  Some
    platform fixes, runs in another thread, simpler/cleaner main loop.
    This is completely untested apart from compiling with no warnings.

    * importers/evolution-mbox-importer.c (support_format_fn): we dont
    want to check the From_ line case insensitive!
    (create_control_fn): implement this weird api.

2004-02-12  Not Zed  <NotZed@Ximian.com>

    * importers/elm-importer.c: rewrote all importing stuff.

    * importers/mail-importer.c (mail_importer_import_folders_sync):
    split out into a recursive function & entry.  Now handles mozilla
    format stuff with a flag.
    (import_mbox_import): made the cameloperation properly
    save/restore multiple registrations.

2004-02-12  Radek Doulik  <rodo@ximian.com>

    * em-junk-filter.c (pipe_to_sa_with_error): use
    g_find_program_in_path to avoid fork in case program is not
    available

2004-02-11  Jeffrey Stedfast  <fejj@ximian.com>

    * mail-component.c (mail_control_new): Disable the
    bonobo-ui-component statusbar when using the EMFolderBrowser
    outside of the mail component. This prevents the Connector
    component from having 2 status bars.

    * em-popup.c: #include <libgnomevfs/gnome-vfs-mime.h>
    (em_popup_create_menu): Wrap item->label with _() so
    that the strings get translated properly.

2004-02-11  Christian Neumair  <chris@gnome-de.org>

    * em-folder-tree-model.c (sort_cb): "On this Computer" -> "On This
    Computer".

    * mail-component.c (mc_setup_local_store): Ditto.

2004-02-11  Jeffrey Stedfast  <fejj@ximian.com>

    * em-format-html-print.c: Same.

    * em-junk-filter.c: #include <config.h>

    * em-popup.c: Add license & config.h

2004-02-11  Radek Doulik  <rodo@ximian.com>

    * em-junk-filter.c (em_junk_sa_test_spamd): if spamc is not
    available, try /usr/sbin/spamc

2004-02-10  Radek Doulik  <rodo@ximian.com>

    * em-junk-filter.c (em_junk_sa_test_spamd): try to check if system
    wide spamd has --local parameter set according to our setting
    (em_junk_sa_test_spamd): in case we were unable to start our own
    spamd, try to run it from /usr/sbin before giving up

2004-02-11  Not Zed  <NotZed@Ximian.com>

    * importers/mail-importer.c (mail_importer_import_folders_sync):
    call the right recursive function, oops.

    * importers/mail-importer.h: don't include camel-operation.h, but
    fix up the forward decl usage.

2004-02-11  JP Rosevear <jpr@ximian.com>

    * importers/mail-importer.h: include camel-operation.h

2004-02-11  Not Zed  <NotZed@Ximian.com>

    * importers/pine-importer.c: Basically rewrote this, the import
    tasks run in another thread.  It tells you more about what's going
    on, and its cancellable.
    (pine_store_settings): changed the meaning of the settings
    slightly, if set it means we've processed them already.

    * mail-component-factory.c (factory): hook in importer factory
    callback.

2004-02-10  Not Zed  <NotZed@Ximian.com>

    * importers/*-importer.c: removed module init, just provide a new
    method.  Updates for api changes.

    * Makefile.am: link mail importers in directly.

    * mail-importer.c: changed to do stuff in-memory with linked
    stuff, moved to importers/.

    * importers/GNOME_Evolution_Mail_Importers.server.in.in: merge all
    importer .server info's here, point them all to the mailer
    factory.  Removed the others.

    * importers/Makefile.am: remove Mailer.idl stuff.  Move all
    importers to a single library.

2004-02-09  Not Zed  <NotZed@Ximian.com>

    * em-folder-tree.c (tree_drag_data_delete): merged in code from
    em_folder_tree_model_drag_data_delete.
    (tree_drag_data_get): similar.
    (tree_drag_data_received): similar.
    (drag_text_uri_list): removed, use em_utils_selection_set_urilist
    in tree_drag_data_get instead.
    (em_folder_tree_enable_drag_and_drop): merged in
    em_folder_tree_model_set_drag_drop_types.
    (tree_drag_motion): merge in drop_possible, handle qualifiers, and
    return the right type.
    (em_folder_tree_model_row_drop_target): rename to
    emft_drop_target, and make private.  Beefed up substantially,
    handles illogical drops, dropping on to special folders and
    properly handling vfolder uri's (at least within the same tree
    instance).

    * em-folder-tree-model.c: Moved all of the DND stuff to
    em-folder-tree, where it belongs, made it all static.  Should
    allow for some sharing of code too.

    * em-format-quote.c (emfq_format_message): just print the \n after
    the credits in the same printf, rather than adding an else.  Add a
    <br> too, otherwise it has no effect.

2004-02-06  Jeffrey Stedfast  <fejj@ximian.com>

    * em-format-html.c (efh_format_headers): Make private (only
    EMFormatHTMLQuote used it and that class is no longer in use).
    (efh_format_message): Updated for above change.

    * em-format-quote.c (emfq_format_message): Always write a \n after
    the credits line.

    * em-subscribe-editor.c (sub_folderinfo_get): Set the NO_VIRTUAL
    flag bit for get_folder_info(). Fixes bug #51887.

2004-02-06  Radek Doulik  <rodo@ximian.com>

    * em-folder-view.c (emfv_popup_mark_nojunk): move to the next
    message after mark not junk as well

    * em-junk-filter.c (em_junk_sa_test_spamd): split into
    spamassassin and spamd tests
    (em_junk_sa_is_available): test spamd only if spamd usage enabled
    (pipe_to_sa_with_error): extended pipe_to_sa, last added parametr
    specifies return value if an error occured
    (em_junk_sa_check_junk): don't use /bin/sh -c when running
    spamassassin, it's not needed and we need to avoid getting 126,127
    exit codes from the shell
    (em_junk_sa_check_junk): pass 0 rv_err to pipe_to_sa_with_error to
    avoid false positives in case someone removes/uninstalls SA while
    evolution runs

2004-02-06  Not Zed  <NotZed@Ximian.com>

    ** See bug #53258.

    * em-format-html-display.c (efhd_find_handler): force any bonobo
    handler types to always be inline, even attachments.

    * em-format.c (em_format_is_inline): use handler flags for special
    cases, removing all hard-coded types.

    * em-format.h (EMFormatHandler): add a flags field, so far a flag
    to set default inline viewing of the content.

2004-02-06  Not Zed  <NotZed@Ximian.com>

    * em-folder-properties.c: include string.h to kill warning.

    ** See bug #53627.
    
    * em-folder-view.c (emfv_popup_mark_junk): changed to work like
    delete does, jumping to the next message if required, and marking
    things immediately, then queuing up the junk marking job if
    required.

    * mail-ops.c (mail_mark_junk): ugh, this stuff totally can't go
    accessing messagelist from another thread!!!!  Changed so this
    code only does the junk reporting, not setting flags.  UGH!  It
    should be doing this implictly on the folder when you set the
    flags, or at least when you sync the folder!!!  Changed ot use the
    queued thread.

    * message-list.c (find_next_undeleted): changed to find
    next-unhidden, i.e. junk as well as deleted, if we're in
    hide-deleted mode.
    (build_tree): always call find_next_undeleted if we have a cursor.
    (build_flat): same.

2004-02-05  Rodney Dawes  <dobey@ximian.com>

    * em-message-browser.c (emmb_list_message_selected): Grab focus on
    the HTML widget when we display

    Fixes #52942

2004-02-05  Jeffrey Stedfast  <fejj@ximian.com>

    * em-message-browser.c (emmb_list_message_selected): Set the new
    title.
    (em_message_browser_window_new): Connect to the message_selected
    signal in the message-list widget. Fixes bug #52232.

    * em-folder-tree-model.c (em_folder_tree_model_row_drop_target):
    Now takes a GdkContext arg... will need this later when we want to
    re-enable dnd of vfolders.

    * em-folder-browser.c (emfb_set_folder): Always set the
    search_state, even if it is NULL (NULL means default/unset state).

    * em-folder-view.c (emfv_mail_next_flagged): Pass TRUE as
    wraparound (to both be consistant with prev_flagged and to fix bug
    #48681.

2004-02-05  Not Zed  <NotZed@Ximian.com>

    * em-folder-tree.c (emft_copy_folders__copy): sync the from folder
    if we're going to delete it, otherwise we can't because its not
    empty.  See #53815.

2004-02-05  Not Zed  <NotZed@Ximian.com>

    * em-folder-tree-model.c
    (em_folder_tree_model_drag_data_received): hmm, another well
    tested bit of code ... if you launch another thread you gotta copy
    the selection since it wont hang around until we're done with it.
    So copy/parse the selection data into appropriate structures.
    (drop_folder): just take the async message as an argument, rather
    than copying half of it to the stack.
    (drop_text_uri_list, drop_uid_list): replace most args with the
    thread message.
    (drop_message_rfc822): removed, now trivial.
    (emftm_drag_data_received_async__drop): change for changed args,
    and fix a memleak.
    (emftm_drag_data_received_async__free): fixed for changed
    structure.

    * em-folder-tree.c (em_folder_tree_create_folder): call abort
    before we unref, aid debugging if we hit it.

    * mail-vfolder.c (uri_is_spethal): check for vfolder/vtrash
    folders.  Based on name check and store options.

2004-02-04  Jeffrey Stedfast  <fejj@ximian.com>

    * em-folder-tree-model.c (em_folder_tree_model_row_drop_target):
    Don't allow dropping into a vfolder (store). Fixes bug #53757.

2004-02-04  Not Zed  <NotZed@Ximian.com>

    ** See bug #53683.

    * mail-ops.c (mail_sync_store): new async op to call
    CamelStore::sync.

    * mail-component.c (impl_requestQuit): implement, check to see if
    we can quit, or have open or unsent messages (and are in online
    mode).
    (impl_quit): implement.  Trigger off a sync of all open stores,
    and return FALSE until its done.
    (impl_upgradeFromVersion): fixed the signature to match the idl,
    killed that warning at last.

    ** See bug #53832.

    * em-folder-browser.c (emfb_folder_properties): only show this if
    we have a uri set.  Strictly, the menu item shouldn't be
    activated.

    ** See bug #53131.
    
    * em-folder-browser.c (em_folder_browser_show_preview): copy the
    message list's cursor_uid before calling set_message, since it can
    get freed during setting the message.

2004-02-03  Jeffrey Stedfast  <fejj@ximian.com>

    * em-folder-tree.c (tree_drag_data_received): Modified
    slightly. The model now calls gtk_drag_finish() for us when it is
    done.

    * em-folder-tree-model.c
    (em_folder_tree_model_drag_data_received): Make this perform camel
    operations in another thread so we don't block.
    (em_folder_tree_model_drag_data_get): Updated args to be
    consistant with drag_data_received.

2004-02-03  Radek Doulik  <rodo@ximian.com>

    * em-junk-filter.c: handle the sa prefs here, have own gconf
    client with sa dir added

    * mail-session.c: removed sa prefs

2004-02-02  Jeffrey Stedfast  <fejj@ximian.com>

    Fix for bug #52941

    * em-message-browser.c (em_message_browser_window_new): Set window
    size based on previous size; load from gconf if necessary.
    (window_size_allocate): Save window size changes.

2004-02-02  Not Zed  <NotZed@Ximian.com>

    ** See bug #53549.

    * em-folder-selector.c: Fix handling a parent path of "/".

    * mail-ops.c (mark_junk_mark): removed the really innacurate cut and
    paste comment.  This has nothing to do with filter_folder.

    ** See bug #52994.

    * em-folder-properties.c (em_folder_properties_show): redirect
    vFolder uri's to the vFolder editor.

    ** See bug #53502.

    * em-folder-browser.c (emfb_folder_properties): implement.

    * em-folder-tree.c (emft_popup_properties): fixed for change
    below.

    * em-folder-properties.[ch]: Moved the folder properties window
    from em-folder-tree.c to its own file.

2004-02-02  Not Zed  <NotZed@Ximian.com>

    ** See bug #53559.

    * em-folder-tree.c (folder_tree_new): set CAN_FOCUS flag on the
    folder tree content widget.

    * em-folder-selector.c (em_folder_selector_construct): Don't wrap
    the folder tree in a scrolled window.  Its already in one ????.
    (em_folder_selector_construct): dont set can_focus on the folder
    tree.

2004-02-01  Bill Zhu <bill.zhu@sun.com>

    Fixes for bug #53530

    * em-utils.c (em_utils_redirect_message): Removed the duplicate 
    adding of attachments

2004-01-30  Jeffrey Stedfast  <fejj@ximian.com>

    Fixes for bug #53348

    * mail-account-gui.c (mail_account_gui_save): Only add the new
    store to the mail-component if the mail-component doesn't already
    know about it (ie. only if we are adding a new account).

    * em-folder-tree-model.c (em_folder_tree_model_add_store): Hash
    our store-info based on account here.
    (em_folder_tree_model_init): Listen for
    account_changed/account_removed signals.
    (em_folder_tree_model_finalize): Disconnect above handlers.
    (account_changed): Tear down the account store node and replace it
    with the new store (assuming it belongs in the tree after the
    changes).
    (account_removed): Remove the account store from the tree.

2004-01-30  Jeffrey Stedfast  <fejj@ximian.com>

    * em-folder-tree.c (emft_tree_row_expanded): Get recursive folder
    listing (needed or folders that have as-of-yet-unloaded-subfolders
    that contain unread mail will not be bolded). Fixes bug #51045.

    Fix for bug #53195.

    * em-folder-browser.c (emfb_set_folder): Restore search_state.
    (emfb_search_search_activated): Save search_state.

2004-01-30  Not Zed  <NotZed@Ximian.com>

    ** See bug #53549, partial fix.

    * em-folder-selector.c (emfs_create_name_activate): only emit the
    ok response if the ok button would be active (i.e. entered a valid
    path).

    ** See bug #52992.

    * message-list.c (message_list_hide_clear): save the hide state
    after its been cleared, so any popup windows inherit it.
    (message_list_hide_uids): same.

    ** See bug #53123.

    * em-folder-tree-model.c (drop_folder): changed to take store and
    dest folder as arg, to handle the case of the parent folder being
    "" properly.
    (em_folder_tree_model_drag_data_received): special case dropping a
    folder, and don't allow dropping to "" for any other types.

2004-01-30  Not Zed  <NotZed@Ximian.com>

    ** See bug #53558 (plus other fixes/cleanups)

    * em-format.c (emf_format_secure): default implementation, handle
    output of inner part, but dont output any sign/encrypt info.
    (emf_multipart_signed, emf_multipart_encrypted): replaced with
    implementations from em-format-html.c, which now call
    em_format_format_secure to output guts.
    (emf_class_init): hook-up virtual method format_secure.

    * em-format.[ch]: add a virtual method for outputing secured
    parts.  Moved all validity stuff from em-format-html.[ch] to here.

    * mail-component.c (impl_createControls): set the session
    interactive too.

    * em-format-html-display.c: make smime stuff dependent on
    HAVE_NSS.
    (efhd_multipart_signed, efhd_application_xpkcs7mime): removed, now
    handled by root class.
    (efhd_output_secure): renamed to efhd_format_secure, and use
    EMFormat::format_secure to kick off.
    (efhd_class_init): setup format_secure virtual method.

    * em-format-html.c (efh_multipart_encrypted): We need to handle
    this here so we can properly keep track of the ciphervalidity
    stuff.  Also do it directly using the context, not
    multipartencrypted part.
    (efh_multipart_signed): with unsupported signature format, format
    as multipart/mixed, not as an attachment.
    (efh_multipart_signed): make the smime stuff optional.
    (efh_multipart_signed, efh_multipart_encrypted): Moved to
    em-format.c.
    (efh_application_xpkcs7mime): moved to em-format.c
    (efh_output_secure): renamed to efh_format_secure, linked into
    virtual method.  call parent class to do the validation foo then
    output the info if needed.
    (efh_format_message): fixed access to validity stuff to parent
    object.
    (efh_class_init): hook up format_secure virtual method.
    (*): removed some now-unused headers.

2004-01-29  Nicel KM  <mnicel@novell.com>

    * mail-component.c: removed CAMEL_PROVIDER_IS_EXTERNAL check
    * mail-account-gui.c: likewise
    * mail-offline-handler.c: likewise  

2004-01-29  Not Zed  <NotZed@Ximian.com>

    * em-format-html-display.c (efhd_attachment_button): check the
    snooped type for the icon/etc.
    (efhd_format_attachment): save the snooped type in the
    attach_puri.

    * em-format-html.c (efh_text_plain): If we had a snooped type, use
    that as the base type, rather than octet-stream, which will cause
    an attachment in attachment loop.

    * em-format.c (em_format_part_as): save the current snooped mime
    type in a stack if we had any.

2004-01-29  Not Zed  <NotZed@Ximian.com>

    ** See bug #53320 and probably others

    * message-list.c (message_list_set_folder): NULL out
    message_list->folder when we clear it so it isn't left for another
    free when we switch again.

2004-01-29  Not Zed  <NotZed@Ximian.com>

    ** See bug #52190.

    * message-list.c: Added folder/folder uri to the data stored for
    primary/secondary selection, uses a struct to store the data now.
    This is needed so when you cut/copy messages, and paste them, it
    doesn't end up 'pasting' the messages from the current folder, but
    from the one where the copy/cut took place.
    (clear_selection): helper to free data inside selection struct.

2004-01-29  Not Zed  <NotZed@Ximian.com>

    ** See bug #53506.

    * mail-tools.c (mail_tools_folder_to_url): use a camelurl to do
    this properly, and handle fragment folder-paths.

    * em-composer-utils.c (em_utils_composer_send_cb): removed
    outbox_folder local, not necessary.

2004-01-28  Jeffrey Stedfast  <fejj@ximian.com>

    * em-folder-tree-model.c (em_folder_tree_model_add_store): If the
    store is already in the model, remove it and then re-add it. Fixes
    bug #53422.

2004-01-28  Jeffrey Stedfast  <fejj@ximian.com>

    And thus completes the fixes for bug #52766.

    * em-folder-tree.c (tree_drag_drop): Don't call
    gtk_drag_get_data() manually here or we end up getting 2
    drag-data-received callbacks which is Not Good (tm).

    * em-folder-tree-model.c (drop_folder): Now takes a moved argument
    to specify whether or not the contents were moved (the move
    argument is just a hint).
    (drop_uid_list): Same.
    (em_folder_tree_model_drag_data_received): Updated for the above
    api changes.

2004-01-28  Not Zed  <NotZed@Ximian.com>

    ** See bug #53179

    * mail-tools.c (mail_tool_get_local_movemail_path): Fix the
    movemail path.

    * mail-component.c (load_accounts): hack alert!
    * mail-send-recv.c (get_receive_type): hack alert!  hardcode mbox:
    to be a movemail source.

2004-01-28  Not Zed  <NotZed@Ximian.com>

    * mail-send-recv.c (setup_send_data): ref folder from
    mail_component_get_folder.

    * mail-ops.c (fetch_mail_fetch): ref the folder we get from
    mail_component_get_folder since it doesn't ref it.

2004-01-27  Jeffrey Stedfast  <fejj@ximian.com>

    * em-migrate.c (cp): Removed unneeded debug printfs.

    * em-folder-tree.c (tree_drag_data_received): Use
    gtk_tree_view_get_dest_row_at_pos() instead of
    gtk_tree_view_get_path_at_pos() since this is what Nautilus
    uses. Unfortunately, it still gives us back the wrong GtkTreePath
    so it looks to me like Gtk+ is borked. Apparently you need the
    latest and greatest gtk+-2.3.x cvs snapshot for this to work.

    * em-migrate.c (em_migrate_imap_caches_1_4): Copy the imap cache
    into the right place. Duh.

2004-01-27  Not Zed  <NotZed@Ximian.com>

    ** See bug #53084 and others.
    
    * em-migrate.c (em_migrate): remove the vfolder_revert hack.

    * em-composer-utils.c (ask_confirm_for_only_bcc): removed unused
    vars.

    * mail-tools.c (mail_tool_get_local_inbox): removed, handled by
    mail_component_get_folder now.

    * mail-component.c (mail_component_*): Changed the api slightly.
    Using NULL as the component argument automatically implies you
    want the default component.
    (em_uri_from_camel, em_uri_to_camel): moved to em-utils.[ch].  Ok
    so it isn't namespaced right ... *shrug*.
    (mail_component_get_local_inbox): removed.
    (mail_component_get_folder): single entry point for getting
    standard folders.  This is MT-Safe.
    (mail_component_get_folder_uri): single entry point for getting
    standard folder uri's.  This is MT-Safe.
    (add_store): removed, moved to mail_component_add_store.
    (mail_component_load_store_by_uri): call mail_component_add_store
    directly rather than copying its code.
    (default_*_folder*): Removed, use accessor methods instead, fixed
    all callers.
    (setup_local_store): renamed to mc_setup_local_store, use proper
    url encoding too.  make run-once and thread-safe.
    (MailComponentPrivate): Added a lock.
    (mail_control_new): exported properly to kill warnings.
    (mail_component_init): dont setup_local_store or add accounts
    here.
    (impl_createControls): setup local store/accounts here.
    (mail_component_peek): dont setup vfolder storage here.
    (mc_startup): internal function to startup stuff needed for gui
    operation.
    (setup_search_context): make run-once.
    (mail_component_peek_search_context): call setup_search_context
    incase it isn't setup yet.
    (impl_upgradeFromVersion): remove the local store setup hack.

2004-01-27  Not Zed  <NotZed@Ximian.com>

    * em-folder-tree-model.c (folder_renamed): fix the parent-finding
    logic.

2004-01-23  Not Zed  <NotZed@Ximian.com>

    * mail-component.c (mail_component_init): add the offline handler
    interface to the component.
    (store_go_online, go_online): removed, handled by the offline
    handler.

    * mail-offline-handler.c (store_go_online): add the store to the
    tree model when we go online.

2004-01-26  Jeffrey Stedfast  <fejj@ximian.com>

    Fixes for bug #53251.

    * mail-account-gui.c (mail_account_gui_new): Convert the account
    drafts/sent folder uris to camel uris.
    (mail_account_gui_save): Convert drafts/sent camel uris into
    mailer uris when setting them on the account. Also, don't compare
    against file: anymore since those uris don't exist anymore.

    * em-migrate.c (em_upgrade_accounts_1_4): Update the drafts/sent
    folder uris.

2004-01-26  Jeffrey Stedfast  <fejj@ximian.com>

    * em-folder-tree.c (tree_drag_begin): Set priv->drag_row.

2004-01-26 Aaron Weber <aaron@ximian.com>

    * mail/default/C/Inbox: edited default message

2004-01-26  Jeffrey Stedfast  <fejj@ximian.com>

    * em-folder-tree.c (emft_copy_folders__copy): Use FOLDER_INFO_FAST
    bitflag here, since we don't care about unread counts when copying
    folders around.
    (emft_popup_delete_folders): Same.
    (emft_tree_row_expanded): Don't use FOLDER_INFO_FAST here.

2004-01-26  Radek Doulik  <rodo@ximian.com>

    * mail-session.c (main_get_filter_driver): translate DEMAND to
    INCOMING to get the right rules

    * mail-ops.c (mail_filter_on_demand): use FILTER_SOURCE_DEMAND

    Fixes #53266

2004-01-25  Rodney Dawes  <dobey@ximian.com>

    * em-folder-selector.c (em_folder_selector_create_new): Cast the
    name entry to a GtkWidget to avoid a compiler warning
    * em-folder-tree.c (emft_popup_new_folder): Grab focus on the name
    entry when we show the dialog (#53089)

    Fixes #53089

2004-01-23  Jeffrey Stedfast  <fejj@ximian.com>

    * em-folder-tree-model.c (em_folder_tree_model_get_type): Removed
    the drag & drop interfaces, apparently these aren't good enough
    for what we need. Gotta implement this all the Hard Way (tm).
    (em_folder_tree_model_drag_data_received): Helper function called
    by the drag_data_received signal callback in em-folder-tree.c
    (em_folder_tree_model_row_drop_possible): Same idea.
    (em_folder_tree_model_row_drop_target): Again.
    (em_folder_tree_model_row_draggable): You get the idea...
    (em_folder_tree_model_drag_data_get): And again.
    (em_folder_tree_model_drag_data_delete): Same.
    (em_folder_tree_model_set_drag_drop_types): Setup the drag & drop
    types on the widget (since the target drag & drop types are now
    internal to the model code rathr than the tree code).

    * em-folder-tree.c (em_folder_tree_enable_drag_and_drop):
    Rewritten. Connect to all the drag & drop signals and implemnent
    them.

2004-01-23  Larry Ewing  <lewing@ximian.com>

    * mail-component-factory.c (factory): add the control id to the
    factory.

2004-01-23  Jeffrey Stedfast  <fejj@ximian.com>

    * em-migrate.c (upgrade_xml_uris_1_4): Handle where the file: url
    is roken (ie, points to a location out of the evolution
    namespace).

2004-01-23  Rodney Dawes  <dobey@ximian.com>

    * em-folder-selector.c: Set the mnemonic widget for "Folder _name:"

    Fixes #53088

2004-01-23  Radek Doulik  <rodo@ximian.com>

    * em-junk-filter.c: use mail_session_get_sa_daemon_port

    * em-mailer-prefs.c (em_mailer_prefs_construct): added
    check_incoming_imap
    (em_mailer_prefs_apply): ditto
    (settings_changed): set check_incoming_imap sensitivity by
    check_incoming state

    * mail-session.c: add sa_daemon_port
    (mail_session_init): init sa_daemon_port and check_junk_for_imap
    (mail_session_check_junk_notify): watch for sa_daemon_port and
    check_junk_for_imap
    (mail_session_get_sa_daemon_port): new wrapper
    (mail_session_set_sa_daemon_port): ditto

2004-01-22  Jeffrey Stedfast  <fejj@ximian.com>

    * em-junk-filter.c (em_junk_sa_test_spamd): Oops, when calling
    spamassassin rather than spamc, we need to invoke /bin/sh -c
    since spamassassin is a shell script.
    (em_junk_sa_check_junk): Same.

    Fixes bug #53175.

    * em-junk-filter.c (pipe_to_sa): Don't need an argc (we don't even
    seem to use it??).
    (em_junk_sa_test_spamd_running): Don't invoke /bin/sh.
    (em_junk_sa_test_spamd): Simplified, also don't invoke /bin/sh.
    (em_junk_sa_check_junk): Cleaned up/simplified. Also don't invoke
    /bin/sh.
    (em_junk_sa_report_junk): Same.
    (em_junk_sa_report_notjunk): Same.
    (em_junk_sa_commit_reports): Same.

2004-01-22 Gary Ekker <gekker@novell.com>

    ** See bug #53051
    
    * em-subscribe-editor.c (subscribe_set_store): fix typo in label

2004-01-22  Radek Doulik  <rodo@ximian.com>

    * em-junk-filter.c (em_junk_sa_test_spamd): uncomment system wide
    spamd test

2004-01-20  Radek Doulik  <rodo@ximian.com>

    * em-junk-filter.c: lock report calls by em_junk_sa_report_lock
    mutex

2004-01-21  Jeffrey Stedfast  <fejj@ximian.com>

    * em-migrate.c (em_migrate_1_4): Migrate the ETree expanded state
    files as well as the GalView files.

    * message-list.c: s/hide_save_state/save_hide_state/g and
    s/hide_load_state/load_hide_state/g to be more consistant with the
    other state saving function names.

2004-01-21  Not Zed  <NotZed@Ximian.com>

    * em-migrate.c (cp_r): use camel_mkdir(0777) rather than 0777 &
    st.st_mode which isn't set anyway.
    (cp): use simple 0666 for the mode open, and then chmod after.
    (cp): check the return code of close, not just fsync.
    (cp): dont use fd[0] and fd[1] when we really just want simple
    variables, rename to readfd and writefd.

    ** See bug #53159.

    * em-format.c (emf_message_rfc822): removed incorrect comment,
    this is not a fallback.

    * em-format-html.c (efh_text_plain): check the content-type of the
    containee object, not the holder.

    ** See bug #52979.

    * em-format-html.c: take out text/x-patch and put in text/* for a
    text/plain fallback handler instead.

    * em-format-html-display.c (efhd_find_handler): allow the bonobo
    handlers to override the builtin ones.

2004-01-20  Jeffrey Stedfast  <fejj@ximian.com>

    * em-migrate.c (em_migrate_imap_caches_1_4): New function to
    migrate the imap cache.
    (em_migrate_1_4): Migrate the IMAP cache. Fixes bug #52985.
    (em_migrate_1_4): Copy over the searches.xml file. Fixes bug
    #52980.

    * mail-session.c (request_password): Changed the logic of the
    visibility of the passwd text so that we hid ethe passwd if the
    flags have the SECRET bit set.

2004-01-20  Not Zed  <NotZed@Ximian.com>

    ** See Bug #52817.
    
    * mail-session.c (request_password, do_get_pass, get_password):
    Fix for api changes to camel_session_get_password.
    (request_password): if we have a STATIC password, don't show any
    'remember' checkbox.

2004-01-20  Not Zed  <NotZed@Ximian.com>

    * em-folder-view.c (EMFolderView): Make displayed_uid public.

    * em-folder-browser.c (em_folder_browser_show_preview): use
    em_folder_view_set_message rather than message_list_select_uid.
    When clearing, clear view->displayed_uid too.

2004-01-20  Not Zed  <NotZed@Ximian.com>

    ** See bug #52965.

    * mail-component.c (mail_component_init): removed an epfixme, it
    already is an object.
    (impl_upgradeFromVersion): call mail_note_store after running the
    upgrade for local folders.

    * em-migrate.c (em_migrate): revert the vfolders.xml after we've
    imported them.

    * mail-vfolder.c (vfolder_revert): new api to re-load the vfolders
    file.

    ** See bug #52885.

    * em-folder-browser.c (emfb_create_view_menus): unref the view
    instance/menu's rather than asserting, if they exist.
    (emfb_set_folder): call create_view_menu's rather than
    create_view_instance, so the view menu's are properly setup.
    (emfb_set_folder): call superclass first.

    ** See bug #53028.

    * message-list.c (on_selection_changed_cmd): emit the
    cursor_activated if more than 1 item is selected also.

2004-01-20  Not Zed  <NotZed@Ximian.com>

    ** See bug #52990.

    * mail-component.c (mail_component_init): re-enable auto-send-recv
    setup.

    ** See bug #52989.

    * message-list.c (hide_load_state): clear the hidden table if
    setup, before loading.

2004-01-19  Radek Doulik  <rodo@ximian.com>

    * mail-config.c (MAIL_CONFIG_RC_DIR): path to gtkhtml's rc file
    (config_write_style): use MAIL_CONFIG_RC_DIR
    (mail_config_init): ditto

    see http://bugzilla.ximian.com/show_bug.cgi?id=52969

2004-01-19  Not Zed  <NotZed@Ximian.com>

    * mail-ops.c (add_vjunk_info, add_vtrash_info): removed this like
    i asked radek to ages ago, just call the parent directly.
    (add_vtrash_or_vjunk_info): renamed to something saner.
    add_special_info.
    (add_special_info): removed the 'unread count' parameter & return
    the added info.

    ** See bug #52854.

    * em-folder-tree.c (emft_tree_button_press): setup a FOLDER target
    for the popup menu.

    * em-popup.c (em_popup_target_free): implement free for
    TARGET_FOLDER, changed the target options somewhat.
    (em_popup_target_new_folder): implement folder selection target.
    Total Hack(tm) alert.
    (emp_standard_menu_factory): removed the stupid
    g_assert_if_not_reached() call.

    * message-list.c (message_list_destroy): NULL out the uid_nodemap
    when we destroy it.

2004-01-19  Not Zed  <NotZed@Ximian.com>

    * em-folder-browser.c (emfb_folder_expunge): get the toplevel
    widget here too, similar to bug 52161.

    ** See bug #52956

    * em-composer-prefs.c (sig_edit_cb): The
    fileentry_add_script_script widget is a GnomeFileEntry not a
    GtkEntry.
    (sig_add_script_response): use get_full_path rather than snooping
    the gtkentry.  Also, don't close/quit the script dialogue on a bad
    name.

2004-01-19  Not Zed  <NotZed@Ximian.com>

    * em-migrate.c (em_upgrade_pop_uid_caches_1_4): if we can't open
    the pop3 cache dir, because it doesn't exist, it is not an error.

    ** See bug #52983.

    * mail-component.c (em_uri_from_camel, em_uri_to_camel): Handle
    vfolder: uri's properly.  And make sure local uri's are properly
    encoded.
    (mail_component_get_folder_from_evomail_uri)
    (mail_component_evomail_uri_from_folder): removed, no longer used.
    (em_uri_from_camel): don't leak the camelurl.
    (d): disable debug

    * mail-vfolder.c (vfolder_load_storage): move the vfolder storage
    location to ~/.evolution/mail/vfolder rather than
    ~/.evolution/mail (this is currently unused anyway).
    (uri_is_ignore): short-circuit exit if we find a match.
    (mail_vfolder_add_uri): dont exit immediately if we have a vfolder
    uri, but don't add it to local/remove either.
    (mail_vfolder_delete_uri): remove any uri from the local/remote
    source list while we're at it.

2004-01-19  Not Zed  <NotZed@Ximian.com>

    * em-folder-view.c (emfv_on_url_cb): properly decode the mailto
    url rather than treating it as a simple string.

    * em-format-html.c (efh_format_address): if we have a name part,
    add it to the mailto part.  As per rfc2368.  So it isn't lost for
    clicking/etc.

2004-01-16  JP Rosevear <jpr@ximian.com>

    * em-format-html-display.c (efhd_bonobo_object): pass in an
    exception to use

2004-01-16  Jeffrey Stedfast  <fejj@ximian.com>

    * em-format-html.c (efh_format_address): Dump a struct
    _camel_header_address to an html string.
    (efh_format_header): Use efh_format_address() and set the
    EM_FORMAT_HTML_HEADER_HTML bit on the flags so we don't re-convert
    our html string into html.

    * mail-vfolder.c (mail_vfolder_rename_uri): s/g_fre/g_free/

    * em-utils.c (guess_account): Change 'tmp' to not be const - fixes
    a compile warning.
    (em_utils_expunge_folder): Cast parent to a GtkWindow.
    (em_utils_empty_trash): Same.

    * em-migrate.c (cp): Oops, still need to stat() the src file so we
    can report what percentage of the file has been completed so far
    and also so we don't quit copying until we've copied the whole
    file.

    * message-list.c (message_list_set_folder): Move
    'message_list->folder = folder;' out of the uri compare if-block
    and move it into the if-block that tests that folder != NULL.
    (regen_list_regen): Abort if the regen folder is not the same as
    the ml->folder.

2004-01-16  Not Zed  <NotZed@Ximian.com>

    * mail-folder-cache.c (storeinfo_find_folder_info): change this to
    check the store using the provider url_cmp and just lookup the
    folder name directly.  folder_compare can't be used for uri's,
    this stuff was so broken, my fault :(

    ** See bug #52467.

    * em-folder-tree-model.c (sort_cb): handle null path (root?).

    * mail-vfolder.c (mail_vfolder_add_uri): map uri to euri before
    processing.
    (rule_changed): map uri to camel uri before looking up.
    (mail_vfolder_delete_uri): handle as euri internally.
    (mail_vfolder_rename_uri): "

    * mail-autofilter.c (vfolder_rule_from_message): map camel uri to
    euri before setting as vfolder source.

2004-01-16  Not Zed  <NotZed@Ximian.com>

    * default/C/Inbox: 
    * default/C/Makefile.am: 
    * default/Makefile.am: Startup files/folders.

    * em-migrate.c (emm_setup_initial): initial implementation of
    startup setup.

    ** See bug #52896.

    * em-format-html-display.c (efhd_html_button_press_event): do this
    based on get_object_at rather than get_point_at, so we get the
    offset properly.

2004-01-15  Jeffrey Stedfast  <fejj@ximian.com>

    * mail-vfolder.c: Make vfolder_store 'global'.

    * em-folder-tree-model.c (sort_cb): Fix bug #12600 by not sorting
    VFolders (ie. show them in the same order they appear in the
    editor).

    Fixes bug #52888
    
    * em-folder-tree-model.c (sort_cb): New sort function for the
    folder-tree.
    (em_folder_tree_model_init): Set the default sort func.
    (em_folder_tree_model_new): Set the default sort column.

    * em-folder-browser.c (emfb_list_built): Don't select the first
    unread mesg in the case where no mesg was previously
    selected. Fixes bug #52887 until we are able to add a user
    preference (for 2.2?).

    * em-migrate.c (cp): Only abort the copy if the dest folder both
    exists and contains data. Fixes bug #52880.
    (em_migrate): Abort if config.xmldb cannot be loaded. Fixes bug
    #52886.

2004-01-15  Rodrigo Moya <rodrigo@ximian.com>

    * em-folder-browser.c: removed ForgetPasswords verb.
    (emfb_forget_passwords): removed.

2004-01-15  Not Zed  <NotZed@Ximian.com>

    ** See bug #52891.

    * em-format-html.c (em_format_html_get_type): protect against http
    cache not being able to be created.

    ** See bug #52878.

    * em-folder-view.c (emfv_finalise): unhook message_changed too.
    (emfv_set_folder): hook/unhook message_changed too.
    (emfv_message_changed): implement, proxy to folder_changed.

2004-01-15  Not Zed  <NotZed@Ximian.com>

    ** See bugs #51609 and #43515.

    * em-format-html-display.c (efhd_format_prefix): output flag for
    followup details above the message.
    (efhd_write_image): added to output icon data.

    * em-format-html.c (efh_format_do): call format_prefix before
    outputting the message in normal display mode.

    * em-format.c (emf_format_prefix): method called to format data
    before the first message output.  Default impl == noop.

2004-01-14  Jeremy Katz  <katzj@redhat.com>

    * evolution-mail.schemas.in.in: Add a description for 
    /apps/evolution/mail/junk/sa/local_only.

2004-01-14  Jeffrey Stedfast  <fejj@ximian.com>

    * em-migrate.c: Split out the remapping code into
    e-util/e-bconf-map.[c,h] to be shared among components.

2004-01-13  Ross Burton  <ross@burtonini.com>

    * em-folder-browser.c (emfb_empty_trash):
    Pass the parent window, fixing a crasher.  Bug #52161.

2004-01-14  Not Zed  <NotZed@Ximian.com>

    ** See bug 51660.
    
    * em-format-html-quote.c (efhq_multipart_related): setup part_id
    appropriately.

    * em-format-html-display.c (efhd_output_secure): use part_id in
    classid, and add .signed to part_id for subpart.
    (efhd_bonobo_unknown): use part_id in classid.
    (efhd_format_attachment): use part_id in classid's.

    * em-format-html.c (efh_multipart_related)
    (emfh_multipart_related_check): setup part_id for each subpart.
    (efh_output_secure): as above, and use the part_id for the
    classid.
    (em_format_html_add_pobject): use part_id for a generated classid.
    (efh_text_plain): setup pseudo-parts into part_id.

    * em-format.c (emf_format_clone): setup the part_id base, folder +
    uid.
    (emf_finalise): free the part_id gstring.
    (emf_init): allocate the part_id gstring.
    (em_format_add_puri): build the cid from the part_id rather than
    an arbitrary number, so it is more persistent.  Also save the
    part_id in the puri for multipart/related use.
    (emf_multipart_mixed, emf_multipart_alternative)
    (emf_multipart_appledouble, emf_multipart_encrypted)
    (emf_multipart_related, emf_multipart_signed): Set the part_id for
    each subpart.
    (emf_clear_puri_node): free part_id.

2004-01-13  Not Zed  <NotZed@Ximian.com>

    ** See bug 51660.

    * em-format-html-print.c (em_format_html_print_print): dont take
    message, get the message from the source formatter.

    * em-format.c (emf_format_clone): Added folder and uid parameters,
    changed camelmedium to a mimemessage.

    * em-format-html-display.c (efhd_attachment_button): check the
    icon image cache and if the image is there use it.

    * em-icon-stream.c (em_icon_stream_get_image): api to lookup
    finished images in cache.
    (em_icon_stream_new): add a cache key arg.
    (emis_sync_close): store the image in the cache once its
    completed.

2004-01-13  Jeffrey Stedfast  <fejj@ximian.com>

    * em-migrate.c (em_migrate): Handle upgrading from 1.0.x and 1.2.x
    (code basically moved verbatim from e_config_upgrade).

    * mail-component.c (impl_upgradeFromVersion): Move all the
    major/minor/revision logic into em_migrate().

2004-01-12  Meilof Veeningen  <meilof@wanadoo.nl>

    * em-composer-utils.c: support for posting both to mail and to
    (multiple) folders

    * em-folder-browser.c: use em_utils_post_to_folder (works with NNTP)

    * em-folder-selection-button.[ch]: added multiple selection mode

    * em-folder-selector.[ch]: idem

    * em-folder-tree.[ch]: added multiple selection mode, no longer show
    disabled accounts

    * em-utils.c: various changes to allow posting to (multiple) folders

    * em-subscribe-editor.c: double-clicking a node in the editor updates
    it directly

    * mail-ops.c: for appending messages, set the "X-Mailer" header

2004-01-12  Radek Doulik  <rodo@ximian.com>

    * em-junk-filter.c (em_junk_sa_check_junk): use
    mail_session_get_sa_use_daemon

    * mail-session.c: added SA prefs
    (mail_session_get_sa_local_only): new helper method
    (mail_session_set_sa_local_only): ditto
    (mail_session_get_sa_use_daemon): ditto
    (mail_session_set_sa_use_daemon): ditto
    (mail_session_check_junk_notify): fix the key comparison
    (mail_session_init): add gconf dir so that we get notified

    * mail-config.glade: added SA preferences

    * em-mailer-prefs.c (em_mailer_prefs_construct): added more junk
    prefs
    (em_mailer_prefs_apply): ditto

    * em-junk-filter.c: use preferences

2004-01-12  Larry Ewing  <lewing@ximian.com>

    * GNOME_Evolution_Mail.server.in.in: fix up the controls factory
    location.

    * mail-component.c (mail_control_new): add new interface for
    getting a mail control with a folder_uri property bag.
    (get_prop): pbag get method.
    (set_prop): pbag set method.

2004-01-11  Jeffrey Stedfast  <fejj@ximian.com>

    * em-migrate.c (cp): Don't O_TRUNC the dest file, instead use
    O_EXCL and don't do anything if the dest file already exists (this
    way we don't re-migrate an mbox or corrupt any summary/ibex/meta
    files).

2004-01-12  Not Zed  <NotZed@Ximian.com>

    ** See bug 52737.

    * em-format-html.c (efh_text_plain): treat text/* as inline
    content from the made-up multipart.

2004-01-09  Not Zed  <NotZed@Ximian.com>

    ** See bug 52696.
    
    * mail-component.c (setup_search_context): move the searches to
    ~/.evolution/mail/searches.xml (migration?).
    (setup_search_context): fix a merge error,
    vfoldertypes.xml->searchtypes.xml since it includes the system
    searches now.

2004-01-09  Not Zed  <NotZed@Ximian.com>

    * em-folder-tree.c (emft_popup_properties_got_folder): add total +
    unread counts to properties page.

    * em-utils.c (filter_editor_response):
    * mail-vfolder.c (vfolder_editor_response): change for rule editor
    changes, ACCEPT->OK.

2004-01-09  Not Zed  <NotZed@Ximian.com>

    * em-format.c (em_format_format_text): keep the windows charset
    filter around until we're done since if we set it up we reference
    its memory.  Causes warnings and breaks message display.

    ** See bug #52637.
    
    * em-inline-filter.c (em_inline_filter_new): added a content-type
    paramter for the base content type.
    (em_inline_filter_finalize): free base content type.
    (emif_types[]): Added 'plain' parameter, indicates type needs
    plain parameters set on content type.
    (emif_add_part): inherit the full base type if it is set, for
    plain parts.

    * em-format-html.c (efh_text_plain): pass the part's content-type
    to the inline filter.

2004-01-08  Not Zed  <NotZed@Ximian.com>

    ** See bug #50786
    
    * GNOME_Evolution_Mail.server.in.in: Remove :: from startup wizard
    iid, and put the mail wizard into the right factory.

    * mail-component.c (impl_requestCreateItem, impl_handleURI): 
    * em-folder-browser.c (emfb_mail_compose): check we have an
    account before trying to send mail.

2004-01-07  Jeffrey Stedfast  <fejj@ximian.com>

    * mail-component.c (mail_component_init): Don't migrate stuff here
    anymore.

    * mail-ops.c (uid_cachename_hack): Removed a hack that checked for
    the really old uid cache location and make the uid cache live in a
    better location (why have mail/pop/<account> and
    mail/pop3/cache-<account>? simply put the cache file in
    mail/pop/<account>/uid-cache).

    * em-migrate.c (em_migrate_dir): When copying over mbox folders,
    don't abort if we fail to copy over a summary file (big
    whoop). Also, if indexing was turned on in the evolution 1.4
    version of the folder, turn on indexing for that folder in the
    migrated mbox folder as well.
    (em_migrate_pop_uid_caches): Migrate the pop3 uid-cache
    files. Fixes bug #52464.
    (em_migrate): Call em_migrate_pop_uid_caches().

    * em-format-html.c (efh_format_address): Removed.
    (efh_format_header): Handle address formatting a little
    differently to address dwmw's complaints. Also now handles other
    headers such as Resent-* and Sender as well.

2004-01-07  Radek Doulik  <rodo@ximian.com>

    * em-message-browser.c (emmb_init): as below

    * em-folder-browser.c (emfb_init): always show vertical scrollbar,
    we do the same for message list and it avoids ugly flicker

2004-01-06  Jeffrey Stedfast  <fejj@ximian.com>

    * em-message-browser.c (emmb_set_message): Protect against a NULL
    message-info. Afaik, this can only happen if the message has since
    been removed? Might be a larger problem here... Anyways, fixes the
    crash in bug #52297.

2004-01-05  Jeffrey Stedfast  <fejj@ximian.com>

    * em-folder-tree-model.c (folder_renamed_cb): Clone the
    CamelRenameInfo and ref the store before emitting the async event.
    (folder_deleted_cb): Same idea but for CamelFolderInfo's.
    (folder_created_cb): Here too.
    (folder_subscribed_cb): Same.
    (folder_unsubscribed_cb): And here.
    (folder_renamed): Split out from folder_rename_cb(), free the
    CamelRenameInfo and unref the store when done.
    (folder_unsubscribed): Same idea.
    (folder_subscribed): Same.

2004-01-05  Radek Doulik  <rodo@ximian.com>

    * em-junk-filter.c: add NULL at the end of argv for execvp (poited
    out by Frank Solensky, thanks)

2004-01-05  Jeffrey Stedfast  <fejj@ximian.com>

    * em-folder-browser.c (emfb_list_message_selected): Check that the
    folder isn't NULL (ie. no folder is selected). Fixes bug #52207.

    * message-list.c (message_list_set_folder): Remove the
    cursor-activated idle callback.

    * mail-send-recv.c (build_dialog): Set the send/recv dialog to
    non-modal. Fixes bug #50127.

    * em-folder-tree-model.c (folder_subscribed_cb): If we aren't in
    the main thread, proxy it over to the main thread.
    (folder_unsubscribed_cb): Same.
    (folder_created_cb): Here too.
    (folder_deleted_cb): And here.
    (folder_renamed_cb): Again here.

    * em-folder-view.c (emfv_set_folder_uri): Pass mail_thread_queued
    to mail_get_folder() instead of mail_thread_new so that we
    eliminate a race when switching folders in the UI.

2004-01-05  Not Zed  <NotZed@Ximian.com>

    ** See bug #50996.

    * em-format-html-display.c (efhd_find_handler): implement override
    for unknown types, try bonobo handlers.
    (efhd_bonobo_unknown): formathandler for bonobo objects.

    * em-format.c (em_format_find_handler): make virtual, rename to
    emf_find_handler.

2004-01-04  ERDI Gergo  <cactus@cactus.rulez.org>

    * em-folder-view.c (emfv_on_url_cb): Emit a hover-url signal when
    the user mouses over a URL, ...
    (emfv_hover_url_impl): ... and use BonoboUI to change the status
    bar message...
    (em_folder_view_set_statusbar): ... unless we are asked not to, ...

    * mail-component.c (impl_createControls): ... like in the case of
    the mail component, ...
    (view_hover_url_cb): ... that uses the ActivityHandler to do the
    same

    Add these together, and #127536 is neatly solved.

2004-01-04  David Woodhouse  <dwmw2@infradead.org>

    * em-format-html-display.c: Mail warning grammar typo fix.

2003-12-22  David Moore  <davmre@bellsouth.net>

    * em-popup.c (emp_part_popup_set_background): Implemented; sets an 
    image attachment as the GNOME wallpaper.

    * em-utils.c (emu_save_part_done): Created a prototype at the top
    of the file.
    (em_utils_save_part_to_file): Added; save a message part to a
    specified file on disk.
 
2003-12-18  Rodney Dawes  <dobey@ximian.com>

    * em-message-browser.c (emmb_init): Merge in
    evolution-mail-message-display.xml first, since it is the parent UI
    XML, really fixes bug #49949

2003-12-16  JP Rosevear  <jpr@ximian.com>

    * em-format-html-display.c: #ifdef out certain code pieces if
    s/mime isn't supported

2003-12-14  JP Rosevear <jpr@ximian.com>

    * em-folder-tree.c (emft_tree_row_collapsed): Fix erroneous
    function call

    Fixes #52120
    
2003-12-12  Not Zed  <NotZed@Ximian.com>

    * mail-config.c (config_write_style): put the style in .evolution.

    ** See bug #52023.

    * message-list.c (message_list_select_uid): noop if we've been
    destroyed (foldre == NULL).

    ** See bug #52108.

    * em-format.c (em_format_is_attachment): also recognise
    application/pkcs7-mime for mailers who like to make up their own
    standards.

    * em-format-html.c (type_builtin_table[]): *
    em-format-html-display.c (type_builtin_table[]): make recognise
    application/pkcs7-mime too.

2003-12-11  Chris Toshok  <toshok@ximian.com>

    * Makefile.am (INCLUDES): get the build moving again.  add
    CERT_UI_CFLAGS here for the time being.

2003-12-11  Jeffrey Stedfast  <fejj@ximian.com>

    Fixes bug #1717.

    * em-folder-browser.c (emfb_list_built): If we have a uid to
    select, select that instead of selecting the first unread.
    (emfb_set_folder): CamelObject::meta_get() actually returns a
    strdup'd buffer, so we need to free it. Get the last selected uid
    and set that up as the uid to select when the message-list
    finishes building.
    (emfb_list_message_selected): Save the selected uid.
    (emfb_init): Connect to the message-list's message_selected signal
    so that we can save selected state (don't want to do this in
    EMFolderView or MessageList because we don't want the state to be
    saved for the EMMessageBrowser).

2003-12-11  Jeffrey Stedfast  <fejj@ximian.com>

    * em-folder-tree.c: Shorten the namespace of some internal
    functions to just emft.
    (emft_popup_delete_rec): Don't delete the contents of a folder if
    it is a vFolder. Fixes bug #52029.

    * em-mailer-prefs.c (em_mailer_prefs_construct): Use newv() here
    and pass an array of GTypes - makes it simpler to change the order
    of columns later and/or add new columns if we need to. Also makes
    the line shorter :-)

2003-12-11  Grahame Bowland  <grahame@angrygoats.net>

    * em-format-html.c (efh_format_header): display 
    x-evolution-mailer pseudo header irrespective of 
    xmailer_mask. This is now handled by a header 
    configuration dialog.

    * mail-config.glade: add tab to mail configuration 
    dialog to allow custom headers to be specified for 
    display.

    * em-mailer-prefs.h: modify struct _EMMailerPrefs to 
    add widgets for custom header tab. Add defines for custom 
    header flags. Add struct EMMailerCustomHeader to describe
    custom headers, and add function 
    em_mailer_custom_headers_from_xml to allow XML from gconf 
    key to be parsed into this structure.

    * em-folder-view.c (emfv_setting_notify): catch changes to 
    custom header gconf key and update mail view to correspond

    * em-mailer-prefs.c (em_mailer_prefs_apply): save custom 
    headers to gconf
    (header_list_enabled_toggled): toggle clicked toggle column
    (add_header): add header to custom header list if valid
    (remove_header): remove selected custom header
    (is_valid_header): return true if passed header is valid, 
    otherwise false
    (entry_header_changed): call add_header_update_sensitivity
    (em_mailer_prefs_construct): initialise header selection tab. 
    Load gconf data for header selection dialog.
    (em_mailer_custom_header_to_xml): load a header structure 
    from XML document structure
    (em_mailer_custom_header_from_xml): load a header 
    structure from a string containing valid XML. if any failure, 
    the header.name is set to NULL.
    (header_list_row_selected): call 
    remove_header_update_sensitivity
    (remove_header_update_sensitivity): set the sensitivity of 
    the remove button to FALSE if the list is empty or nothing 
    is selected. Otherwise, set it to TRUE.
    (add_header_update_sensitivity): set the sensitivity of the 
    the add button to FALSE if the entry box is empty, contains 
    a duplicate header, or contains an invalid header. Otherwise, 
    set it to TRUE.

    * evolution-mail.schemas.in.in: add mail/display/headers 

2003-12-10  Larry Ewing  <lewing@ximian.com>

    * em-format-html.c: add text/x-patch as a plain type.
    (efh_text_enriched): add table around the enriched part so it
    matches html and text modes.

2003-12-10  Jeffrey Stedfast  <fejj@ximian.com>

    * em-migrate.c (em_migrate_dir): Modified to simply copy mbox
    files from one place to another (and the summary files) rather
    than going thru camel so as to bypass the need for parsing MIME.

2003-12-10  Jeffrey Stedfast  <fejj@ximian.com>

    * em-migrate.c (get_local_store): Fixed a leak.

    * mail-component.c (impl_upgradeFromVersion): Implemented.

    * em-folder-tree.c (em_folder_tree_set_selected): Add INFO_FAST
    here as we don't need it to get unread counts.
    (tree_row_expanded): Here too.

    * em-folder-tree-model.c (em_folder_tree_model_set_folder_info):
    Check CAMEL_FOLDER_NOCHILDREN.

2003-12-10  Jeffrey Stedfast  <fejj@ximian.com>

    Fixes bug #51045

    * mail-folder-cache.c (real_flush_updates): Update the unread
    count in the model if the folder got new mail.

    * em-folder-selection.c (em_select_folder): Updated.

    * em-folder-selection-button.c
    (em_folder_selection_button_clicked): Updated.

    * em-folder-tree-model.c (em_folder_tree_model_set_unread_count):
    New function to update the unread count for a folder.

    * mail-component.c (mail_component_peek_tree_model): Don't ref the
    model. Also renamed s/get/peek/

2003-12-10  Not Zed  <NotZed@Ximian.com>

    * em-folder-tree.c (em_folder_tree_get_folder_info__got): check
    m->fi != NULL before dereferencing it.

2003-12-10  Not Zed  <NotZed@Ximian.com>

    * em-format-html-display.c (efhd_multipart_signed):
    * em-format-html.c (efh_multipart_signed): 
    * em-format.c (emf_multipart_signed): treat
    application/pkcs7-signature as application/x-pkcs-signature.
    Stupud non-rfc-compliant mailers from apple.  Bug #51750.

    * em-folder-selection.c (em_select_folder): rewritten to get rid
    of hte old crap that should've been gotten rid of before.  Bug
    #51602.
    (em_folder_selection_run_dialog_uri): removed.
    (em_folder_selection_run_dialog): removed.  this file is gutted
    and should probably be removed.

    * em-folder-selector.h: use a POSITIVE value for the response
    value, gtk uses -ative ones.  Bug #51752.

    * Makefile.am (INCLUDES): added smime/lib and smime/gui to
    includes.

    * em-folder-tree.c (emft_popup_rename_folder): removed unused 'why',
    why not?

    * em-format-html-display.c (efhd_xpkcs7mime_validity_clicked):
    setup a table of buttons to view any certs we have.

    * em-folder-browser.c (emfb_activate): separeate view_menu
    unreffing from view_instance.  fixes a runtime warning.

    ** See bug #51718.

    * mail-component.c (em_uri_to_camel): handle an e-uri which has an
    account uid which isn't in user@host format.

2003-12-09  Not Zed  <NotZed@Ximian.com>

    ** See bug #51899.

    * em-folder-tree-model.c (em_folder_tree_model_set_folder_info):
    CAMEL_FOLDER_CHILDREN is only advisory, some servers don't give it
    to you.

2003-12-06  JP Rosevear <jpr@ximian.com>

    * Makefile.am: Remove hard coded disable deprecated flags
    
2003-12-05  Rodney Dawes  <dobey@ximian.com>

    * em-folder-tree.c (render_display_name): Remove the extra || unread
    check in the conditional in the g_object_set () call

2003-12-05  Rodney Dawes  <dobey@ximian.com>

    Fixes bug #51482
    
    * em-folder-tree.c (render_display_name): Don't hardcode colors
    for the folder tree, instead use bold for unread, as in 1.4

2003-12-05  Radek Doulik  <rodo@ximian.com>

    * em-html-stream.c (emhs_sync_flush): use new gtk_html_flush
    method instead of forcing processing of all gtk events

2003-12-04  Jeffrey Stedfast  <fejj@ximian.com>

    * em-folder-tree-model.c (em_folder_tree_model_remove_folders):
    Make sure folder_path is non-NULL ("Loading..." nodes will have a
    NULL path). Fixes bug #51731.

2003-12-04  Jeffrey Stedfast  <fejj@ximian.com>

    * mail-ops.c (empty_trash_empty): Get the proper local folders
    store uri (it's not file:/ anymore). Fixes bug #51618.

2003-12-04  Jeffrey Stedfast  <fejj@ximian.com>

    Fixes bug #51605.

    * em-folder-selector.c (emfs_response): Handle creating a new
    folder (pop up a create-folder-selector dialog).

    * em-folder-tree.c (emft_popup_new_folder_response): Moved all the
    logic into em_folder_tree_create_folder().
    (em_folder_tree_create_folder): New function to create a folder.

2003-12-04  Radek Doulik  <rodo@ximian.com>

    * em-junk-filter.c (pipe_to_sa): add new err_retval parameter,
    which specifies which value to return if something went wrong
    (like failed to exec, ...). update all calls by that. actual junk
    check has err_retval = 0 to avoid marking false spam - non-zero
    retval means junk.

    * em-folder-view.c: set junk toolbar buttons pixmaps

    * mail-session.c: monitor gconf key
    /apps/evolution/mail/junk/check_incoming and keep session junk
    flag uptodate

    * em-mailer-prefs.c (em_mailer_prefs_construct): added junk
    preferences

2003-12-03  Jeffrey Stedfast  <fejj@ximian.com>

    * mail-config.c (uri_to_evname): Updated to add use mail subdirs.
    (mail_config_uri_renamed): Updated cachenames[]
    (mail_config_folder_to_cachename): Fixed to use the correct path.

    * em-folder-browser.c (emfb_create_view_menus): Updated the
    galview path to point to the evo-1.5 location.
    (emfb_set_folder): Update the galview view_instance.
    (emfb_create_view_instance): Split out from
    emfb_create_view_menus()
    (emfb_create_view_menus): Reduced code, call
    emfb_create_view_instance().

    * em-folder-selector.c (emfs_create_name_activate): Emit the OK
    response, not the CREATE_NEW response. Also,
    g_signal_emit_by_name() does not take a GQuark detail argument, so
    don't pass one. Fixes bug #51661.

2003-12-03  Jeffrey Stedfast  <fejj@ximian.com>

    * em-folder-view.c (emfv_set_folder): Sync the folder before
    replacing it with the new folder.

    * em-folder-tree.c (em_folder_tree_set_selected): Need to prepend
    a "/" to path if the path is the url fragment. Also fixed to
    select the store node if path == "/".
    (emft_popup_rename_folder): Set oldpath and newpath to the proper
    values. Fixes bug #51656.

    * em-folder-selector.c (em_folder_selector_get_selected_uri):
    Fixed a FIXME by using the CamelProvider url flags to determine if
    the url used url->fragment or url->path as the folder path.
    (em_folder_selector_get_selected_path): Don't allow path strings
    to start with "//".

2003-12-03  JP Rosevear <jpr@ximian.com>

    * em-folder-tree.c (em_folder_tree_destroy): remove the source
    before saving 

2003-12-03  Jeffrey Stedfast  <fejj@ximian.com>

    * em-folder-tree.c (em_folder_tree_save_state): Set the
    save_state_id to 0 or we will never get a chance to run again.

2003-12-03  Ettore Perazzoli  <ettore@ximian.com>

    * mail-vfolder.c: Do not #include "evolution-shell-component.h".

    * Makefile.am (libevolution_mail_la_SOURCES): Don't compile
    mail-importer.[ch] for now.

    * mail-component-factory.c: Do not #include
    <evolution-shell-client.h>.
    * mail-config.c: Likewise.

    * mail-vfolder.h: Do not #include <evolution-storage.h> or
    <evolution-shell-component.h>.

    * mail.h: Do not #include <evolution-storage.h>.

    * mail-ops.h: Do not #include <evolution-storage.h>.
    (mail_scan_subfolders): Remove prototype.
    (mail_update_subfolders): Likewise.

2003-12-03  JP Rosevear <jpr@ximian.com>

    * em-folder-tree.c (em_folder_tree_destroy): save the state
    immediately if there is a timeout set
    (em_folder_tree_save_state): be true GSourceFunc and just return
    FALSE to remove the source

2003-12-03  Not Zed  <NotZed@Ximian.com>

    * mail-autofilter.c (rule_match_thread): changed to setup the rule
    part properly, it could never have worked.  Bug #51601.

    * em-popup.c (emp_uri_popup_address_add): implement.

    * em-folder-view.c (emfv_popup_add_sender): implement.
    (emfv_add_sender_addressbook): hook up to above func.

    * em-utils.c (em_utils_add_address): implementation to add an
    email address to the addressbook.
    (emu_add_address_cb): callback required for funny api.  Bug
    #51321.

2003-12-02  Jeffrey Stedfast  <fejj@ximian.com>

    * em-folder-tree-model.c (drop_uid_list): Moved here.
    (drop_folder): Moved here.
    (import_message_rfc822): Moved here.
    (drop_message_rfc822): Moved here.
    (drop_text_uri_list): Moved here.
    (model_drag_data_received): Moved the logic from em-folder-tree.c
    into here.
    (model_row_drop_possible): Same.
    (model_row_draggable): Same.
    (drag_text_uri_list): Moved here.
    (model_drag_data_get): Moved logic here.
    (model_drag_data_delete): Moved logic here.

    * em-folder-tree.c (drag_data_get_cb): Pass the full_name to
    camel_store_get_folder() rather than the path.
    (drag_data_received_cb): Same.
    (drop_uid_list): Removed.
    (drop_folder): Removed.
    (import_message_rfc822): Removed.
    (drop_message_rfc822): Removed.
    (drop_text_uri_list): Removed.
    (drag_data_received_cb): Removed.
    (row_drop_possible_cb): Removed.
    (row_draggable_cb): Removed.
    (drag_text_uri_list): Removed.
    (drag_data_get_cb): Removed.
    (drag_data_delete_cb): Removed.
    (em_folder_tree_enable_drag_and_drop): Don't connect to any of the
    drag & drop signals, they don't exist anymore.

    * mail-component.c (impl_createControls): Enable drag-and-drop.

    * em-folder-tree.c (em_folder_tree_new_with_model): Connect to the
    loading row signal.
    (loading_row_cb): Expand the path if needed.
    (em_folder_tree_destroy): Disconnect from the loading-row signal.
    (em_folder_tree_enable_drag_and_drop): New function to enable
    drag-and-drop.
    (em_folder_tree_new): Remove drag-and-drop setup code.

    * em-folder-tree-model.c (em_folder_tree_model_class_init): Define
    the loading-row signal.
    (em_folder_tree_model_set_folder_info): emit the loading-row signal.

2003-12-02  Jeffrey Stedfast  <fejj@ximian.com>

    * em-folder-tree.c (em_folder_tree_new): Fixed to pass the
    evolution dir into em_folder_tree_model_new().
    (model_save_state): Removed.
    (em_folder_tree_save_state): Moved all the saving logic into
    em_folder_tree_model_save_expanded().

    * em-folder-tree-model.c (em_folder_tree_model_new): Load the
    expanded state off disk.
    (em_folder_tree_model_save_expanded): New function to save
    expanded state.
    (em_folder_tree_model_get_expanded): new function to get if a node
    should be expanded.
    (em_folder_tree_model_set_expanded): new function to set the
    expanded state of a node.

    * mail-component.c (mail_component_init): Pass the evo dir to
    em_folder_tree_model_new() which now requires it.

2003-12-02  Rodney Dawes  <dobey@ximian.com>

    * Makefile.am: Version the schemas
    * evolution-mail.schemas: Removed
    * evolution-mail.schemas.in.in: Added

2003-12-02  Not Zed  <NotZed@Ximian.com>

    * mail-config-druid.c (mail_config_druid_new): moved the
    gtk_widget_show_all to before we add the pages, otherwise it can
    override per-page logic.  Bug #50790.

    * message-list.c (message_list_create_extras): setup another image
    (followup completed) to flag status list.
    (states_pixmaps[]): added flag_for_followup_done.
    (ml_tree_value_at): return 0,1 or 2 for completed icon.  also use
    the real ints, these shouldn't have been true/false.  Bug #43514.

    * evolution-mail.schemas: Added empty_trash prompt key.

    * em-utils.c (em_utils_prompt_user): changed to take the gconf
    'prompt again' key directly.  Fixed callers.
    (em_utils_expunge_folder): prompt the user with an expunge
    specific message.
    (em_utils_empty_trash): have an empty-trash specific message for
    prompting confirm.
    (emu_confirm_expunge): removed, no longer needed.  Bug #38613.
    (em_utils_expunge_folder): remove most line feeds, let the label
    wrap them.
    (em_utils_empty_trash): ditto.

    * em-subscribe-editor.c (sub_folder_subscribed): update the ui
    selection state after we're done.  maybe we should listen on the
    model but this is easier.  Bug #50861.

    * em-message-browser.c (emmb_activate): hook up our own verb list.
    (emmb_message_verbs[], emmb_close): implement the close verb.
    Bug #51558.

    * em-format-html-display.c (efhd_attachment_popup): duh, actually
    add the menu list we create.  Bug #49902.

    * em-format.c (d): turn off debug, committed by accident.

2003-12-01  Ettore Perazzoli  <ettore@ximian.com>

    * mail-mt.c (do_op_status): Use data->activity_id, not local
    activity_id.

2003-12-01  Ettore Perazzoli  <ettore@ximian.com>

    * mail-mt.c (struct _mail_msg_priv): Remove member "activity".
    (mail_operation_status): Un-#if 0 the code.

    * mail-component.c (struct _MailComponentPrivate): New member
    activity_handler.
    (mail_component_init): Initialize.
    (impl_dispose): Unref.
    (mail_component_peek_activity_handler): New.
    (impl_createControls): Create an ETaskBar, attach it to the
    ActivityHandler, and return it to the caller as the statusbar
    control.

2003-12-01  Ettore Perazzoli  <ettore@ximian.com>

    * mail-component.c (impl_createControls): Pass a label for the
    status bar control for now.

2003-12-01  Jeffrey Stedfast  <fejj@ximian.com>

    * mail-config.c (mail_config_signature_run_script): Use fcntl() to
    set FD_CLOEXEC on each fd rather than close()ing it. Apparently
    Linux's older pthread implementations use sockets and so this
    fouls threading up. GO LINUX! GO!

2003-12-01  Rodney Dawes  <dobey@ximian.com>

    * GNOME_Evlution_Mail.server.in.in:
    * em-account-prefs.c:
    * em-composer-prefs.c:
    * em-mailer-prefs.h:
    * mail-component-factory.c:
    * mail-config-factory.c:
    * mail-font-prefs.h:
    * importers/*.server.in.in:
    * importers/elm-importer.c:
    * importers/evolution-mbox-importer.c:
    * importers/evolution-outlook-importer.c:
    * importers/netscape-importer.c:
    * importers/pine-importer.c: Use BASE_VERSION for repo_ids and OAFIIDs

2003-12-01  Jeffrey Stedfast  <fejj@ximian.com>

    * em-folder-tree.c (em_folder_tree_get_folder_info__got): Updated
    to call em_folder_tree_model_set_folder_info().
    (folder_subscribed_cb): Removed.
    (folder_unsubscribed_cb): Removed.
    (folder_created_cb): Removed.
    (folder_deleted_cb): Removed.
    (folder_renamed_cb): Removed.

    * em-folder-tree-model.c (em_folder_tree_store_set_folder_info):
    New function to replace tree_store_set_folder_info() which had
    been in em-folder-tree.c
    (em_folder_tree_model_remove_uri): Made private.
    (em_folder_tree_model_remove_store_info): Made private.
    (em_folder_tree_model_remove_folders): New function to replace
    remove_folders() from em-folder-tree.c
    (em_folder_tree_model_new): No longer takes any args.

    * em-folder-tree.c (em_folder_tree_new): Updated.

    * mail-component.c (add_store): Add the store to the model rather
    than the treeview.
    (impl_createControls): create a new treeview based on the
    already-instantiated model.
    (mail_component_init): Create a new tree model.
    (mail_component_remove_store): Remove the store from the model
    directly.
    (mail_component_get_tree_model): Updated.

    * em-folder-tree.c (folder_unsubscribed_cb): Call
    em_folder_tree_model_remove_folders() rather than the deprecated
    internal remove_folders() function.
    (folder_renamed_cb): Same.
    (em_folder_tree_remove_store): Removed.
    (em_folder_tree_add_store): Removed.
    (remove_folders): Removed.

2003-12-01  Jeffrey Stedfast  <fejj@ximian.com>

    * em-composer-utils.c (composer_get_message): rfc2047 encode the
    Organization header value.

    * em-folder-tree.c (em_folder_tree_get_folder_info__got): Make
    sure our parent folder hasn't been unsubscribed or else we get a
    segfault here if it has.

03-11-28  Dave Camp  <dave@ximian.com>

    * em-folder-tree.c (render_pixbuf): Set the pixbuf renderer
    invisible for stores.

2003-11-25  Jeffrey Stedfast  <fejj@ximian.com>

    * mail-config.c (mail_config_get_account_by_uid): New function.

    * em-folder-tree.c (tree_store_set_folder_info): Expand the tree
    node if the saved state tells us it was expanded the previous
    session.
    (em_folder_tree_load_state): Load the saved state.
    (em_folder_tree_add_store): Conditionally expand the store node.
    (em_folder_tree_new_with_model): Expand all the nodes that should
    be expanded.

2003-12-01  Radek Doulik  <rodo@ximian.com>

    * em-folder-tree.c (render_pixbuf): use CAMEL_VTRASH_NAME,
    CAMEL_VJUNK_NAME

2003-11-28  Radek Doulik  <rodo@ximian.com>

    * em-folder-tree.c (render_pixbuf): added junk icon to folder
    icons

2003-12-01  Not Zed  <NotZed@Ximian.com>

    * em-folder-browser.c (emfb_edit_cut, emfb_edit_copy)
    (emfb_edit_paste): override the em-folder-view impl, and handle
    the search bar properly.  For #48746.

    * mail-security.glade: added some padding to the security details
    frames.

    * em-format-html-display.c (efhd_xpkcs7mime_validity_clicked):
    some cosmetic layout changes.

2003-11-27  Charles Zhang  <charles.zhang@sun.com>

    * mail-account-editor.c (construct): connect "changed" signal.
    (mail_account_editor_changed): change signal handler.
    Fixes bug #48998.

2003-11-30  Ettore Perazzoli  <ettore@ximian.com>

    * mail-offline-handler.c: Remove all the syncFolder stuff since
    it's not in the Component interface anymore.

    * mail-mt.c: Remove declaration for global_shell_client.  #if 0
    all the code that uses that.

    * mail-component-factory.c: Remove declaration for
    global_shell_client.

    * mail-vfolder.c: Remove declaration for global_shell_client.

2003-11-26  JP Rosevear  <jpr@ximian.com>

    * Makefile.am: turn on deprecated Gtk stuff

2003-11-24  Jeffrey Stedfast  <fejj@ximian.com>

    * em-folder-tree.c (em_folder_tree_save_state): New function to
    save tree expanded state.
    (em_folder_tree_queue_save_state): New function to queue saving of
    the expanded state.
    (em_folder_tree_construct): Connect to the row-collapsed signal.
    (tree_row_collapsed): Queue a save-state.
    (tree_row_expanded): Queue a save state.
    (em_folder_tree_get_folder_info__got): Queue a save-state.

2003-11-25  Not Zed  <NotZed@Ximian.com>

    * em-folder-view.c (em_folder_view_print): set session on print
    formatter for signatures to work.

    * em-message-browser.c (emmb_destroy): kill warning.

    * em-format-html.c (efh_output_secure): same as
    efhd_output_secure, output the security bar, but for
    printing/plain html.
    (efh_application_xpkcs7mime): use output_secure.
    (em_format_html_multipart_signed_sign): removed, output_secure
    does what this did.

    * em-format-html-display.c (smime_sign_table,
    smime_encrypt_table): Added a short description for the mail
    display.
    (efhd_xpkcs7mime_button): only good/bad signature at this point,
    if only encrypted, then display 'bad' icon.
    (efhd_output_secure): output the security bar/button and handle
    multi-level enveloping properly.
    (efhd_application_xpkcs7mime): just call output_secure to do
    the security bar.
    (efhd_multipart_signed): same.
    (efhd_signature_button): removed, no longer used.
    (efhd_signature_check): removed, no longer used.

2003-11-24  Radek Doulik  <rodo@ximian.com>

    * em-format-html.c (efh_text_plain): use new colors
    (efh_text_html): ditto

    * em-format-html-display.c (efhd_gtkhtml_realise): set new colors
    according to style

    * em-format-html.c (efh_init): init new colors

    * em-format-html.h: added frame and content colors

    * em-format.c (emf_multipart_mixed): do not use horizonal rule,
    attachment content is now inside simple frame

    * em-format-html.c (efh_text_plain): add 6 points around text
    plain content and frame it
    (efh_text_html): frame text/html
    (efh_format_do): fix body tag, set bgcolor
    (em_format_html_format_headers): do not put headers into own
    table, content body is framed now instead
    (efh_format_message): update for headers/body changes

    * em-format-html-display.c (efhd_format_attachment): put
    additional vertical space around attachment button

2003-11-22  Jeffrey Stedfast  <fejj@ximian.com>

    * em-folder-tree-model.c (model_drag_data_received)
    (model_row_drop_possible, model_row_draggable)
    (model_drag_data_get, model_drag_data_delete): Swap the retval
    varargs value to the last argument instead of the first.

2003-11-20  Jeffrey Stedfast  <fejj@ximian.com>

    * mail-config.c (mail_config_uri_deleted): Removed call to
    mail_tool_delete_meta_data(). Fixes bug #51236.

    * mail-component.c (impl_handleURI): Implemented.
    (mail_component_class_init): Overload the handleURI method.

2003-11-20  Jeffrey Stedfast  <fejj@ximian.com>

    Fixes bug #51012.

    * em-folder-tree.c (emft_popup_rename_folder): Fixed a FIXME to
    not use the OS-specific g_path_*() stuff.
    (em_folder_tree_set_selected): For the case where the tree has
    already loaded enough subfolders to include the path we need to
    select, exopand the nodes to that path as well. For the case that
    the tree hasn't loaded enough of the folder nodes, load them and
    then have the node selected/expanded to.

2003-11-19  Jeffrey Stedfast  <fejj@ximian.com>

    * em-folder-selector.c (emfs_create_name_activate): Emit the
    response signal with the RESPONSE_NEW value.
    (emfs_create_name_changed): Sanity check the entry text and set OK
    sensitivity.
    (folder_selected_cb): If there is an entry widget, then call
    name_changed() to decide sensitivity, else set OK to be sensitive.

    * em-utils.c (em_utils_selection_set_urilist): Same.

    * em-format-html-display.c (efhd_drag_data_get): Same as below.

    * em-folder-tree.c (drag_text_uri_list): Terminate each url of a
    text/uri-list with a \r\n.

2003-11-19  Ettore Perazzoli  <ettore@ximian.com>

    * GNOME_Evolution_Mail.server.in.in: Add an
    "evolution:uri_schemas" attribute.

2003-11-19  Not Zed  <NotZed@Ximian.com>

    * mail-component.c (em_uri_to_camel): if we're setting the
    fragment, strip leading /'s.

    * mail-tools.c (mail_tool_get_meta_data)
    (mail_tool_delete_meta_data, meta_data_key): old stuff killed.
    (mail_tool_uri_to_folder): handle email: uri's specially.  this is
    a bit of a hack, the filter callbacks should manage this itself
    since filters are the only bits which use those uri's.

2003-11-18  Jeffrey Stedfast  <fejj@ximian.com>

    * em-migrate.c (em_migrate_dir): Don't leak the message objects.

    * em-folder-tree.c (em_copy_folders): Execute asynchronously by
    queueing the copy in another thread.
    (em_copy_folders__copy): Moved the original logic here.

2003-11-18  Jeffrey Stedfast  <fejj@ximian.com>

    * em-folder-tree.c (tree_row_expanded): Queue the
    camel_store_get_folder_info() call in another thread.
    (em_folder_tree_get_folder_info__got): Moved all the logic of
    tree_row_expanded here.

2003-11-17  Jeffrey Stedfast  <fejj@ximian.com>

    * em-folder-tree.c (tree_row_expanded): Fixed to check fi->child
    as well (since mbox does it right).
    (emft_popup_new_folder_response): Fixed to subscribe to the
    correct folder.
    (emft_popup_delete_folders): Fixed to use the full_name rather
    than the path.

    * em-folder-selection-button.c (set_contents): Fixed to not
    include leading '/' in the folder name in the label.

    * em-folder-tree.c (emft_popup_new_folder_response): Implemented
    error reporting via gtk dialogs.
    (emft_popup_copy_folder_selected): Same.

2003-11-17  Jeffrey Stedfast  <fejj@ximian.com>

    * em-folder-tree.c (emft_popup_new_folder_response): Use a
    folder_name rather than a path as the name argument to
    camel_store_create_folder(), fixes creation of IMAP folders.

2003-11-17  Not Zed  <NotZed@Ximian.com>

    * em-folder-selection-button.c (set_contents): handle an
    unparsable url without crashing.

    * mail-tools.c (mail_tool_get_local_inbox): thin wrapper on
    mail_component_get_local_inbox.

    * mail-component.c (mail_component_get_local_inbox): helper to get
    the default local inbox.

    * mail-ops.c (fetch_mail_fetch): if we can't get the inbox, make
    sure we still unref the filter driver here by using hte same exit
    code.  Fixes a crash.

2003-11-14  Jeffrey Stedfast  <fejj@ximian.com>

    * em-folder-tree.c (emft_popup_new_folder_response): We can't use
    a uri to do a lookup of a store-info on the store_hash, we have to
    get a CamelStore first.
    (row_draggable_cb): validate the iter before using it.
    (row_drop_possible_cb): Same.
    (drag_data_received_cb): Here too.
    (drag_data_get_cb): Same.
    (drag_data_delete_cb): Again here.
    (tree_store_set_folder_info): Recursively add nodes if fi->child
    is non-NULL rather than adding a dummy node.
    (folder_renamed_cb): Implemented.

2003-11-14  Jeffrey Stedfast  <fejj@ximian.com>

    * mail-mt.c (set_stop): Removed most of the code. This is
    basically now a nop. Need to somehow get the uic and fix this.

    * folder-browser-factory.[c,h]: Removed.

    * mail-component.c (folder_selected_cb): Don't create a new view
    anymore, simply set the new folder uri on the folder browser. This
    makes the mailer use a lot less memory than in 1.x
    (view_control_activate_cb): Moved here from
    folder-browser-factory.c
    (impl_createControls): Connect to the activate signal on the view
    control.

2003-11-14  Jeffrey Stedfast  <fejj@ximian.com>

    * em-folder-selection.c (folder_selected_cb): Only set OK to
    sensitive if the selected node is not a store node.

    * em-folder-tree-model.c: Moved the store_hash and uri_hash from
    EMFolderTreePrivate into here instead.

    * em-folder-tree.c: Updated for above changes.

2003-11-14  Jeffrey Stedfast  <fejj@ximian.com>

    * em-folder-view.c (emfv_popup_move): Updated.
    (emfv_popup_copy): Updated.

    * em-folder-tree.c (emft_popup_copy): Updated.
    (emft_popup_move): Updated.

    * em-folder-selection.c (create_dialog): New convenience function
    to construct the dialog contents for all three public functions.
    (em_folder_selection_run_dialog): Now longer takes a caption arg.
    (em_folder_selection_run_dialog_uri): Same.
    (em_select_folder): Here too.

2003-11-13  Jeffrey Stedfast  <fejj@ximian.com>

    * mail-component.c (mail_component_get_tree_model): Use
    em_folder_tree_get_model() since an emft is not a GtkTreeView.

    * em-folder-tree.c (em_folder_tree_get_model): New function to get
    the tree model.

2003-11-13  Jeffrey Stedfast  <fejj@ximian.com>

    * em-folder-selection.c: Rewritten to use EMFolderTRee.

    * mail-vfolder.c (vfolder_load_storage): Updated for function name
    changes in mail-component.c

    * mail-offline-handler.c: Updated for function name changes in
    mail-component.c

    * mail-account-gui.c (add_new_store): Fixed to not use EStorage.
    (mail_account_gui_save): Updated for function name changes.

    * em-account-prefs.c (account_delete_clicked): Updated for
    function name changes.
    (account_able_clicked): Same.
    (account_able_toggled): Same.

    * mail-component.c: Renamed mail_component_*storage*() functions
    to mail_component_*store*() since we are no longer dealing with
    storages, but instead with CamelStore's.
    (create_view_widget): If the user selects a store node, don't try
    to open it as a folder.

2003-11-13  Ettore Perazzoli  <ettore@ximian.com>

    * mail-component.c (impl_sendAndReceive): New, implementation for
    Evolution.Component.sendAndReceive.
    (mail_component_class_init): Install.

2003-11-13  Jeffrey Stedfast  <fejj@ximian.com>

    * mail-vfolder.c (context_rule_removed): Modified to not use
    EStorage* functions. I don't even think it *needs* to remove the
    folder from the mail-component, the mail-component should just
    pick it up automagically via CamelStore events.

    * em-folder-tree.[c,h]: New folder-tree widget that replaces the
    shell's folder-tree widget.

    * em-folder-tree-model.[c,h]: New source files subclassing
    GtkTreeStore for handling the mess that is drag&drop.

    * em-folder-selection-button.c: Ported to use EMFolderTree.

    * em-folder-selection.c: Ported to use EMFolderTree.

    * em-folder-selector.c: Ported to use EMFolderTree.

    * mail-component.c: Ported to use EMFolderTree.

    * mail-offline-handler.c (storage_go_online): Updated to not pass
    a storage argument.

    * mail-folder-cache.c: Removed storage stuff.

    * mail-send-recv.c (receive_update_got_store): Don't do EStorage*
    stuff anymore.

2003-11-13  Ettore Perazzoli  <ettore@ximian.com>

    * mail-component.c (impl__get_userCreatableItems): New,
    implementation for the Component.userCreatableItems attribute.
    (impl_requestCreateItem): New, implementation for the
    Component.requestCreateItem() method.
    (mail_component_class_init): Install.

2003-11-13  Radek Doulik  <rodo@ximian.com>

    * em-junk-filter.c (em_junk_sa_is_available): new helper function,
    use it before any call to spamassassin, spamc and sa-learn
    (em_junk_sa_test_spamd): first test if spamassassin is available
    (em_junk_sa_test_spamd): rename em_junk_sa_spamd_tested to
    em_junk_sa_tested, always set em_junk_sa_tested

    * mail-folder-cache.c (folder_changed): don't call
    CAMEL_IS_VJUNK_FOLDER, it was added by mistake

2003-11-13  Not Zed  <NotZed@Ximian.com>

    * em-format-html.c (em_format_html_add_pobject): use malloc0 for
    the pobject memory.

2003-11-12  Not Zed  <NotZed@Ximian.com>

    * mail-account-gui.c (smime_sign_key_select)
    (smime_encrypt_key_select, smime_encrypt_key_selected)
    (smime_sign_key_selected): implement the key selector popup using
    e-cert-selector.

2003-11-11  Not Zed  <NotZed@Ximian.com>

    * em-format-html.c (efh_application_xpkcs7mime): output icons of
    the status.
    (em_format_html_add_pobject): Changed to take a size specificier,
    return the pobject, and re-ordered args to be more consistent with
    puri stuff.
    (em_format_html_remove_pobject): handle the free callback if set.

    * em-format.c (emf_application_xpkcs7mime): moved this to
    em-format-html since it needs to do icon stuff.

    * mail-security.glade: new glade file for security related stuff.

    * mail-config.glade: removed the message security dialogue, it
    gets opened automatically by the config code :(

2003-11-10  Ettore Perazzoli  <ettore@ximian.com>

    * GNOME_Evolution_Mail.server.in.in: Set an
    "evolution:component_alias" property with a value of "mail".

2003-11-10  Not Zed  <NotZed@Ximian.com>

    * em-format-html.c (em_format_html_multipart_signed_sign): changed
    for cipher context api changes.
    * em-format.c (emf_multipart_signed): ditto.

2003-11-07  Not Zed  <NotZed@Ximian.com>

    * mail-config.glade: added security_information_dialog (probably
    temporarily in this file).

    * em-format.c (em_format_is_attachment): also treat pkcs7-mime as
    non-attachment.
    (emf_application_xpkcs7mime): no longer need to worry about
    scanning the part.

2003-11-07  Dan Winship  <danw@ximian.com>

    * message-list.c: Don't #include e-name-western.h, since the code
    that uses it is commented out, and we want to remove the local
    copy, but we don't want to make the mailer depend on the e-d-s
    copy if it's not even going to be using it.

2003-11-07  JP Rosevear <jpr@ximian.com>

    * Makefile.am: build the marshall files right at the beginning

2003-11-11  Not Zed  <NotZed@Ximian.com>

    * mail-security.glade: new glade file for security related stuff.

    * mail-config.glade: removed the message security dialogue, it
    gets opened automatically by the config code :(

2003-11-10  Ettore Perazzoli  <ettore@ximian.com>

    * GNOME_Evolution_Mail.server.in.in: Set an
    "evolution:component_alias" property with a value of "mail".

2003-11-10  Not Zed  <NotZed@Ximian.com>

    * em-format-html.c (em_format_html_multipart_signed_sign): changed
    for cipher context api changes.
    * em-format.c (emf_multipart_signed): ditto.

2003-11-07  Not Zed  <NotZed@Ximian.com>

    * mail-config.glade: added security_information_dialog (probably
    temporarily in this file).

    * em-format.c (em_format_is_attachment): also treat pkcs7-mime as
    non-attachment.
    (emf_application_xpkcs7mime): no longer need to worry about
    scanning the part.

2003-11-07  Dan Winship  <danw@ximian.com>

    * message-list.c: Don't #include e-name-western.h, since the code
    that uses it is commented out, and we want to remove the local
    copy, but we don't want to make the mailer depend on the e-d-s
    copy if it's not even going to be using it.

2003-11-07  JP Rosevear <jpr@ximian.com>

    * Makefile.am: Make sure the marshal files are listed above other
    sources

2003-11-06  Jeffrey Stedfast  <fejj@ximian.com>

    * em-migrate.c (em_migrate_filter_file): Call em_migrate_uri()
    instead of em_uri_from_camel().
    (em_migrate_uri): Special-case file: uri's by converting them into
    email://local@local/ uri's since these folders will have been
    migrated to the newer mbox tree structure.

2003-11-06  Jeffrey Stedfast  <fejj@ximian.com>

    * mail-vfolder.c (mail_vfolder_delete_uri): User vfolder rules
    should be in ${evolution_dir}/mail/vfolders.xml rather than
    ${evolution_dir}/vfolders.xml
    (mail_vfolder_rename_uri): Same.
    (store_folder_deleted): Here too.
    (store_folder_renamed): And here.
    (vfolder_load_storage): Again here.
    (vfolder_editor_response): Same.
    (edit_rule_response): And here.
    (new_rule_clicked): Here too.

    * mail-session.c (main_get_filter_driver): User filter rules
    should be in ${evolution_dir}/mail/filters.xml rather than
    ${evolution_dir}/filters.xml

    * mail-autofilter.c (filter_gui_add_from_message): Same.
    (mail_filter_rename_uri): And here.
    (mail_filter_delete_uri): Here too.

    * em-utils.c (filter_editor_response): Again here.
    (em_utils_edit_filters): Same.

    * em-migrate.c (em_migrate_filter_file): Same (also for
    vfolders.xml)

2003-11-05  Jeffrey Stedfast  <fejj@ximian.com>

    * em-migrate.[c,h]: New source files to migrate from the old mail
    directory to the new mail directory.

    * mail-component.c (mail_component_init): Changed to use
    ~/.evolution and added code to migrate the old mail folders over
    if ~/.evolution/mail does not yet exist.

2003-11-03  Ettore Perazzoli  <ettore@ximian.com>

    * GNOME_Evolution_Mail.server.in.in: Use "evolution2:config_item"
    properties for the config item instead of "evolution:config_item"
    ones.

2003-11-01  Jeffrey Stedfast  <fejj@ximian.com>

    * em-folder-view.c: setup filter-on-thread and vfolder-on-thread.

    * mail-autofilter.c (rule_from_message): handle AUTO_THREAD
    (rule_match_thread): new function to setup a filter on a msgid

2003-10-31  Not Zed  <NotZed@Ximian.com>

    * mail-config.glade: Rearranged smime config slightly, and added
    encrypt key preference.

    * mail-account-gui.c (mail_account_gui_save,
    mail_account_gui_new): enable smime always if have_nss.  Added new
    options in glade file and handle changed names.
    (smime_changed, smime_sign_key_select, smime_sign_key_clear)
    (smime_encrypt_key_select, smime_encrypt_key_clear): Add a bunch
    of mostly dummy UI behaviour management stuff.

2003-10-30  Not Zed  <NotZed@Ximian.com>

    * em-format.c (em_format_is_inline): show application/x-pkcs7-mime
    inline always by default.

2003-10-30  Not Zed  <NotZed@Ximian.com>

    * em-format.c (emf_multipart_signed): handle
    application/x-pkcs7-signature.

2003-10-29  Not Zed  <NotZed@Ximian.com>

    * em-format-html.c (em_format_html_multipart_signed_sign): handle
    application/x-pkcs7-signature.

    * em-format.c (emf_application_xpkcs7mime): Handle
    application/x-pkcs7-mime.

2003-10-29  Jeffrey Stedfast  <fejj@ximian.com>

    * em-account-prefs.h: Changed the OAFIID.

    * em-composer-prefs.h: Changed the OAFIID.

    * em-mailer-prefs.h: Changed the OAFIID.

    * GNOME_Evolution_Mail.server.in.in: Changed OAFIIDs for the prefs
    controls.

2003-10-29  Jeffrey Stedfast  <fejj@ximian.com>

    * GNOME_Evolution_Mail.server.in.in: Nuked the MailConfig
    interface stuff.

    * Mailer.idl: Removed. None of the interfaces are needed/used
    anymore.

    * folder-info.[c,h]: Removed. The summary was the only thing that
    needed/used this code and it has been nuked into oblivion, so
    these interfaces are no longer needed.

    * mail-config.c: Removed old crufty CORBA interface snot that is
    no longer needed or used.

2003-10-27  Jeffrey Stedfast  <fejj@ximian.com>

    * Fixes bug #49816

    * em-popup.c (emp_part_popup_reply_sender): No need to pass a
    parent window arg anymore.
    (emp_part_popup_reply_list): Same.
    (emp_part_popup_reply_all): Here too.
    (emp_part_popup_forward): Same.
    (emp_uri_popup_address_send): Here too.

    * em-folder-browser.c (emfb_mail_compose): No need to pass a
    parent window arg anymore.
    (emfb_mail_post): Same.

    * em-folder-view.c (emfv_message_reply): Don't pass a parent
    window argument anymore.
    (emfv_popup_forward): Same.
    (emfv_popup_resend): Same here.
    (em_folder_view_open_selected): Same.
    (emfv_message_forward_attached): Here too.
    (emfv_message_forward_inline): And here.
    (emfv_message_forward_quoted): Same.
    (emfv_message_redirect): Here too.
    (emfv_message_post_reply): And here.
    (emfv_format_link_clicked): ANd finally here.

    * em-utils.c (create_new_composer): Don't set_transient_for()
    anymore.
    (em_utils_compose_new_message): No longer takes a parent window
    argument.
    (em_utils_forward_attached): No longer takes a parent window arg.
    (em_utils_forward_inline): Same.
    (em_utils_forward_quoted): Same.
    (em_utils_forward_message): Same.
    (em_utils_forward_messages): Here too.
    (redirect_get_composer): Don't set_transient_for() here either.
    (em_utils_redirect_message): No longer takes a parent window arg.
    (em_utils_redirect_message_by_uid): Same.
    (reply_get_composer): Don't set_transient_for() here.
    (em_utils_reply_to_message): No longer takes a parent window arg.
    (em_utils_reply_to_message_by_uid): Same.
    (post_reply_to_message): Don't set_transient_for() here.
    (em_utils_post_reply_to_message_by_uid): No longer takes a parent
    window arg.
    (em_utils_compose_new_message_with_mailto): Don't
    set_transient_for() here.
    (em_utils_post_to_url): Same.
    (em_utils_edit_message): No longer takes a parent window arg.
    (em_utils_edit_messages): Same.

2003-10-24  Jeffrey Stedfast  <fejj@ximian.com>

    * em-account-prefs.[c,h]: Re-Namespaced mail-accounts.c

    * em-composer-prefs.[c,h]: Re-Namespaced mail-composer-prefs.c

    * em-mailer-prefs.[c,h]: Re-Namespaced mail-preferences.c

    * mail-accounts.[c,h]: Removed.

    * mail-composer-prefs.[c,h]: Removed.

    * mail-preferences.[c,h]: Removed.

    * mail-account-editor.c: Updated.

    * mail-account-gui.c: Updated.

    * mail-config-factory.c: Updated.

    * mail-component-factory.c: Updated.

2003-10-22  Ettore Perazzoli  <ettore@ximian.com>

    * GNOME_Evolution_Mail.server.in.in: Add an
    "evolution:button_icon" attribute.

2003-10-22  Ettore Perazzoli  <ettore@ximian.com>

    * GNOME_Evolution_Mail.server.in.in: Add an
    "evolution:button_sort_order" attribute.

2003-10-22  Jeffrey Stedfast  <fejj@ximian.com>

    * mail-component.c (parse_uid_list): Removed, use
    em_utils_selection_get_uidlist() instead.
    (drop_uid_list): Use em_utils_selection_get_uidlist() to parse the
    x-uid-list selection data and use mail_tool_uri_to_folder()
    directly since we have the uri (originally we expected the first
    component of the selection data to be the e-storage-set-view
    folder path rather than the uri).
    (folder_receive_drop_cb): Call gtk_drag_finish() here.

    * message-list.c: s/x-evolution-message/x-uid-list/

    * em-utils.c: Same.

2003-10-22  Ettore Perazzoli  <ettore@ximian.com>

    * mail-component.c (impl_createControls): Use
    e_storage_browser_peek_widget_scrolled() to retrieve the scrolled
    window that the EStorageSetView is contained in.

2003-10-22  Ettore Perazzoli  <ettore@ximian.com>

    * GNOME_Evolution_Mail.server.in.in: Add an
    "evolution:button_label" attribute to the Component for use in the
    shell.

2003-10-22  Not Zed  <NotZed@Ximian.com>

    * mail-component.c (em_copy_folders): handle destination of ""
    properly.
    (emc_popup_copy_folder_selected): handle url->path properly, strip
    leading /.
    (em_copy_folders): if we just created a new folder on a
    subscribable store, subscribe to it.
    (em_copy_folders): handle nonselectable folders specially.

2003-10-21  Jeffrey Stedfast  <fejj@ximian.com>

    * mail-component.c (drag_text_uri_list, folder_dragged_cb)
    (drop_uid_list, drop_folder, import_message_rfc822)
    (drop_message_rfc822, drop_text_uri_list, folder_receive_drop_cb):
    New functions to handle drag & drop to/from the folder tree.
    (impl_createControls): Setup drag & drop support.

    * em-format.c (emf_multipart_mixed): Put an <hr> between parts of
    a multipart.

2003-10-21  Not Zed  <NotZed@Ximian.com>

    * mail-component.c (emc_popup_properties): implement.
    (emc_popup_properties_got_folder): builds dynamic
    folder-properties dialogue.
    (emc_popup_properties_response): set the properties on the folder
    on an ok response.
    (emc_popup_properties_free): free the properties working data.

    * mail-folder-cache.c (unset_folder_info): unhook from the right
    function for message_changed.

2003-10-20  Not Zed  <NotZed@Ximian.com>

    * mail-component.c (emc_popup_new_folder): pass the right object
    to set_selected().  Fixes a new real bug.  Undid reformatting.

2003-10-17  Jeffrey Stedfast  <fejj@ximian.com>

    * mail-component.c: General compile fixes.
    (emc_popup_new_folder): Fixed to not shadow a parameter. Fixes a
    real bug.

    * mail-component.h: Added some prototypes.

2003-10-13  Not Zed  <NotZed@Ximian.com>

    * em-popup.c (em_popup_create_menu_once): only hookup target free
    if we have a target set.

    * mail-component.c (load_accounts): removed debug i accidentally
    left in.
    (emc_tree_right_click): handle right-click context menu, using an
    EMPopup table.
    (emc_popup_*): setup empty popup handlers.

2003-10-13  Not Zed  <NotZed@Ximian.com>

    * em-folder-selection.c (em_select_folder): asynchornous folder
    selection call.
    (emfs_folder_selected): callback for folder selected.

    * em-folder-view.c (emfv_popup_move): implement.
    (emfv_popup_copy): "
    (emfv_popup_move_cb): async folder select callback to run it.

2003-10-10  Not Zed  <NotZed@Ximian.com>

    * mail-account-gui.c
    (mail_account_gui_folder_selector_button_new): use
    em_folder_selection_button.
    (mail_account_gui_new): "
    (folder_selected): "

    * em-folder-selection-button.c: Make this use camel uri's rather
    than camelfolders.
    (set_selection): removed, redundant.
    (impl_dispose): removed, not needed.

    * em-folder-selection-button.h: change the selected signal not to
    actually return the selection, which must get retrieved later.

    * mail-component.c (em_uri_from_camel): create an evo mail uri
    from a camel one.
    (em_uri_to_camel): the reverse.

    * mail-signature-editor.c (mail_signature_editor): up the version
    of the gtkhtml editor.

2003-10-09  Not Zed  <NotZed@Ximian.com>

    * em-folder-selection-button.c (set_selection): always set
    selected_folder, otherwise we don't unset it properly.

    * em-folder-selection.c (em_folder_selection_run_dialog): fix a
    small memleak.
    (em_folder_selection_run_dialog_uri): do the same as run_dialog
    but take, and return physical uri's.

    * mail-component-factory.c (factory): removed some fixme's, and
    re-hookedup the composer.

2003-10-09  Frederic Crozat  <fcrozat@mandrakesoft.com>

    * em-icon-stream.c (emis_sync_close): Use
    gnome-thumbnail_scale_down_pixbuf if available, for better
    performance.

2003-10-08  Jeffrey Stedfast  <fejj@ximian.com>

    * em-folder-view.c: Add a hide_mask to the
    create-rule-from-message bars so that we don't segfault when we
    right click with a multi-selection.

2003-10-08  Chris Toshok  <toshok@ximian.com>

    * em-utils.c (em_utils_camel_address_to_destination): EDestination
    => EABDestination, and e_destination => eab_destination.
    (reply_get_composer): same.
    (post_reply_to_message): same.

    * em-composer-utils.c (ask_confirm_for_unwanted_html_mail)
    EDestination => EABDestination, and e_destination =>
    eab_destination.
    (composer_get_message):same.

2003-10-08  Not Zed  <NotZed@Ximian.com>

    * mail-component.c (mail_component_peek): setup vfolders once we
    hve the component, since its setup will call mail_component_peek,
    fun recursion.

2003-10-08  Not Zed  <NotZed@Ximian.com>

    * mail-component.c (setup_local_folder): removed.
    (setup_local_store): setup various needed globals properly.
    (setup_account_storages): renamed to load_accounts.
    (go_online): turn on interactivity as well as onlinedness.

    * GNOME_Evolution_Mail.server.in.in: point the preferences pages
    to the right factory.

2003-10-07  Not Zed  <NotZed@Ximian.com>

    * mail-component.[ch]: Fix copyrights.

2003-10-06  Jeffrey Stedfast  <fejj@ximian.com>

    * mail-config-druid.c (identity_prepare): Fixed.

    * mail-ops.c (fetch_mail_fetch): Always save the uid cache no
    matter what.

2003-10-03  Frederic Crozat  <fcrozat@mandrakesoft.com>

    * mail-config-druid.c (identity_prepare), (config_wizard_new):
    Convert real name to UTF-8 if needed.

2003-10-03  Jeffrey Stedfast  <fejj@ximian.com>

    * em-folder-browser.c (emfb_set_folder): Disable the selection of
    the first unread message for now. This is actually annoying the
    fuck out of me, Radek, and a few other people.

2003-10-02  Not Zed  <NotZed@Ximian.com>

    * mail-component.c (add_storage): Add the storage to the hash
    after we've initialised it.
    (mail_component_evomail_uri_from_folder): hardcode "local" account
    pseudo-id for local folders.
    (mail_component_get_folder_from_evomail_uri): handle the "local"
    account case.

2003-10-02  Not Zed  <NotZed@Ximian.com>

    * mail-component.c (setup_local_store): use mbox:/path rather than
    mbox:///path - the mbox code is 'wrong', but this is easier to
    fix.  fixes local unread counts.  maybe the provider url-compare
    should address this too.

2003-10-02  Suresh Chandrasekharan <suresh.chandrasekharan@sun.com>

    * mail-config-druid.c: Fix for 40917 "Backspace shouldn't
    highlight the whole remaining string in Setup Assistant".
    (identity_changed): Removed repeated focussing per keystroke.
    functions
    (source_changed): Same.
    (transport_changed): Here too.
    (management_changed): And here.
    (identity_prepare): Removed the initial highlighting for Full
    Name, also the unneeded intial grab_focus.

2003-10-02  Not Zed  <NotZed@Ximian.com>

    * em-format-html.c (efh_format_timeout): zero out last_part if
    we're clearing.  Uh, this fixes, but shouldn't, part of #49034.
    The problem is the 'last part' logic is based on the address,
    which can quite easily be repeated for different messages.

    * em-folder-view.c (emfv_list_message_selected): reverted jeff's
    patch for #48618, use a much simpler method.

    * em-message-browser.c (emmb_destroy): hook onto destroy handler,
    we need to destroy the messagelist ourselves, since we dont attach
    it to any parent window.

2003-10-01  Not Zed  <NotZed@Ximian.com>

    * em-format-html.c (efh_init): turn off blocking writes.
    (efh_format_timeout): don't do a htmlbegin on the page yet, it'll
    be handled by em-html-stream when it has data, to reduce flicker.
    (efh_format_do): close the main gtkhtml stream as soon as we're
    done writing the body.  any sub-jobs should be using frames etc.
    (efh_text_plain): dont write a table around the text, try to
    reduce flickering.  layout may be out now though.

    * em-html-stream.c (emhs_sync_write): if we have no html_stream
    yet, begin a new one.

2003-09-30  Rodney Dawes  <dobey@ximian.com>

    * em-format-html-print.c: Use "Sans Regular" instead of "Helvetica"
    Fixes bug #47878
    
2003-09-30  Not Zed  <NotZed@Ximian.com>

    * em-format-html.c (efh_init): remove gconf stuff.
    (em_format_html_set_xmailer_mask): new method to set the xmailer mask.

    * em-folder-view.c (emfv_display_keys[]): Added charset key to
    monitor/retrieve, and xmailer_mask.
    (emfv_setting_notify): Monitor charset setting, pass onto the
    formatter, as well as xmailer_mask.

    * mail-preferences.c (mail_preferences_construct): use the new
    charset key.
    (mail_preferences_apply): use the new charset key.

    * evolution-mail.schemas: Moved the mail/format/charset to
    mail/display/charset.  1. it makes more sense, and 2. it makes
    notification update easier in em-folder-view.c

    * em-format.c (emf_init): remove the gconf charset stuff, for bug
    #48791, and also actually fixes the fixme that jeff thought he
    fixed.
    (em_format_format_text): use default charset as fallback.
    (em_format_set_default_charset): New method to set the default charset.
    (gconf_charset_changed): removed.

2003-09-29  Jeffrey Stedfast  <fejj@ximian.com>

    * em-format.c (emf_init): Oops, put the arguments in the right order.

2003-09-29  Ettore Perazzoli  <ettore@ximian.com>

    * mail-component.c: New member local_store in
    MailComponentPrivate.
    (impl_dispose): Unref.
    (mail_component_load_storage_by_uri): Return the CamelStore.
    (setup_local_folder): New.
    (setup_local_store): New.
    (mail_component_init): Call it.
    (mail_component_peek_storage_set): New.
    (mail_component_get_folder_from_evomail_uri): New.
    (mail_component_evomail_uri_from_folder): New.

    * em-folder-selection-button.c: New.
    * em-folder-selection-button.h: New.

    * em-folder-selection.c: New.
    * em-folder-selection.h: New.

    * em-marshal.list: Add NONE:POINTER.

2003-09-25  Jeffrey Stedfast  <fejj@ximian.com>

    * mail-account-gui.c (mail_account_gui_save): Allow any file: uri
    to point to a sent or drafts folder.

2003-09-25  Rodney Dawes  <dobey@ximian.com>

    * mail-send-recv.c: Make the dialog more HIG-compliant by fixing
    widget alignment/spacing issues, and removing separators

2003-09-24  Jeffrey Stedfast  <fejj@ximian.com>

    * mail-preferences.c (mail_preferences_construct): Same as below.

    * mail-composer-prefs.c (mail_composer_prefs_construct): gconf can
    return empty string if the charset has not been set, so if the
    charset string is empty, default the charset to the user's locale
    charset. Partial fix for bug #47638.

2003-09-23  Ettore Perazzoli  <ettore@ximian.com>

    * mail-component.c (add_storage): Remove unused arg "uri".
    (mail_component_add_store): Likewise.
    (add_storage): Don't set the "Connecting..." node.
    (mail_component_init): Set up local store at
    ~/.evolution/mail/local.

    * evolution-mbox-upgrade.c (get_local_store): Remove a double
    xmlFree() that was causing it to crash.


2003-09-23  Ettore Perazzoli  <ettore@ximian.com>

    * mail-component.c (add_storage): Note the new store.

    * mail-component-factory.c: Don't include "mail-callbacks.h"
    anymore.

    * em-format-html.c (em_format_html_get_type): Get the base
    directory with mail_component_peek_base_directory().
    * em-utils.c (filter_editor_response): Likewise.
    (em_utils_edit_filters): Likewise.

    * em-folder-browser.c (emfb_init): Get the search context through
    mail_component_peek_search_context().

2003-09-23  Jeffrey Stedfast  <fejj@ximian.com>

    * evolution-mbox-upgrade.c (get_local_store): Don't xmlFree (name)
    until after we've g_strdup'd it.
    (em_migrate_dir): If the metadata file doesn't exist, don't even
    bother trying subfolers (the shell just ignores them so we should
    too).

2003-09-23  Jeffrey Stedfast  <fejj@ximian.com>

    Fix for bug #48791 (and also fixes a FIXME)

    * em-format.c (emf_init): Setup a gconf listener for changes to
    the charset setting.
    (gconf_charset_changed): Update the cached gconf charset value.
    (emf_finalise): Free the EMFormatPrivate data, unref the gconf
    client, disconnect the charset notify id, and free the cached
    gconf charset value.
    (em_format_format_text): Use the cached gconf charset value.

2003-09-22  Not Zed  <NotZed@Ximian.com>

    ** See bug #32996
    
    * mail-folder-cache.c (real_flush_updates): don't just pass TRUE
    to the 'can work offline' parameter of new shell folder.

    ** See bug #39410
    
    * mail-ops.c (prep_offline_do): sync all messages, not just
    unread or flagged ones.

2003-09-22  Not Zed  <NotZed@Ximian.com>

    * em-popup.c (emp_uri_popup_link_copy): removed, moved to
    em-folder-view, for now, it has access to an invisible.

    * em-folder-view.c (emfv_setting_notify): honour the load_http
    setting, at least the all setting.
    (emfv_format_popup_event): setup the popup menu item for copy link
    location here.

2003-09-22  Jeffrey Stedfast  <fejj@ximian.com>

    * mail-preferences.c (mail_preferences_construct): Connect to
    "value-changed" rather than "changed" for spin buttons.

2003-09-21  Not Zed  <NotZed@Ximian.com>

    * mail-session.c (ms_thread_msg_new): implement, we hook into the
    mail progress reporting stuff by overriding the CamelOperation
    member with one from a dummy mail_msg.
    (ms_thread_msg_free): handle freeing.

    * mail-mt.c (mail_msg_free): mute the camel-operaiton when we free
    it so we no longer get updates.

2003-09-19  Jeffrey Stedfast  <fejj@ximian.com>

    * em-message-browser.c (emmb_set_message): Set the window title to
    be that of the message subject. Fixes bug #48617.

2003-09-19  Jeffrey Stedfast  <fejj@ximian.com>

    Fix for bug #48618.

    * em-folder-view.c (emfv_list_message_selected): See if we have
    already loaded the message uid that has just been selected, if so
    - don't bother re-loading it.
    (emfv_list_done_message_selected): Update loaded_uid and
    loading_uid.

2003-09-18  Radek Doulik  <rodo@ximian.com>

    * em-format-html.c (efh_init): use gtkhtml's blocking

2003-09-18  Jeffrey Stedfast  <fejj@ximian.com>

    * em-inline-filter.c: updated for CamelTransferEncoding namespace
    changes

    * em-inline-filter.h: updated for CamelTransferEncoding namespace
    changes

    * mail-ops.c: updated for CamelTransferEncoding namespace changes

2003-09-18  Jeffrey Stedfast  <fejj@ximian.com>

    * component-factory.c: updated for camel namespace changes

    * em-folder-view.c: updated for camel namespace changes

    * em-format-html-display.c: updated for camel namespace changes

    * em-format-html-quote.c: updated for camel namespace changes

    * em-format.c: updated for camel namespace changes

    * em-popup.c: updated for camel namespace changes

    * em-utils.c: updated for camel namespace changes

    * mail-autofilter.c: updated for camel namespace changes

    * mail-ops.c: updated for camel namespace changes

    * mail-session.c: updated for camel namespace changes

    * message-list.c: updated for camel namespace changes

    * message-tag-followup.c: updated for camel namespace changes

    * importers/evolution-mbox-importer.c: updated for camel namespace
    changes

2003-09-18  Jeffrey Stedfast  <fejj@ximian.com>

    * em-popup.c (emp_standard_menu_factory): Don't forget to
    initialise/increment 'i' when using it as an object id in the
    for-loop.

    * em-format.c (em_format_format_text): Initialise charset to NULL
    or it may be used uninitialised. Also include
    gnome-vfs-mime-handlers.h for gnome_vfs_mime_type_get_description().

    * Makefile.am: Added $(MARSHALL_GENERATED) to $(BUILT_SOURCES) so
    that em-marshal.[c,h] were autogenerated.

2003-09-17  Not Zed  <NotZed@Ximian.com>

    * folder-browser.c, folder-browser.h, folder-browser-ui.c
    folder-browser-ui.h, mail-callbacks.c, mail-callbacks.h
    mail-display.c, mail-display.h, mail-display-stream.c
    mail-display-stream.h, mail-format.c, mail-format.h
    mail-identify.c, mail-search.c, mail-search.h message-browser.c,
    message-browser.h, subscribe-dialog.c subscribe-dialog.h,
    mail-font-prefs.c, mail-font-prefs.h: cvs removed.

    * Makefile.am: Removed mail-font-prefs.[ch], hasn't been built for
    ages.

    * em-*.c: killed a bunch of printfs.

    * em-format-html-display.c (efhd_html_button_press_event): update
    for html object api chagnes.

    ** Merge in mail-refactor-2 branch.

2003-09-17  Jeffrey Stedfast  <fejj@ximian.com>

    * evolution-mbox-upgrade.c: New source file to migrate from the
    old mbox structure to the new mbox structure.

2003-09-08  Ettore Perazzoli  <ettore@ximian.com>

    * mail-folder-cache.c (mail_note_store): Allow NULL storage in
    precondition.

    * mail-component.c (mail_component_init): Remove debugging
    message.

2003-08-22  Not Zed  <NotZed@Ximian.com>

    * mail-format.c (write_date): translate the local time format.

2003-08-20  David Woodhouse  <dwmw2@infradead.org>

    * mail-format.c (write_date): Use e_utf8_strftime() to generate
    localised time; avoid gratuitous extra translation and array of
    day names, and the autoconf magic which made Not Zed dislike the
    inclusion of the timezone name.

2003-08-18  Ettore Perazzoli  <ettore@ximian.com>

    * GNOME_Evolution_Mail.server.in.in: Rename
    GNOME_Evolution_Mail_Component2 to
    GNOME_Evolution_Mail_Component_2 and GNOME_Evolution_Mail_Factory2
    to GNOME_Evolution_Mail_Factory_2.
    * mail-component-factory.c: Update accordingly.

2003-08-18  Jeffrey Stedfast  <fejj@ximian.com>

    * mail-session.c (main_get_filter_driver): Removed the
    new-mail-notification mess.

    * mail-folder-cache.c (notify_idle_cb): New idle callback to alert
    the user about new mail.
    (notify_type_changed): New function to intercept user changes to
    his/her notification settings changes.
    (real_flush_updates): Initialise new mail notification if not yet
    initialised and setup an idle callback if none is already set.
    (update_1folder): Now takes an additional argument `new' which
    states whether or not the fodler got any new mail so that we may
    handle notify the user (if needed).
    (folder_changed): Pass in the number of new messages received.

2003-08-19  Not Zed  <NotZed@Ximian.com>

    * mail-callbacks.c (mail_generate_reply): Added a comment for
    translators.

2003-08-19  David Woodhouse  <dwmw2@infradead.org>

    * mail-callbacks.c (mail_generate_reply): Add a timezone offset to
    the attribution string.

2003-08-19  Not Zed  <NotZed@Ximian.com>

    * mail-format.c (write_date): Added translation for day and
    localtime strings.  Also removed the tz_zone stuff, and just use
    'localtime' always.

2003-08-15  David Woodhouse  <dwmw2@infradead.org>

    * mail-format.c (write_date): Show date in localtime too.

2003-08-19  Harry Lu  <harry.lu@sun.com>

    ** For #45348

    * mail-display.c (mail_display_render): Change "%P" to "%p" so 
    that strftime() can work under solaris.

2003-08-14  Jeffrey Stedfast  <fejj@ximian.com>

    * mail-ops.c (mail_send_message): Don't abort at the first failure
    after sending (filtering, appending to Sent, syncing). Instead,
    keep a running tab of exceptions and then set a culmulative
    exception at the end to report to our caller. Also, if we fail to
    append to the account Sent folder, try again with the local Sent
    folder. Fixes bug #46512.

2003-08-13  Suresh Chandrasekharan <suresh.chandrasekharan@sun.com>
    
    * e-searching-tokenizer.c (searcher_next_token): Fix for 45818 (
    i18n mail messages search only produces '[?]'). Now multibyte
    character selection works correctly. But due to associated gtkhtml
    bug, the find button functionallity for multibyte characters is
    broken.

2003-08-12  Jeffrey Stedfast  <fejj@ximian.com>

    * mail-tools.h: Removed unused function prototype.

2003-08-11  Jeffrey Stedfast  <fejj@ximian.com>

    * mail-session.c (remove_timeout): Removed.
    (register_timeout): Removed.

2003-08-09  Ettore Perazzoli  <ettore@ximian.com>

    * mail-component.c (storage_go_online): Pass NULL for the
    operation pointer to mail_note_store(), to sync with Michael's
    changes.

2003-08-05  Jeffrey Stedfast  <fejj@ximian.com>

    * mail-format.c (handle_multipart_encrypted): Updated for
    CamelMimePart::content_type changes.

    * mail-ops.c (save_part_save): Use
    camel_data_wrapper_decode_to_stream() here.

    * mail-display.c (drag_data_get_cb): Updated for
    CamelMimePart::content_type changes.
    (do_attachment_header): Same.

2003-07-31  Jeffrey Stedfast  <fejj@ximian.com>

    * mail-format.c (mail_format_raw_message): Updated to pass FALSE
    as the 'decode' param to
    mail_format_data_wrapper_write_to_stream().
    (mail_format_data_wrapper_write_to_stream): Now takes a boolean
    arg telling whether to decode or not. Also reworked the charset
    logic now that camel doesn't handle this for us any longer.
    (mail_format_get_data_wrapper_text): Updated.
    (handle_text_plain): Same.
    (handle_text_enriched): Here too.

    * mail-display.c (do_attachment_header): Call decode_to_stream
    here instead of write_to_stream.
    (do_external_viewer): Same.
    (on_url_requested): Same. Also updated for
    mail_format_data_wrapper_write_to_stream().
    (try_part_urls): Call decode_to_stream.
    (drag_data_get_cb): Same.

2003-08-05  Not Zed  <NotZed@Ximian.com>

    ** See bug #32732

    * message-list.c (mail_regen_list): use thread_new.

    * mail-local.c (reconfigure_response): use thread_new.

    * mail-display.c (stream_write_or_redisplay_when_loaded): use
    thread_new.

    * mail-config.c (mail_config_check_service): use thread_new rather
    than queue.

    * mail-callbacks.c (view_msg): change to use mail_get_messages(),
    fixes FIXME.
    (do_view_messages): handle get_messages callback.
    (do_view_message): removed.

    * mail-ops.c (mail_get_folderinfo): Use a new thread thread
    semantic.
    (mail_save_part): "
    (mail_store_set_offline): "
    (mail_sync_folder): use queued_slow thread queue.
    (mail_expunge_folder): "
    (mail_empty_trash): "

    ** See bug #47224.  Hook onto clicked rather than button_pressed,
    so that dnd works.
    
    * mail-display.c (inline_toggle): toggle a part inline.
    (button_press): change back to only handle button clicked events,
    renamed to inline_button_clicked.
    (do_attachment_header): hook onto clicked rather than
    button_press_event, and move key_press_event to
    inline_button_pressed.
    (do_signature): Same.
    (inline_button_pressed): handle inline button key press event
    explicitly.

2003-07-29  Not Zed  <NotZed@Ximian.com>

    * mail-folder-cache.c (mail_note_store): add a CamelOperation for
    overriding status handler.

    * mail-send-recv.c (receive_update_got_store): Pass our own cancel
    handle to get_folderinfo and mail_note_store.
    (mail_send_receive, mail_receive_uri): Same for get_store.

    * mail-ops.c (mail_get_store, mail_get_folderinfo): Add a
    CamelOperation argument, for overriding the status handler.  Fixed
    most calles to pass NULL to use the default.

2003-09-15  Not Zed  <NotZed@Ximian.com>

    * em-folder-browser.c (emfb_activate): remove warning about folder
    not being loaded yet - it basically never is.

    * em-popup.c (emp_standard_menu_factory): dont setup any global
    select menu's yet.  they're all handled by folderview atm.

2003-09-11  Not Zed  <NotZed@Ximian.com>

    * em-format-html.c (efh_finalise, efh_format_timeout): Use a
    proper hash free func, otherwise it dont work.

2003-09-11  Not Zed  <NotZed@Ximian.com>

    * em-inline-filter.[ch]: A new class which implements an inline
    snooper via a mime filter, so it is fully streamable.  contents
    merely passes through the filter.

    * em-format-html.c (efh_finalise): free text substitute parts
    table.
    (efh_text_plain): transform a text part into a multipart, scanning
    for inline data.  Keep the multipart around for redraws.
    (efh_format_timeout): clear the text substitute parts table.

2003-09-10  Not Zed  <NotZed@Ximian.com>

    * em-format-html-display.c (efhd_init): hook onto realise so we
    get the real theme-applied style.
    (efhd_gtkhtml_realise): get the theme data for colour defaults.
    Tweak the colour selection to make it work better with dark
    themes.

    * em-format-quote.c (emfq_format_source): we need to implement
    this.
    (emfq_format_error): we need not to call parent, it doesn't
    implement it.

    * message-list.c (message_list_select_uid): don't emit
    changedhere, let it go through the table cursor change.

    * em-folder-browser.c (em_folder_browser_show_preview): use
    folderview.preview_active for this state.
    (em_folder_browser_show_preview): clear the current message when
    we turn off the message view, and load the current one when turn it on.

    * em-folder-view.c (emfv_destroy): zero out preview + list.
    (emfv_list_message_selected): check preview_active before doing
    anything.
    (emfv_edit_cut):
    (emfv_edit_copy): only run if preview active.

    * em-format-html.c (efh_format_do): output the proper html
    headers, etc.

2003-09-10  Jeffrey Stedfast  <fejj@ximian.com>

    * mail-account-gui.c (mail_account_gui_save): Allow the user to
    select any fodler for his/her Drafts and Sent folders. Fixes bug
    #45412.

2003-09-09  Not Zed  <NotZed@Ximian.com>

    * em-utils.c (forward_non_attached): implement forward quoted.

    * em-format-quote.[ch]: New class, em-format-html-quote wont cut
    it.  Sigh.

    * em-format-html-quote.c (efhq_base_init): move type init stuff
    here.
    (efhq_complete): remove, this is a signal.
    (efhq_multipart_related): we need to override the base class, we
    don't want to output any attachment html.

    * em-format-html-print.c (efhp_base_init): move builtin type init
    to here.

    * em-format-html.c (efh_init): get xmailer mask from gconf (sigh).
    (efh_format_header): inmplement most of xmailer mask thing.
    rupert icon not done yet, probably needs to be done as part of
    em-format-html-display, sigh.
    (type_builtin_table[]): add image/svg to supported image formats.
    (efhd_base_init): move type init to here.
    (efh_text_enriched): write to the filtered_stream, not stream.

    * em-format.c (em_format_format_text): oops, actually use any
    supplied charset.
    (emf_base_init): move hashtable init into base_init, so we get a
    new copy for each derived class too.

    * mail-send-recv.c (build_dialogue): use an eclippedlabel for
    status.  Fixed all uses.

2003-09-08  Not Zed  <NotZed@Ximian.com>

    * em-format-html.h (EMFormatHTML): added a simple_headers option,
    only output headers in basic format.  Added hide_headers option,
    to disable all header output.

    * em-format-html-quote.c (efhq_format_message): blockquote the
    contnet, thats how you cite it!
    (efhq_init): turn on simple headers for html output.
    (efhq_format_message): output headers and part directly, bypassing
    parent format_message.
    (efhq_format_message): implement hide_headers.

    * em-format-html.c (efh_busy): implement busy.
    (efh_format_message): implement simple_headers option.
    (efh_format_text_header): implement simple_headers option.
    (efh_format_message): move the header formatting stuff into
    exported em_format_html_format_headers.
    (efh_format_message): only output headers if not hidden.

    * em-format.c (emf_busy): base implementation of a new virtual
    method, returns TRUE if the object is still busy
    rendering/downloading stuff.

    * em-utils.c (em_utils_message_to_html): renamed from
    em_utils_quote_message.  Also make sure the html conversion is
    complete before getting the data.
    (em_utils_part_to_html): similar, but for parts.
    (composer_set_body): put in David Woodhouse's timezone in
    attribution patch.
    (composer_set_body): we want to quote the part (content), we don't
    want message headers.
    (em_utils_message_to_html): add a 'show headers' argument.

    * folder-browser-factory.c (control_activate): removed.
    (control_deactivate): removed.

    * mail-identify.c: 
    * folder-browser.[ch], folder-browser-ui.[ch]: 
    * mail-callbacks.[ch], mail-search.[ch]:
    * mail-display.[ch], mail-format.[ch], mail-display-stream.[ch]:
    * message-browser.[ch]: Removed, fixed all users.

    * component-factory.c (factory): change callbacks to em_utils
    ones.
    (configure_folder_popup): comment out some of the reconfigure
    stuff.  Wont have it in 1.6?
    (handle_external_uri_cb): use em_utils stuff.
    (user_create_new_item_cb): "
    (owner_unset_cb): "

    * em-composer-utils.c (composer_send_cb): rename to
    em_utils_composer_send_cb, and export, sigh, needed for factory.
    (composer_save_draft_cb): Same.

2003-09-05  Not Zed  <NotZed@Ximian.com>

    * em-format.c (type_builtin_table[]): Add a fallback multipart/*
    for other types (e.g. multipart/report)
    (em_format_fallback_handler): fix some bad logic.

    * em-folder-browser.c: track the pane size if the user changes it.
    (emfb_set_folder): Added a bit of a mess that will select the
    first unread message the first time you visit a folder.
    (emfb_destroy): impelment.  clear up outstanding signal handlers.
    (emfb_list_built): Select the first unread message.  this isn't
    entirely reliable as yet, and not configurable at all.

    * em-format-html-display.c (em_format_html_display_set_animate)
    (em_format_html_display_set_caret_mode): guess? :)
    (efhd_attachment_button): dont desensitise the button, just dont
    hook onto it, otherwise it looks fugly.

    * em-folder-view.c (emfv_list_done_message_selected): dont lookup
    gconf values every time.  use g_timeout_add rather than
    gtk_timeout, remove fixme's.
    (emfv_setting_notify): listner for gconf changes, reflect
    internally.
    (emfv_setting_setup): setup listner for gconf, and read initial
    settings.
    (emfv_activate): use local copy of settings rather than snooping
    gconf.
    (emfv_caret_mode): propagate caret-mode to display

    * em-format-html-quote.c (efhq_format_message): remove gconf
    stuff, our parent already has citation colour.

    * em-format-html.c (efh_format_timeout): remove gconf stuff.
    (em_format_html_set_load_http, em_format_html_set_mark_citations):
    set options on formatter, re-renders if required.
    (type_builtin_table[]): text/* should go to text/plain, not
    text/enriched.

2003-09-04  Not Zed  <NotZed@Ximian.com>

    * em-utils.c (confirm_expunge): rename it to emu_confirm_expunge
    and remove leading whitespace before function.
    (em_utils_expunge_folder): we want to expunge the folder, not
    empty the trash.  Jeff didn't even run this once ...

    * em-popup.c: Lots of new features, 'global' popup menu's on a
    per-selection type, via factories, popup selections (targets), a
    standard factory for many menu items.
    (emp_apps_open_in): duh, fix uri using logic
    (emp_standard_menu_factory): only add apps to app list if
    !requires_terminal.

    * em-format-html-display.c (efhd_open_in, efhd_popup_free_items):
    moved to em-popup.c
    (efhd_popup_save_attachment, efhd_popup_save_message) 
    (efhd_popup_reply_sender, efhd_popup_reply_list) 
    (efhd_popup_reply_all, efhd_popup_forward): (re)moved to em-popup.c
    (efhd_attachment_popup): use enew popu stuff.
    (efhd_attachment_button): Scale the icons for mime-type icons.

    * em-folder-view.c (em_folder_view_disable_mask): removed
    ... moved to em-popup.
    (em_folder_view_get_popup_target): new method, get the selection
    target for the folder view.
    (emfv_html_popup_saveas, emfv_html_popup_link_open)
    (emfv_html_popup_link_copy, emfv_html_popup_address_send)
    (emfv_html_popup_address_add, emfv_format_popup_free_items): moved
    to em-popup.c
    (emfv_format_popup_event): use new popup stuff.
    (emfv_popup): use new popup stuff, but still just use all local
    menu's.

2003-09-03  Not Zed  <NotZed@Ximian.com>

    * em-folder-view.c (emfv_format_popup_event): implement, a popup
    menu for right-clicking on links and images.
    (emfv_html_popup_link_copy): implement.
    (emfv_init): setup an invisible for selection stuff.
    (emfv_destroy): free invisible

    * em-utils.c (em_utils_get_proxy_uri): utility to get the current
    system proxy setting.
    (emu_set_proxy): implementation.

    * em-camel-stream.[ch]: removed.

    * em-format-html.c (efh_url_requested, efh_format_timeout): use
    em_html_stream rather than em_camel_stream.
    (emfh_gethttp): set the system proxy on the new stream.
    (emfh_multipart_related_check): use puri rather than purin inside
    the loop - duh.
    (emfh_multipart_related_check): removed 'unrelated part' warning,
    they can be (and normally are) added by the callbacks.

    * em-format-html.h (EMFormatHTMLJob): s/estream/stream/

    * em-html-stream.[ch]: New subclass of emsyncstream, replacement
    for em-camel-stream.

2003-09-04  Jeffrey Stedfast  <fejj@ximian.com>

    * em-folder-browser.c (emfb_folder_expunge): Call
    em_utils_expunge_folder instead.

    * em-utils.c (em_utils_expunge_folder): New function.
    (confirm_expunge): Make private.

2003-09-04  Jeffrey Stedfast  <fejj@ximian.com>

    * em-folder-browser.c (emfb_folder_expunge): Confirm hat the user
    wants to expunge.
    (emfb_empty_trash): Implemented.

    * em-utils.c (em_utils_prompt_user): Make public (used to be
    e_question).
    (em_utils_confirm_expunge): New function to confirm that the user
    wants to expunge.
    (em_utils_empty_trash): New function to empty all Trash folders.

    * em-composer-utils.c: Get rid of e_question and use em-utils'
    em_utils_prompt_user() function instead.

    * em-format-html-quote.[c,h]: New formatter for quoting
    replies/forwards/etc.

    * em-utils.c (em_utils_quote_message): New function.
    (composer_set_body): Use the new em_utils_quote_message()
    function.
    (em_utils_temp_save_part): Only g_free mfilename if it was
    malloc'd.

    * mail-tools.c (mail_tool_quote_message): Removed.
    (mail_tool_forward_message): Removed.

2003-09-03  Jeffrey Stedfast  <fejj@ximian.com>

    * em-format.c (em_format_class_remove_handler): New function to
    remove a mime-type handler from a class.

    * em-format-html.c (efh_init): Set the CITATION bit for the
    default html flags.

    * em-format-html-display.c: Fixed some compiler warnings by adding
    appropriate includes.
    (efhd_multipart_signed): Don't write "inlined signature...".

2003-09-03  Not Zed  <NotZed@Ximian.com>

    * em-icon-stream.[ch]: New subclass of emsyncstream, write camel
    stream one side, creates an icon on the other.

    * em-sync-stream.[ch]: New file, an abstract class for creating
    write-any-thread-act-gui-thread stuff.  'em-camel-stream' will
    subclass this.

    * em-format-html-display.c (efhd_attachment_button): setup a job
    to write out an icon if the type is an image type, otherwise try
    and get the icon directly.  no caching yet.  the system icons
    aren't scaled properly either.
    (efhd_write_icon_job): async job to write out image content.

2003-09-02  Not Zed  <NotZed@Ximian.com>

    * em-format-html.c (emfh_new_job): renamed to
    em_format_html_job_new and made public.
    (emfh_queue_job): renamed to em_format_html_job_queue, and made
    public.

    * em-format-html.h: Made EMFormatHTMLJob a public structure.

2003-09-02  Not Zed  <NotZed@Ximian.com>

    * em-folder-view.h (struct _EMFolderView): track the uicomponent
    while we're activated.

    * em-message-browser.c (em_message_browser_window_new): kill
    warning.
    (emmb_init, emmb_finalise): kill printf

    * em-format-html.c (efh_format_header): Converted code from head
    from David Woodhouse <dwmw2@infradead.org>'s timezone display
    patch.
    (efh_format_text_header): support new flag, HEADER_HTML - header
    alredy in html format.

    * em-format-html-print.c (em_format_html_print_print): only ref
    print_config if != NULL.

    * em-folder-browser.c (emfb_tree_key_press): handle
    space/backspace in messagelist to scroll the message view.
    (emfb_create_view_menus): setup view menu's, this should probably
    live in message-list.
    (emfb_init): setup the folderbrowser enable map into the list.
    (emfb_enable_map): folder browser enable map

    * em-utils.c (em_utils_adjustment_page): new helper to scroll an
    adjustment up/down 1 page.

    * em-folder-view.c (emfv_list_double_click): implement, open
    window.
    (emfv_list_key_press): implement keybinding overrides.  Enhance
    delete key to undelete if everything is already deleted.
    (emfv_build_enable_mask): separate out enable mask creation.
    (emfv_popup): use above to get mask.
    (emfv_enable_menus): enable/sensitize menus, use the same disable
    mask system as used for the popups.
    (emfv_destroy): change to use g_source_remove on seen_id.
    (emfv_finalise): free up folders, clean up async event thing.
    (emfv_init): setup an async event handler
    (emfv_set_folder): handle hook/unhook of folder_changed events.
    (emfv_folder_changed): proxy folder changed to main thread, ignore
    the details of what changed.
    (emfv_gui_folder_changed): update the menu's to reflect any folder
    changes.
    (emfv_build_disable_mask): added CAN_THREADED.
    (em_folder_view_disable_mask): make public (rename from
    emfv_build_disable_mask).
    (emfv_enable_menus): changed to work on a list of arrays of
    enablers, so they can be subclassed.
    (emfv_init): add our enable map to the ui.
    (em_folder_view_disable_mask): added support for can hidden (there
    are hidden messages).

2003-09-01  Not Zed  <NotZed@Ximian.com>

    * em-popup.c: New, simple menu-merging popup menu implementation.
    NOTE: should be temporary, but needs something that has similar
    merging facilities.

    * em-folder-view.c (emfv_popup*): added popup callbacks, implement
    a popup menu, using em_popup.
    (emfv_message_*): replaced a whole bunch of one-line, or simple
    functions with macro's to map to the popup implementation.
    (emfv_tools_vfolder*, emfv_tools_filter*): map to popup
    equivalents.
    (emfv_init): drop printf

    * em-format-html-display.c (efhd_attachment_popup): use the
    em_popup stuff to build a dynamic menu.

    * em-utils.c (em_utils_temp_save_part): change assignment order ot
    kill warning.
    (emu_get_save_filesel): handle null/empty name by appending / to
    the filename.

2003-08-30  Not Zed  <NotZed@Ximian.com>

    * mail-search.glade: forgot to add this yesterday.

    * em-utils.h: don't include stuff we dont need to.

    * em-folder-view.c (emfv_message_forward): just call
    em_utils_forward_messages.
    
    * em-format-html-display.c (em_format_html_display_search):
    removed unused.
    (efhd_drag_data_get): cleanup, use em_utils_temp_save_part.
    (efhd_attachment_popup): quick hack, setup a bunch more menu
    items, for forwarding inline messages, hook up saving parts, and
    messages, and hook up the 'open in' menu.
    (efhd_open_in): implement.

    * em-utils.c (em_utils_save_message): Renamed to
    em_utils_save_part.
    (em_utils_filesel_prompt): removed, it just makes things more
    complex than having a single response handler.
    (em_utils_save_part): move dialog stuff here, it also creates a
    name based on the type of part its given.
    (emu_get_save_filesel): new method to create a fileselector with
    standard options.
    (emu_save_part_response): handle file selector response for save
    part.
    (can_save): renamed to emu_can_save
    (em_utils_save_messages): use get_save_filesel
    (emu_can_save): handle the path="" case
    (em_utils_save_part): Add a prompt argument.
    (filesel_ok_cb): removed.
    (emu_update_save_path): update the gconf save_dir setting.
    (em_utils_forward_messages): helper to forward using default
    style.
    (forward_non_attached): remove uids argument.
    (em_utils_forward_message): helper to forward a message using the
    default forward style.
    (forward_non_attached): removed folder argument.
    (em_utils_temp_save_part): helper to save a part to a temporary
    file, e.g. for dnd, app launch, etc.

2003-08-29  Not Zed  <NotZed@Ximian.com>

    * em-folder-view.c: set 'outgoing' properly.

    * em-folder-browser.c (emfb_tools_subscriptions): enforce a single
    instance of the subscribe editor.
    (emfb_subscribe_editor_destroy): clear subscribe editor handle.

2003-08-29  Not Zed  <NotZed@Ximian.com>

    * em-camel-stream.c (em_camel_stream_new): Added some optional
    logging code.
    (stream_close): and here.
    (stream_write): and here.

    * em-folder-browser.c (emfb_init): remove fixme about search bar,
    its there now.  also fixme's about dnd/selection, they are handled
    in lower-level widgets.
    (em_folder_browser_show_preview): dont exit if show preview set,
    but only if it hasn't changed.
    (emfb_view_hide_selected, emfb_view_show_all) 
    (emfb_view_hide_read): removed some spurious printfs.

    * Makefile.am (glade_DATA): Added mail-search.glade.  FIXME:
    should all glade files be merged into 1?

    * em-format-html-display.c (efhd_format_clone): remove search
    match count code from here - wont be finished rendering at this
    point anyway.
    (em_format_html_display_search): new api for running an
    interactive search popup.
    (efhd_update_matches, efhd_update_search)
    (efhd_search_entry_activate, efhd_search_case_toggled)
    (efhd_search_response): helpers/callbacks for search popup.
    (efhd_class_init): hook into complete signal on EMFormat.
    (efhd_complete): complete rendering handler, update match count.

    * em-folder-view.c: removed fixme about api's - yes, do need two
    set_folder api's.
    (emfv_edit_cut, emfv_edit_copy): removed printfs
    (emfv_edit_paste): removed commented call to html_paste, we never
    want to do that.

2003-08-29  Jeffrey Stedfast  <fejj@ximian.com>

    * em-folder-view.c (emfv_message_mark_unread): If there is a
    mark-as-read timeout handler registered, unregister it here.
    (emfv_tools_filter_mlist): Implemented.
    (emfv_tools_filter_recipient): Implemented.
    (emfv_tools_filter_sender): Implemented.
    (emfv_tools_filter_subject): Implemented.
    (emfv_tools_vfolder_mlist): Implemented.
    (emfv_tools_vfolder_recipient): Implemented.
    (emfv_tools_vfolder_sender): Implemented.
    (emfv_tools_vfolder_subject): Implemented.

2003-08-28  Not Zed  <NotZed@Ximian.com>

    * em-folder-browser.c (emfb_search_menu_activated)
    (emfb_search_config_search, emfb_search_search_activated)
    (emfb_search__query_changed): Implement search-bar callbacks.
    (emfb_init): setup search bar.

2003-08-28  Not Zed  <NotZed@Ximian.com>

    * em-folder-view.c (emfv_message_reply): common reply code entry
    point, also implement simple reply-to-highlighted text (currently
    disabled).
    (emfv_activate): disable resend message on non-sent folders.
    (emfv_message_reply_all, emfv_message_reply_list)
    (emfv_message_reply_sender): use message_reply for common code.
    (em_folder_view_open_selected): in drafts or outbox, edit the
    message instead.
    (emfv_activate): force a sync on deactivate.

    * em-utils.c (em_utils_selection_get_mailbox): get mailbox
    (message/rfc822?) selection data.
    (em_utils_read_messages_from_stream): helper to move stuff from a
    mbox stream to a folder.
    (em_utils_folder_is_drafts, em_utils_folder_is_sent)
    (em_utils_folder_is_outbox): from folder browser helpers for
    customising the user experience.

    * message-list.c (message_list_construct): hook onto dnd stufd.
    (ml_tree_drag_data_get): implement drag sending.
    (ml_tree_drag_data_received): implement drag recieving.

    * em-format-html-display.c (efhd_drag_data_get): implemented.
    (efhd_drag_data_delete): implemented.
    (efhd_attachment_button): setup dnd callbacks.

2003-08-28  Jeffrey Stedfast  <fejj@ximian.com>

    * em-folder-view.c (emfv_destroy): override the destroy method for
    GtkObject - unregister the mark-as-seen timeout if one is
    currently registered.
    (emfv_list_done_message_selected): Add the mark-as-seen timeout
    functionality here.
    (emfv_format_link_clicked): Implemented.

2003-08-27  Jeffrey Stedfast  <fejj@ximian.com>

    * em-utils.c (get_reply_list): Implemented.

2003-08-27  Not Zed  <NotZed@Ximian.com>

    * em-message-browser.c (emmb_activate): disable Edit->Paste menu
    always.

    * em-folder-browser.c (emfb_edit_paste): do a message-list paste,
    not a html one.
    (emfb_edit_cut, emfb_edit_copy, emfb_edit_paste): Moved to folder-view.

    * message-list.c (message_list_paste): trigger a paste action.
    (message_list_set_folder): added a uri argument, and save it
    internally, fixed all callers.
    (message_list_finalise): free the folder uri.

    * em-utils.c (em_utils_selection_set_mailbox): New helper to set
    the current selection as text in a berkely mailbox format.
    (em_utils_write_messages): helper to write stuff to a stream in
    mbox format.

2003-08-27  Not Zed  <NotZed@Ximian.com>

    * message-list.c (on_selection_changed_cmd): own/deown the primary
    selection when it changes.
    (message_list_init): init private data and invisible for
    selection.
    (message_list_destroy): free invisible.
    (message_list_finalise): free private data.
    (get_selected_cb): removed.
    (message_list_copy): new method to do copy and cut.  cut/copy to
    the clipboard.
    (ml_selection_clear_event): clear the right selection when
    requested.
    (message_list_has_primary_selection): helper to find out if the
    message-list has the selection.  is there a gtk way for this?

2003-08-26  Not Zed  <NotZed@Ximian.com>

    * mail-local.c (mlf_meta_set, mlf_meta_get): proxy meta-data stuff
    to subservient folder.

2003-08-23  Not Zed  <NotZed@Ximian.com>

    * em-folder-view.c (emfv_init): init preview here always.

2003-08-25  Jeffrey Stedfast  <fejj@ximian.com>

    * em-folder-view.c (em_folder_view_print): Use
    e_dialog_set_transient_for().
    (emfv_message_delete): Fixed a FIXME.

    * em-folder-browser.c (emfb_edit_cut): Implemented.
    (emfb_edit_copy): Implemented.
    (emfb_edit_paste): Implemented.

    * em-format-html-display.c (em_format_html_display_cut): New function.
    (em_format_html_display_copy): New.
    (em_format_html_display_paste): New.

2003-08-25  Jeffrey Stedfast  <fejj@ximian.com>

    * em-utils.c (em_utils_flag_for_followup): Use
    e_dialog_set_transient_for().
    (em_utils_filesel_prompt): Same.
    (post_reply_to_message): Here too.
    (em_utils_edit_filters): Same.
    (create_new_composer): And here.
    (em_utils_compose_new_message_with_mailto): Here too.
    (em_utils_post_to_url): "
    (redirect_get_composer): Same.
    (reply_get_composer): Again...

    * em-folder-browser.c (emfb_tools_filters): Implemented.

    * em-utils.c (em_utils_edit_filters): New function to open the
    filter editor dialog.

2003-08-22  Jeffrey Stedfast  <fejj@ximian.com>

    * em-utils.c (em_utils_flag_for_followup): Implemented.
    (em_utils_flag_for_followup_clear): Implemented.
    (em_utils_flag_for_followup_completed): Implemented.

    * em-folder-view.c (emfv_message_followup_flag): Implemented.
    (emfv_message_followup_clear): Implemented.
    (emfv_message_followup_completed): Implemented.

2003-08-22  Not Zed  <NotZed@Ximian.com>

    * em-camel-stream.c (em_camel_stream_new): now take the gtkhtml
    too, and hook onto it's destroy so we don't try writing anymore
    after its gone.
    (stream_write, stream_flush, stream_close, emcs_gui_received):
    NOOP if the gtkhtml has been destroyed.
    (emcs_gtkhtml_destroy): null out the stream when the gtkhtml gets
    destroyed, it is no longer valid.
    (emcs_gui_received): dont try to soak all outstanding events, it
    always runs synchronous anyway, just get one and exit.

    * em-format-html.c (efh_gtkhtml_destroy): if the gtkhtml gets
    destroyed, abort any pending timeouts/processing.
    (efh_format_source): fixed implementation to write out all
    headers.
    (efh_multipart_related, emfh_multipart_related_check): separate
    checking for unused parts into a separate job, which is run after
    previous ones are executed.  keep track of visibility tree level
    in job, etc.

2003-08-22  Jeffrey Stedfast  <fejj@ximian.com>

    * em-folder-browser.c (emfb_mail_compose): Implemented.
    (emfb_mail_post): Implemented.

    * em-utils.c (em_utils_compose_new_message): New function.
    (em_utils_compose_new_message_with_mailto): New.
    (em_utils_post_to_url): New.

2003-08-21  Not Zed  <NotZed@Ximian.com>

    * subscribe-dialog.glade: removed the text in the progress thing.
    It never showed up anyway and caused weird resizing stuff when the
    progress bar was active.

    * em-subscribe-editor.c: Found the correct version of the new
    subscribe code (on branch, duh!), and integrated it.
    (sub_selection_changed): Sensitise buttons based on selection.

    * em-format-html.c (efh_text_plain, efh_text_enriched)
    (efh_write_text_html): Use format_text for text output.
    (efh_write_image): use explicit image writer.
    (emfh_gethttp): added some progress stuff.
    (efh_format_do): maintain the accessible uri tree during jobs.
    (efh_url_requested): store the current uri accessibility tree node
    in the job, so it can be properly set for sub-jobs.
    (emh_multipart_related): moved here, can't use super-class version
    as it doesn't know about async jobs.
    (type_buildin_table[]): Added image/jpg and image/jpeg for the
    brokenmailers out there and to reduce the whinge.

    * em-format.c (em_format_format_content): For text parts, perform
    default charset/charset snooping/decoding.  No longer closes the
    stream once complete.
    (emf_write_related): close stream ourselves.

2003-08-21  Jeffrey Stedfast  <fejj@ximian.com>

    * em-folder-view.c (emfv_message_forward): Implemented.
    (emfv_message_forward_attached): Implemented.
    (emfv_message_forward_inline): Implemented.
    (emfv_message_forward_quoted): Implemented.
    (emfv_message_redirect): Implemented.
    (emfv_message_post_reply): Implemented.
    (emfv_message_reply_all): Implemented.
    (emfv_message_reply_list): Implemented.
    (emfv_message_reply_sender): Implemented.
    (emfv_message_resend): Implemented.
    (emfv_message_saveas): Implemented.

    * em-composer-utils.c: New source file containing all the composer
    send/draft callback mess.

    * em-utils.c (em_utils_uids_copy): New convenience function to
    copy a list of uids.
    (em_utils_uids_free): New convenience function to free a list of
    uids.
    (em_utils_save_message): New function to save a CamelMimeMessage
    (prompts the user for a location to save).
    (em_utils_save_messages): New function to save a list of messages
    (given a folder and list of uids).
    (em_utils_configure_account): Configure a new account...
    (em_utils_check_user_can_send_mail): Make sure the user has a
    transport setup.
    (em_utils_edit_message): New function to edit a message object.
    (em_utils_edit_messages): New function to open a composer to edit
    each message.
    (em_utils_forward_attached): New function to forward messages as
    an attachment,
    (em_utils_forward_inline): Forward a bunch of messages inline.
    (em_utils_forward_quoted): Forward a bunch of messages quoted.
    (em_utils_redirect_message): Redirect a message object.
    (em_utils_redirect_message_by_uid): Redirect a message given a
    folder and uid.
    (em_utils_reply_to_message): Reply to a message object.
    (em_utils_reply_to_message_by_uid): Reply to a message given a
    folder and uid.
    (em_utils_post_reply_to_message_by_uid): Post a reply to a message
    given a folder and uid.

    * mail-ops.c (filter_folder_free): Use em_utils_uids_free().
    (transfer_messages_free): Same.
    (get_messages_free): Here too.
    (save_messages_free): Same.

2003-08-20  Not Zed  <NotZed@Ximian.com>

    * em-subscribe-editor.[ch]: new widget, a dialog for editing
    subscriptions.

    * em-format-html.c (efh_format_done): emit a complete when done.

    * em-format.c (emf_class_init): Added a 'complete' signal, so that
    printing knows when to print.

    * em-format-html-print.c (em_format_html_print_print): Changed to
    take the message and source formatter too.  Runs an async render
    then prints.

2003-08-19  Not Zed  <NotZed@Ximian.com>

    * em-*.c: stacks more changes, added some bonobo menu setup, and
    implemented the trivial functions.

    * em-message-browser.[ch]: New message browser, inherits from
    em-folder-view.  Basically works.
    
    * message-list.c (message_list_select_uid): if we're selecting
    while still loading, setup a pending select.
    (regen_list_free): Check for a pending select, and select the
    message if we're now idle.

    * em-folder-view.c (em_folder_view_set_message,
    em_folder_view_set_folder): Make virtual macro's.
    (emfv_control_activate): added hook to enable bonobo state when setup.

    * em-format.c (emf_format_clone): base implementation, just clears
    state data.

    * em-format.h: change ::format to ::format_clone.  Make
    em_format_format_clone a macro/virtual method.

    * mail-mt.c (em_channel_setup): new function to setup i/o
    channels, so we can control the recursive flag.  leave off for
    now.
    (mail_msg_init): setup MsgPort channels using above.

    * em-format-html.c (efh_format): serialise/de-recursify formatting
    via a timeout function.
    (efh_format_timeout): keep polling to find out if cancellation is
    complete, then kick off a new render.

2003-08-18  Not Zed  <NotZed@Ximian.com>

    * em-*.c: more updates, incl threaded formatting queue.

2003-08-18  Jeffrey Stedfast  <fejj@ximian.com>

    * em-format-html-display.c (em_format_html_display_zoom_in): New
    method to zoom-in on the gtkhtml contents.
    (em_format_html_display_zoom_out): Same but for zoom-out
    (em_format_html_display_zoom_reset): You get the idea.

2003-08-12  Jeffrey Stedfast  <fejj@ximian.com>

    * mail-callbacks.c (invert_selection): Use
    message_list_invert_selection().
    (select_thread): Use message_list_select_thread().
    (select_all): Use message_list_select_all().

    * message-list.c (message_list_select_all): New function.
    (message_list_select_thread): New function.
    (message_list_invert_selection): New function.

2003-08-12  Jeffrey Stedfast  <fejj@ximian.com>

    * mail-session.c: Synced up with HEAD.

    * component-factory.c:

    * mail-folder-cache.[c,h]:

    * mail-tools.h:

    * mail-ops.[c,h]:

    * mail-send-recv.c:

    * mail-format.[c,h]:

    * mail-display.c:

    * mail-account-gui.c:

    * mail-local.c:

    * mail-offline-handler.c:

    * subscribe-dialog.c:

2003-08-12  Jeffrey Stedfast  <fejj@ximian.com>

    * em-format-html-display.c: Fixed some compiler warnings.

    * em-format.c: Updated for new mime-parser changes made to HEAD.

    * em-folder-view.c: Fixed some compiler warnings.

    * em-format-html.c: Fixed some compiler warnings.

2003-08-06  Not Zed  <NotZed@Ximian.com>

    * em-format-html-display.c (efhd_format_attachment): Added bonobo
    embeddables.

2003-08-01 Harry Lu  <harry.lu@sun.com>

    *Fix for bug #6951

    * mail-display.c (launch_cb): Bypass the new added menu item.
    (save_all_parts_cb): New function. Do the real save-all work.
    (save_all_parts): New function. Get the directory to save to.
    (save_all_cb): New function. The call-back function for the new 
    added menu item.
    (pixmap_press): Add the new menu item "Save All Attachment...".
    (ptr_array_free_notify): A simple wrapper function to free the
    pointer array.
    (do_attachment_header): Save attachment pointer in an array for 
    "Save All Attachment" use.

2003-08-01  Yuedong Du  <yuedong.du@sun.com>

    * message-browser.c (on_key_press): close mail message window
    using 'ESC' key, fix bug #47087

2003-07-28  Jeffrey Stedfast  <fejj@ximian.com>

    * mail-crypto.c: Removed smime functions as they were stale.

2003-07-25  Jeffrey Stedfast  <fejj@ximian.com>

    * message-browser.c (message_browser_new): Handle our own Delete
    key presses. Fixes bug #45597.

2003-07-25  Ettore Perazzoli  <ettore@ximian.com>

    * mail-callbacks.c (do_view_message): No need to pass a shell
    argument to message_browser_new() anymore.

    * message-browser.c (message_browser_new): Removed arg shell.  No
    need to pass it to folder_browser_new() either.

    * mail-component.c (create_view_callback): No need to pass a shell
    arg to folder_browser_factory_new_control() anymore.

    * folder-browser-factory.c (folder_browser_factory_new_control):
    Removed arg shell; folder_browser_browser_new() doesn't need it
    anymore.

    * folder-browser.c (folder_browser_destroy): No need to unref
    ->shell anymore.
    (folder_browser_new): Removed shell arg.
    (folder_browser_gui_init): Removed a const qualifier that was not
    supposed to be there.

    * folder-browser.h: Removed member shell from struct
    FolderBrowser.

2003-07-25  Ettore Perazzoli  <ettore@ximian.com>

    * folder-browser.c (folder_browser_gui_init): Get the search
    context through mail_component_peek_search_context(), since it's
    no longer a global variable.
    (folder_browser_gui_init): Cleaned up an extra unneeded if()
    statement.

    * mail-component.c: New member search_context in struct
    MailComponentPrivate.
    (mail_component_peek_search_context): New.
    (setup_search_context): New function to initialize the
    search_context, based on the old code in component-factory.c.
    (mail_component_init): Call it here.
    (impl_dispose): Unref the rule_context.

    * mail-component-factory.c: Removed global variable
    search_context.

2003-07-25  Ettore Perazzoli  <ettore@ximian.com>

    * mail-component.c (browser_page_switched_callback): New callback
    for the "page_switched" signal on EStorageBrowser; deactivate the
    previous page, activate the new one.
    (impl_createControls): Connect.

2003-07-24  Ettore Perazzoli  <ettore@ximian.com>

    * mail-mt.c (do_op_status): Pass "evolution-mail" as the ID to
    evolution_activity_client_new().  [This is just a temporary thing
    to avoid the fact that we don't have component-factory.h anymore.
    Eventually we'll just get rid of the activity client stuff.]

    * mail-component-factory.c: Added to the build.  Also, finished
    implementing and moving the factory over from component-factory.c.

    * component-factory.c: Removed from the build.
    * component-factory.h: Removed from the build.

    * mail-component.c: Removed some debugging messages.

2003-07-23  Ettore Perazzoli  <ettore@ximian.com>

    * subscribe-dialog.c: Converted to use EStorages instead of
    EvolutionStorages and the new MailComponent object.

    * mail.h: Nuked a bunch of stuff.  This will go away when I am
    done refactoring.

    * mail-offline-handler.c: Use the new MailComponent object.

    * mail-folder-cache.c, mail-folder-cache.h: Converted to use
    EStorages instead of EvolutionStorages.

    * mail-display.c: Use g_timeout and g_source functions instead of
    gtk_timeout functions.

    * mail-send-recv.c: Use g_timeout and g_source functions instead
    of gtk_timeout functions.
    (receive_update_got_store): Updated for the new mail_note_store().

    * mail-session.c: Use g_timeout and g_source functions instead of
    gtk_timeout functions.

    * mail-config-factory.c (factory): Removed.

    * folder-browser.c (folder_browser_destroy): Use GLib
    timeout/source functions instead of the deprecated GTK ones.
    (done_message_selected): Likewise.
    (folder_browser_gui_init): Protect against fb->search being NULL.

    * mail-account-gui.c (add_new_store): Use new MailComponent object
    and EStorages instead of EvolutionStorages.
    (mail_account_gui_save): Likewise.

    * mail-accounts.c (account_delete_clicked): Use new MailComponent
    object and EStorages instead of EvolutionStorages.
    (account_able_clicked): Likewise.
    (account_able_toggled): Likewise.

    * mail-autofilter.c: Use mail_component_peek_base_directory()
    instead of the evolution_dir global.
    * mail-callbacks.c: Likewise.
    * mail-config.c (uri_to_evname): Likewise.
    (mail_config_get_signature_list): Likewise.
    (delete_unused_signature_file): Likewise.
    * mail-display.c (mail_display_class_init): Likewise.
    * mail-importer.c (mail_importer_make_local_folder): Likewise.
    * mail-local.c (mlf_getv): Likewise.
    * mail-ops.c (uid_cachename_hack): Likewise.
    * mail-summary.c (generate_folder_summaries): Likewise.
    * mail-tools.c (mail_tool_get_local_inbox): Likewise.
    (mail_tools_folder_to_url): Likewise.
    * mail-vfolder.c (mail_vfolder_delete_uri): Likewise.
    (mail_vfolder_rename_uri): Likewise.
    (context_rule_removed): Likewise.
    (store_folder_deleted): Likewise.
    (store_folder_renamed): Likewise.
    (vfolder_load_storage): Likewise.
    (vfolder_editor_response): Likewise.
    (edit_rule_response): Likewise.
    (new_rule_clicked): Likewise.
    (vfolder_gui_add_rule): Likewise.
    * mail-session.c (main_get_filter_driver): Likewise.
    (mail_session_forget_password): Likewise.
    (mail_session_init): Get a base_directory arg.

    * component-factory.c, component-factory.h: Disabled a bunch of
    stuff to get it to compile in the new configuration.  These files
    will eventually go away when I am done refactoring this.

    * Makefile.am: Do not build importers, compile generate
    skels/stubs for Evolution.

    * GNOME_Evolution_Mail.server.in.in: Rename control factory to
    OAFIID:GNOME_Evolution_Mail_Factory2.  Add new component
    GNOME_Evolution_Mail_Component2.

    * mail-component-factory.c: New file implementing the Bonobo
    factory.

    * mail-component.c, mail-component.h: New files implementing the
    new mail component, using the new Evolution::Component IDL.

2003-07-23  Jeffrey Stedfast  <fejj@ximian.com>

    * mail-format.c (mail_format_data_wrapper_write_to_stream): Revert
    prior changes.

2003-07-23  Dan Winship  <danw@ximian.com>

    * folder-browser.c (message_list_drag_data_get): Fix type warnings
    (folder_browser_toggle_caret_mode): Remove unused variable.

    * folder-browser-ui.c (basename): remove unused function

    * mail-account-gui.c (mail_account_gui_build_extra_conf): Fix
    warnings

    * mail-callbacks.c (empty_trash): Remove unused variable.

    * mail-display.c: #include gal/widgets/e-gui-utils.h for
    e_auto_kill_popup_menu_on_selection_done

    * mail-importer.c: #include e-util/e-path.h for e_path_to_physical

    * mail-session.c (main_play_sound): don't declare filename to be
    const and then free it.

    * mail-vfolder.c (vfolder_edit_rule, vfolder_gui_add_rule): Fix
    casts

    * message-list.c (build_flat_diff): Fix a typo in the
    non-BROKEN_ETREE code

2003-07-16  Jeffrey Stedfast  <fejj@ximian.com>

    * mail-format.c (handle_multipart_encrypted): We don't have
    camel_pgp_mime_is_rfc2015_encrypted() anymore so just look at the
    protocol for now.
    (mail_format_data_wrapper_write_to_stream): Updated for the new
    way camel handles content objects.

2003-07-15  Federico Mena Quintero  <federico@ximian.com>

    * folder-browser.c (message_list_drag_data_received): Handle
    invalid URIs, or more likely, the last empty element in a URI list
    --- g_strsplit() will yield { "uri1", "", NULL }.  Fixes #46398.

    * component-factory.c (destination_folder_handle_drop): Likewise.

2003-07-15  Yuedong Du  <yuedong.du@sun.com>

    * mail-config.c: (config_write_style), (mail_config_init): remove
    the use of caret mode widget style.
    * mail-display.c: (display_notify), (mail_display_new): use new
    gtkhtml api to set caret mode.

2003-07-11  Antonio Xu  <antonio.xu@sun.com>

    * folder-browser-ui.c: Change the EditPaste mask to IS_0MESSAGE so
    that it is always activatable. Fixes bug #46018.

2003-07-04  Maxx Cao  <maxx.cao@sun.com>

    ** For bug #41839

    * mail-display.c (do_attachment_header): Attachment buttons made
    accessable with keyboard (focusable). "Inline" button is disabled
    when attachment can't be viewed inline.
    (do_signature): Signature button made accessable with keyboard
    (focusable).
    (button_press): Function changed to an event callback (originally
    gtkbutton signal callback).
    (popup_menu_placement_callback): Function added to place popup
    menu (of attachment) beside button when activated by keyboard.

2003-07-10  Yuedong Du  <yuedong.du@sun.com>

    * evolution-mail.schemas: add a gconf key corresponding to newly 
    introduced caret mode of gtkhtml widget.

    * folder-browser-ui.c: new verb handling, corresponding the new menu
    entry for the caret mode flag. 

    * folder-browser.h: declaration of new verb handler to the menu entry 
    that turn caret mode on/off. The function just set the new introduced
    gconf key.

    * folder-browser.c: ditto

    * mail-config.c: lstione to the new gconf key, and when caret mode 
    flag is set/unset,change the style of gtkhtml widget. see bug
    #44607.

2003-07-09  Jeffrey Stedfast  <fejj@ximian.com>

    * mail-crypto.h: Removed camel-pgp-mime.h, it no longer exists.

    * mail-format.c: Remove camel-pgp-mime.h

2003-07-07  Jeffrey Stedfast  <fejj@ximian.com>

    * mail-callbacks.c (mail_generate_reply): Use
    camel_strcase_hash/equal.

    * upgrade-mailer.c: Updated to use the camel-file-utils version of
    mkdir.

2003-07-02  Jeffrey Stedfast  <fejj@ximian.com>

    * mail-tools.c (mail_tool_forward_message): Strip the signature
    from the body text. Fixes bug #45523. While we're here, also fix
    the code to quote exactly the same way as the
    mail_tool_quote_message() function.
    (mail_tool_quote_message): The last arg should not be
    'want_plain', because that arg is for whether or not the body
    should be quoted.

    * folder-browser.c (message_list_drag_data_get): Apply a
    From-filter when dragging as a test/uri-list and
    message/rfc822. Fixes bug #45617. Also free the uids ptrarray for
    the text/uri-list case.

2003-07-01  Dan Winship  <danw@ximian.com>

    * mail-display.c (pixbuf_for_mime_type): Gone
    (pixbuf_gen_idle): Use e_icon_for_mime_type instead.

2003-06-27  Jeffrey Stedfast  <fejj@ximian.com>

    * message-list.c (filter_date): Use the newer utf8 versions of the
    e_strftime*() functions since our format strings are all now in
    UTF-8.

    * mail-display.c (mail_display_render): Use the newer
    e_utf8_strftime_fix_am_pm().

    * mail-callbacks.c (mail_generate_reply): Use e_utf8_strftime(),
    otherwise we can end up with invalid utf-8.

2003-06-25  Radek Doulik  <rodo@ximian.com>

    * mail-config.c (config_write_style): provide hardcoded default
    (red) spell error color

2003-06-24  Jeffrey Stedfast  <fejj@ximian.com>

    Might fix bug #45368 but I wouldn't bet on it.

    * message-browser.c (message_browser_new): Record the signal id
    for folder_loaded.
    (message_browser_folder_loaded): disconnect by id rather than
    searching for the handler. Save the id of the message_list_built
    signal handler.
    (message_browser_message_list_built): Disconnect the handler by
    id.
    (message_browser_destroy): Disconnect the signal handlers by id.

2003-06-20  Not Zed  <NotZed@Ximian.com>

    ** See bug #43887

    * mail-format.c (mail_get_message_body): handle text/enriched and
    text/richtext explictly, and dont treat them as text/plain.

2003-06-23  Radek Doulik  <rodo@ximian.com>

    * mail-config.c (config_write_style): add
    EvolutionMailPrintHTMLWidget style assignment

    * mail-callbacks.c (do_mail_print): set printing widget name

2003-06-23  Dan Winship  <danw@ximian.com>

    * message-list.c (on_selection_changed_cmd): Save the idle_id

2003-06-23  Larry Ewing  <lewing@ximian.com>

    * folder-browser.c (do_message_selected): make sure not to strcmp
    a possibly NULL string.

2003-06-19  Not Zed  <NotZed@Ximian.com>

    ** See bug #45063

    * folder-browser.c (do_message_selected): dont re-load if the same
    message gets selected again as one we've already shown.  Etree
    sends out selection changed events even when when it hasn't.

2003-06-18  Jeffrey Stedfast  <fejj@ximian.com>

    * message-list.c (hide_save_state): Only save state if we have a
    folder reference. Fixes some warnings about casting a NULL object
    to a CamelFolder.

2003-06-16  Jeffrey Stedfast  <fejj@ximian.com>

    * message-list.c (ml_tree_value_at): Don't display an unread icon
    for a parent message status if it has unread children but has been
    read itself. Instead, show that we have unread children by just
    making the message test bold (which it was already doing, so
    yay... this was easy). Fixes bug #42630.

2003-06-16  Not Zed  <NotZed@Ximian.com>

    ** See bug #44609

    * mail-vfolder.c (vfolder_edit_rule): put the ok/cancel buttons in
    the stupid gnome 2 order.

    ** See bug #33593

    * message-list.c (on_selection_changed_cmd): also listedn to
    selection changed events, since the etable api has changed.
    (get_selected_cb): helper for above.
    (message_list_construct): hook to selection change signal.

    * mail-callbacks.c (composer_send_queued_cb): Unref the composer
    to match the ref composer_send_cb();

    ** See bug #44519

    * message-browser.c (message_browser_message_list_built): We want
    to disconnect from the messagelist, not folderbrowser signal.

2003-06-11  Jeffrey Stedfast  <fejj@ximian.com>

    * mail-format.c (format_mime_part): We only really want to use
    mail_identify_mime_part() if the content-type is
    application/octet-stream - any other type (if it doesn't have a
    handler) should just force the user to save to disk.
    (handle_text_plain): Only pay attention to format=flowed if the
    mime-type is text/plain (handle_text_plain is the generic text
    handler, so we might be processing parts that are not really
    text/plain, thus the format param may have different meaning for
    those other textual types).

2003-06-11  Larry Ewing  <lewing@ximian.com>

    * mail-format.c (mail_lookup_handler): free the application list
    if we are bailing.

    * mail-send-recv.c (free_folder_info): free the info structure as
    well.

2003-06-06  Jeffrey Stedfast  <fejj@ximian.com>

    * message-tag-followup.c (get_week_start_day): Use mail-config's
    gconf client.
    (target_date_new): Same.

    * message-list.c (message_list_set_folder): Use mail-config's
    gconf client.
    (mail_regen_list): Same.

    * mail-tools.c (mail_tool_quote_message): Use mail-config's gconf
    client.
    (mail_tool_forward_message): Same.

    * mail-session.c (main_get_filter_driver): Use mail-config's gconf
    client.

    * mail-preferences.c (mail_preferences_init): Use mail-config's
    gconf client.
    (mail_preferences_finalise): Don't unref the gconf client.

    * mail-format.c (write_headers): Use mail-config's gconf client.
    (mail_format_data_wrapper_write_to_stream): Same.
    (handle_text_plain): And here.

    * mail-display.c (save_data_cb): Use mail-config's gconf client.
    (save_part): Same.
    (on_url_requested): Here too.
    (mail_text_write): And here.
    (mail_display_init): And here.
    (mail_display_destroy): Here too.
    (mail_display_new): Again here.

    * mail-composer-prefs.c (sig_add_cb): Use mail-config's gconf
    client.
    (mail_composer_prefs_construct): Same.

    * mail-callbacks.c (ask_confirm_for_unwanted_html_mail): Use
    mail-config's gconf client.
    (ask_confirm_for_empty_subject): Same.
    (ask_confirm_for_only_bcc): Here too.
    (composer_get_message): And here.
    (create_msg_composer): Again here.
    (mail_generate_reply): Same.
    (forward): And here.
    (transfer_msg_done): "
    (delete_msg): "
    (confirm_expunge): "

    * component-factory.c (owner_unset_cb): Use mail-config's gconf
    client.

    * folder-browser-ui.c (folder_browser_ui_add_message): Use the
    mailer's gconf client.
    (folder_browser_ui_add_list): Same.
    (folder_browser_ui_add_global): Here too.

    * folder-browser.c (save_cursor_pos): Use the mailer's gconf
    client.
    (folder_browser_set_message_preview): Same.
    (folder_browser_toggle_preview): Here too.
    (folder_browser_toggle_threads): And here.
    (folder_browser_toggle_hide_deleted): Here as well.
    (folder_browser_set_message_display_style): And here.
    (fb_resize_cb): Here.
    (paned_realised): And here.
    (done_message_selected): And everywhere...

    * mail-account-gui.c (sig_add_new_signature): Use the mailer gconf
    client.

    * mail-config.c (mail_config_get_gconf_client): New function to
    return the global GConfClient used by the mailer.
    (mail_config_write_on_exit): On exit, free our objects and such.
    (mail_config_signature_run_script): Use config->gconf.

2003-06-04  Jeffrey Stedfast  <fejj@ximian.com>

    * mail-callbacks.c (invert_selection): Get rid of the if-focused
    code, that will always prevent the etree from getting the
    selection inverted because the menu item will always have focus at
    this time. Fix for bug #43972.

2003-06-11  Not Zed  <NotZed@Ximian.com>

    ** See bug #22542
    
    * component-factory.c (storage_create_folder): If we're creating a
    folder on a vstore, popup a vFolder editor rather than failing.

2003-06-05  Not Zed  <NotZed@Ximian.com>

    ** Part of #42691.
    
    * importers/Makefile.am (BUILT_SOURCES): added server_DATA.

    * Makefile.am (%.server.in): create a proper implicit rule for
    temporary .in file.

2003-06-04  Not Zed  <NotZed@Ximian.com>

    ** See bug #43974

    * mail-tools.c (mail_tool_do_movemail): use a proper CamelURL to
    decode the uri, not hacky strcmp stuff.

    * mail-account-gui.c (extract_values): if we have an conf_entry,
    ignore username, hostname, and path ones, as these are handled
    implicitly in the url itself.  Came about because of the fix for
    #42838.

2003-06-03  Federico Mena Quintero  <federico@ximian.com>

    * mail-search.c (mail_search_construct): Put the buttons in HIG
    order; don't replace the label of the stock Find button.  Also,
    add Escape as a keybinding for the Close button (see why GTK+ is
    on crack on b.g.o #74221 and #101293).