Today, I set up a couple of Gmail accounts in mutt. I'm using offlineimap to do the syncing. I used this post as a guide. After the initial sync which took several hours, I logged into the web interface and found the Sent mail folder empty.
Is this normal? Is there a way I can set up mutt not to do that?
Edit:
[general]
ui = ttyui
accounts = Gmail, ...
pythonfile=~/.mutt/offlineimap.py
[Account Gmail]
localrepository = Gmail-Local
remoterepository = Gmail-Remote
Repository Gmail-Local]
type = Maildir
localfolders = ~/Mail/Gmail
[Repository Gmail-Remote]
type = Gmail
remoteuser = ...@gmail.com
remotepasseval = get_keychain_pass(account='...@gmail.com')
realdelete = no
nametrans = lambda folder: re.sub('.*Spam$', 'spam', re.sub('.*Drafts$', 'drafts', re.sub('.*Sent Mail$', 'sent', re.sub('.*Starred$', 'flagged', re.sub('.*Trash$', 'trash', re.sub('.*All Mail$', 'archive', folder))))))
.offlineimaprc– jw013 Aug 6 '11 at 5:29