mirror of
https://github.com/d99kris/nmail.git
synced 2026-04-26 17:56:00 +03:00
[GH-ISSUE #20] [Feature request] Add option to save copy of sent emails in IMAP folder #19
Labels
No labels
bug
enhancement
pull-request
question
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/nmail#19
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @d99kris on GitHub (Jan 28, 2020).
Original GitHub issue: https://github.com/d99kris/nmail/issues/20
Originally assigned to: @d99kris on GitHub.
Refer to #15 - Thunderbird supports a configurable option to save outgoing emails. While some email providers (GMail, Outlook, etc) automatically handles this on server-side, there are some email providers (Disroot) that does not. And technically SMTP is a separate protocol from IMAP, so it probably makes sense to support the storing on client side.
The proposal is to add a configurable option (true/false?) whether to save outgoing emails in the configured "sent" folder. Setup wizards need to have appropriate default values based on server-side capabilities.
@Kabouik commented on GitHub (Jan 28, 2020):
Just to make sure I got it right, the feature would be about making nmail save sent mails in the "Sent" folder on the server, not just (or at all?) locally, right?
Thanks for opening this issue by the way! It's great to see how actively you're improving nmail.
[Edit] I believe the same issue exists with Yandex, although that was not a thorough testing at all, just opportunistic observation that needs to be confirmed with proper testing.
@d99kris commented on GitHub (Jan 29, 2020):
Right! Sorry my wording was a bit ambiguous, but yes I meant that
nmailwould (only) save the email in the server IMAP "Sent" folder.Ok, thanks for the extra data point. In any case it seems other email clients supports this type of functionality, so it makes perfect sense for
nmailto support it as well.@d99kris commented on GitHub (Feb 7, 2020):
I've implemented support for this now. The easiest way to enable it on an existing account setup is to build/install latest nmail and start it and exit again. The proceed to edit
~/.nmail/main.confand fill out sent folder name for parametersent=and set the flag to enable client side upload of sent messages:client_store_sent=1. Please let me know if any issues are encountered. Thanks!