README 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. _
  2. (_)___ _ _ _ __ ___
  3. | / __| | | | '_ \ / __|
  4. | \__ \ |_| | | | | (__
  5. |_|___/\__, |_| |_|\___|
  6. |___/
  7. isync/mbsync - free (GPL) mailbox synchronization program
  8. http://isync.sf.net/
  9. See AUTHORS for contact information.
  10. ``mbsync'' is a command line application which synchronizes mailboxes;
  11. currently Maildir and IMAP4 mailboxes are supported. New messages, message
  12. deletions and flag changes can be propagated both ways.
  13. ``mbsync'' is suitable for use in IMAP-disconnected mode.
  14. Synchronization is based on unique message identifiers (UIDs), so no
  15. identification conflicts can occur (as opposed to some other mail
  16. synchronizers).
  17. Synchronization state is kept in one local text file per mailbox pair;
  18. multiple replicas of a mailbox can be maintained.
  19. isync is the project name, while mbsync is the current executable name; this
  20. change was necessary because of massive changes in the user interface. An
  21. isync executable still exists; it is a compatibility wrapper around mbsync.
  22. * Features
  23. * Fine-grained selection of synchronization operations to perform
  24. * Synchronizes single mailboxes or entire mailbox collections
  25. * Partial mirrors possible: keep only the latest messages locally
  26. * Trash functionality: backup messages before removing them
  27. * IMAP features:
  28. * Supports TLS/SSL via imaps: (port 993) and STARTTLS (RFC2595)
  29. * Supports CRAM-MD5 (RFC2195) for authentication
  30. * Supports NAMESPACE (RFC2342) for simplified configuration
  31. * Pipelining for maximum speed
  32. * Compatibility
  33. isync should work fairly well with any IMAP4 compliant server;
  34. servers that support the UIDPLUS and LITERAL+ extensions are most
  35. efficient.
  36. Courier 1.4.3 is known to be buggy, version 1.7.3 works fine.
  37. c-client (UW-IMAP, Pine) is mostly fine, but versions less than 2004a.352
  38. tend to change UIDVALIDITY pretty often when used with unix/mbox mailboxes,
  39. making isync refuse synchronization.
  40. The "cure" is to simply copy the new UIDVALIDITY from the affected
  41. mailbox to mbsync's state file. This is a Bad Hack (TM), but it works -
  42. use at your own risk (if the UIDVALIDITY change was genuine, this will
  43. delete all messages in the affected mailbox - not that this ever
  44. happened to me).
  45. * Platforms
  46. At some point, ``isync'' has successfully run on:
  47. Linux, Solaris 2.7, OpenBSD 2.8, FreeBSD 4.3.
  48. Note that Cygwin cannot be reasonably supported due to restrictions
  49. of the Windows file system.
  50. * Requirements
  51. Berkley DB 4.2+
  52. OpenSSL for TLS/SSL support (optional)
  53. * Installation
  54. ./autogen.sh (only when building from git)
  55. ./configure
  56. make
  57. sudo make install
  58. * Help
  59. Please see the man page for complete documentation.