Commit 0cd21037 0cd21037f6b4b7f7ec9793efb5d26fe1a6409ff4 by Sergey Poznyakoff

Updated

1 parent c937544a
1 2003-03-13 Sergey Poznyakoff
2
3 Reorganized directory layout under mailbox/.
4
5 * configure.ac: Added mailbox/ subdirectories
6 * mailbox/Makefile.am: Likewise.
7 * po/POTFILES.in: Added missing files.
8 * mh/README: Updated
9
10 * mailbox/mbox/Makefile.am: New file
11 * mailbox/mbox/.cvsignore: New file
12 * mailbox/mbox/folder.c: Moved from ../
13 * mailbox/mbox/mbox.c: Moved from ../
14 * mailbox/mbox/url.c: Moved from ../
15 * mailbox/mbox/mboxscan.c: Moved from ../
16 * mailbox/mbox/mbox0.h: New file
17
18 * mailbox/mh/Makefile.am: New file
19 * mailbox/mh/.cvsignore: New file
20 * mailbox/mh/folder.c: Moved from ../
21 * mailbox/mh/mbox.c: Moved from ../
22 * mailbox/mh/url.c: Moved from ../
23
24 * mailbox/maildir/Makefile.am: New file
25 * mailbox/maildir/.cvsignore: New file
26 * mailbox/maildir/mbox.c: New file
27
28 * mailbox/imap/Makefile.am: New file
29 * mailbox/imap/.cvsignore: New file
30 * mailbox/imap/folder.c: Moved from ../
31 * mailbox/imap/mbox.c: Moved from ../
32 * mailbox/imap/url.c: Moved from ../
33
34 * mailbox/pop/Makefile.am: New file
35 * mailbox/pop/.cvsignore: New file
36 * mailbox/pop/folder.c: Moved from ../
37 * mailbox/pop/mbox.c: Moved from ../
38 * mailbox/pop/url.c: Moved from ../
39
40 * mailbox/folder_mbox.c: Moved to mbox/folder.c
41 * mailbox/mbx_mbox.c: Moved to mbox/mbox.c
42 * mailbox/url_mbox.c: Moved to mbox/url.c
43 * mailbox/mbx_mboxscan.c: Moved to mbox/mboxscan.c
44
45 * mailbox/folder_mh.c: Moved to mh/folder.c
46 * mailbox/mbx_mh.c: Moved to mh/mh.c
47 * mailbox/url_mh.c: Moved to mh/url.c
48
49 * mailbox/mbx_maildir.c: Moved to maildir/mbox.c
50
51 * mailbox/folder_imap.c: Moved to imap/folder.c
52 * mailbox/mbx_imap.c: Moved to imap/mbox.c
53 * mailbox/url_imap.c: Moved to imap/url.c
54
55 * mailbox/folder_pop.c: Moved to pop/folder.c
56 * mailbox/mbx_pop.c: Moved to pop/mbox.c
57 * mailbox/url_pop.c: Moved to pop/url.c
58
1 2003-03-11 Sergey Poznyakoff 59 2003-03-11 Sergey Poznyakoff
2 60
3 * auth/sql.c (mu_sql_authenticate): Bugfix. 61 * auth/sql.c (mu_sql_authenticate): Bugfix.
......
...@@ -17,6 +17,8 @@ The list of differences between Mailutils and the RAND implementation of MH: ...@@ -17,6 +17,8 @@ The list of differences between Mailutils and the RAND implementation of MH:
17 * All programs use usual GNU long options. The support for MH single-dash 17 * All programs use usual GNU long options. The support for MH single-dash
18 options is provided for backward compatibility. 18 options is provided for backward compatibility.
19 19
20 * UUCP addresses are not supported
21
20 * Format specifications 22 * Format specifications
21 23
22 ** New functions 24 ** New functions
......