Advertisement
Guest User

Untitled

a guest
Aug 1st, 2016
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.86 KB | None | 0 0
  1.  
  2. ```
  3. [general]
  4. accounts = Work, Personal
  5. maxsyncaccounts = 3
  6.  
  7. [Account Work]
  8. localrepository = Local
  9. remoterepository = Remote
  10.  
  11. [Repository WorkLocal]
  12. type = Maildir
  13. localfolders = ~/Maildir/Work
  14.  
  15. [Repository WorkRemote]
  16. remotehost = imap.gmail.com
  17. remoteuser = test@divvycloud.com
  18. remotepass = password
  19. type = IMAP
  20. ssl = yes
  21. holdconnectionopen = true
  22. keepalive = 120
  23. realdelete = yes
  24.  
  25.  
  26.  
  27.  
  28. [Account Personal]
  29. localrepository = Local
  30. remoterepository = Remote
  31.  
  32. [Repository PersonalLocal]
  33. type = Maildir
  34. localfolders = ~/Maildir/Personal
  35.  
  36. [Repository PersonalRemote]
  37. remotehost = imap.gmail.com
  38. remoteuser = test@gmail.com
  39. remotepass = password
  40. type = IMAP
  41. ssl = yes
  42. holdconnectionopen = true
  43. keepalive = 120
  44. realdelete = yes
  45.  
  46. ➜ ~ offlineimap
  47. OfflineIMAP 6.7.0.1
  48. Licensed under the GNU GPL v2 or any later version (with an OpenSSL exception)
  49. Thread 'Account sync Work' terminated with exception:
  50. Traceback (most recent call last):
  51. File "/usr/local/Cellar/offlineimap/6.7.0.1/libexec/offlineimap/threadutil.py", line 163, in run
  52. Thread.run(self)
  53. File "/usr/local/Cellar/python/2.7.12/Frameworks/Python.framework/Versions/2.7/lib/python2.7/threading.py", line 754, in run
  54. self.__target(*self.__args, **self.__kwargs)
  55. File "/usr/local/Cellar/offlineimap/6.7.0.1/libexec/offlineimap/accounts.py", line 248, in syncrunner
  56. self.remoterepos = Repository(self, 'remote')
  57. File "/usr/local/Cellar/offlineimap/6.7.0.1/libexec/offlineimap/repository/__init__.py", line 67, in __new__
  58. repostype = config.get('Repository ' + name, 'type').strip()
  59. File "/usr/local/Cellar/python/2.7.12/Frameworks/Python.framework/Versions/2.7/lib/python2.7/ConfigParser.py", line 607, in get
  60. raise NoSectionError(section)
  61. NoSectionError: No section: 'Repository Remote'
  62.  
  63.  
  64. Last 1 debug messages logged for Account sync Work prior to exception:
  65. thread: Register new thread 'Account sync Work' (account 'Work')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement