I get the error : ERROR: Account XXX: no folder to sync (folderfilter issue?)
After doing a little bit of debugging, I found out that in my case, the issue is that the remotesep and the localsep are the same :
remotesep = remoterepos.getsep()
print(sep)
print(remotesep)
if (sep == os.path.sep or
sep == remoterepos.getsep() or
sep in remotefolder.getname()):
self.ui.warn('', "Ignoring folder '%s' due to unsupported "
"'%s' character serving as local separator."%
(remotefolder.getname(), localrepos.getsep()))
print("unsupported")
continue # Ignore unsupported folder name.
Here I always see that sep and remotesep are the same value (.) .
General informations
offlineimap -V
): 7.3.1It seems that offlineimap has a regression related to this commit : https://github.com/OfflineIMAP/offlineimap/commit/4208fd4a15edf575c8fbbc8a2a5bf7fcc0f980da
I didn't have this issue with 7.3.0
I get the error :
ERROR: Account XXX: no folder to sync (folderfilter issue?)
After doing a little bit of debugging, I found out that in my case, the issue is that the remotesep and the localsep are the same :
Here I always see that sep and remotesep are the same value (
.
) .Here is the shape of my config :