isyncrc.sample 1.1 KB

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