contrib/ksmtpproxy: Fix typo
[navymail.git] / README
blobfb4f3381c0f78d2e7ee852b9ba37f5f3e7a4125a
1 ==============================================
2  Navymail - store and synchronize mail in Git
3 ==============================================
6 :Abstract:
8         TODO
11 TODO
12 ----
14 - document data structures
15 - simple man pages
16 - import maildir
17 - hash-msg, cat-msg
18 - add own header to msg
19 - filter out duplicate messages on import (only conditionally?)
20 - why import'ed mbox is only ~ 2.5 times smaller, compared to ~ 7-8 times
21   smaller after simple gzip on the whole file?
25 NOTES
26 -----
28 (direct to/from db)
29 git-hash-object   file    -> blob (also can create tree/commits)
30 git-cat-file      blob|tree|commit -> stdout      ; s.a. git-unpack-file
31                   NB: calls ls-tree(tree) for tree
32 git-commit-tree   tree    -> commit
33 git-mktree        blob(s) -> tree
35 (through index)
36 git-update-index  work -> index
37 git-write-tree    index   -> tree
38 git-read-tree     tree    -> index
40 (misc)
41 git-ls-files      ls(index|work)
42 git-ls-tree       ls(tree)
44 git-rev-list      traverse commits
46 ? git-update-ref / git-symbolic-ref    - update symref?
48 mbox(5)
51 .. bibliography
53 .. [Git] Linus Torvalds, Junio C Hamano, Shawn O. Pearce, Johannes Schindelin
54         et al. `Git - Fast Version Control System`.
55         http://git-scm.com/
57 .. [LadyBug] Julia Lawall, Yoann Padioleau, Rene Rydhof Hansen, Henrik Stuart,
58         Nicolas Palix, et al. `Coccinelle - A Program Matching and
59         Transformation Tool for System Code`.
60         http://coccinelle.lip6.fr/