-
Notifications
You must be signed in to change notification settings - Fork 32
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Python script to convert incoming Apple Mail mbox exports #114
base: master
Are you sure you want to change the base?
Conversation
This script allows users to import from Apple Mail, maintaining folder names and structure. Closes thunderbird#28
I suspect it would be worthwhile to link to the README from somewhere within the plugin interface, so users know that Apple Mail exports need an additional processing step. I don't know if you'd want that and I'm not sure where, so I'll leave that to you—what do you think @cleidigh? |
Great! Thanks again for helping me understand this issue, and for the fantastic plugin. |
@obar Thank you so much, you just gave a bit relief to the headache that I had the last days! I wanted to switch from Apple Mail 14.0 (on Big Sur 11.1) to Thunderbird 78.6.0. Maybe there is a way to implement a check for Apple Mail mbox files within the import functionality, that executes the script pre-import internally. |
Glad to hear this helped you! I don't think this should be strictly automatic as the transformation I've got happens in-place (transforming the file structure, though in theory it would be reversible), and it would add python dependency. However, I do think something could be done about the visibility of this solution. Right now as you mentioned, it's a little difficult to find. @cleidigh how do you feel about merging this pull request so the script is in the repo and mentioned in the readme? And perhaps there could be a note about the existence of this process on the import screen, for the vanishingly rare case of users who don't scour the readme before using a program? |
Should I change the path to the script in the pull request before it gets merged? |
@obar |
@obar |
Absolutely nothing to apologize for, very OK for this to be a low priority! It's open source, no big deadlines here. I think the only other documentation to add would be to point people to this in the import dialog window. Could there be a link there to the wiki page added from that dialog? Text could read something like "Note: to import from an Apple Mail export, a format conversion needs to happen first. See Thanks for merging this :) |
Wiki is online, so time to close this PR. Thanks for your contribution! |
This script allows users to import from Apple Mail, maintaining folder
names and structure.
Closes #28