isyncrc.sample 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. # Global configuration section
  2. # Values here are used as defaults for any following Mailbox section that
  3. # doesn't specify it.
  4. # SSL server certificate file
  5. CertificateFile /etc/ssl/certs/ca-certificates.crt
  6. # by default, expunge deleted messages (same as -e on command line)
  7. Expunge yes
  8. # by default delete messages in the local mailbox which no longer exist
  9. # on the server
  10. Delete yes
  11. # copy deleted messages to the IMAP "Trash" folder
  12. CopyDeletedTo "Trash"
  13. # my default username, if different from the local username
  14. User me
  15. #Port 143
  16. #Box INBOX
  17. # don't download messages larger than 200K bytes
  18. MaxSize 200000
  19. ###
  20. ### work mailbox
  21. ###
  22. Mailbox /home/me/Mail/work
  23. Host work.host.com
  24. Pass xxxxxxxx
  25. # define a shortcut so I can just use "isync work" from the command line
  26. Alias work
  27. # don't auto expunge messages in this box (overridden by -e on command line)
  28. Expunge no
  29. ###
  30. ### personal mailbox
  31. ###
  32. Mailbox /home/me/Mail/personal
  33. Host host.play.com
  34. # use a non-default port for this connection
  35. Port 6789
  36. Alias personal
  37. ###
  38. ### Remote mailbox over a SSH tunnel
  39. ###
  40. Mailbox /home/me/Mail/remote
  41. Host host.remote.com
  42. Tunnel "ssh -q host.remote.com /usr/sbin/imapd"
  43. Alias remote