Changes between Version 4 and Version 5 of gmail-export-email
- Timestamp:
- Aug 2, 2016, 7:48:59 PM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
gmail-export-email
v4 v5 13 13 Once they do, unzip the link and you should have a folder called Mail and inside that folder is a file called "All mail Including Spam and Trash.mbox". 14 14 15 == Splitting your mbox file == 16 15 17 If this file is more than 16MB (and it probably is), then you will need to split it up into smaller chunks before you can import it. 16 18 … … 25 27 So - you may need to manually adjust each file by adding the top portion of each file that preceeds the From line to the end of the previous file. 26 28 29 If you are on a unix-like machine, you can also try this command: 30 31 {{{ 32 awk 'BEGIN{chunk=0} /^From /{msgs++;if(msgs==1000){msgs=0;chunk++}}{print > "chunk_" chunk ".txt"}' mbox 33 }}} 34 35 And lastly, if you find this tedious, please make a ticket and we can help you - please open a [wiki:newticket new ticket]. We may ask you to [wiki:faq/files/sftp copy your mbox file to your server] and we can help you import it. 36 27 37 Once you have your 15 MB files ready, tou can use this file to [wiki:roundcube-import-email import your email via roundcube].