I'm a satisfied user of roundcube 1.1.0.
Does anyone know of any way to enable per-recipient Sent folders?
For example, I'd like to configure all email sent to
[email protected] to automatically go into a folder named something like "sent-user1", all email sent to
[email protected] to automatically go into to a folder named "sent-user2", and outgoing email to all other users to go into the normal Sent folder.
I couldn't find any plugins which support this feature, but perhaps I haven't been looking in the right places.
Thanks for any suggestions.
.
I don't know of a plugin that does this but could could code one that would.
I think the easiest way would be to use a sieve filter for that.
Something like:
- BCC all outgoing email to yourself
- Sieve script to catch all mails with BCC to self header
- Examine TO header and (auto) create folder to move into
- Store the rest into SENT
- Additionally: Somehow keep your MUA from storing sent mail on server to prevent duplicates