Commit e6bd9abf e6bd9abff34c2d21f340bcec8f9666232f9860b5 by Alain Magloire

Update.

1 parent 2a86436d
Showing 1 changed file with 13 additions and 7 deletions
1 2001-07-02 Alain Magloire 1 2001-07-02 Alain Magloire
2 2
3 * imap4d/bye.c: call mailbox_save_attributes() when exiting. 3 * mailbox2/tcp.c: make it thread-safe.
4 it will save the attribute flags. 4 * mailbox2/bstream.c: Implement buffered stream.
5 * imap4d/close.c: Typo. 5 * mailbox2/pop3_stream.c: Use a buffered stream.
6 * imap4d/logout: Remove the mailbox_close() and mailbox_destroy() 6
7 it is being call imap4d_bye (). 7 2001-07-02 Alain Magloire
8 * imap4d/select.c (imapr3d_select0): call mailbox_save_attributes()
9 if a mailbox was already selected.
10 8
11 Feedback from Sergey for the need of saving the attribute flags 9 Feedback from Sergey for the need of saving the attribute flags
12 without expunging. Note, this is a hack, the code is taken from 10 without expunging. Note, this is a hack, the code is taken from
...@@ -21,6 +19,14 @@ ...@@ -21,6 +19,14 @@
21 * mailbox/mbx_mbox.c: New function mbox_save_attributes (), 19 * mailbox/mbx_mbox.c: New function mbox_save_attributes (),
22 implement saving the attribute flags in header field "Status:" 20 implement saving the attribute flags in header field "Status:"
23 21
22 * imap4d/bye.c: call mailbox_save_attributes() when exiting.
23 it will save the attribute flags.
24 * imap4d/close.c: Typo.
25 * imap4d/logout: Remove the mailbox_close() and mailbox_destroy()
26 it is being call imap4d_bye ().
27 * imap4d/select.c (imapr3d_select0): call mailbox_save_attributes()
28 if a mailbox was already selected.
29
24 2001-07-01 Alain Magloire 30 2001-07-01 Alain Magloire
25 31
26 * mail/util.c (util_strupper): The first implementation was 32 * mail/util.c (util_strupper): The first implementation was
......