Max Mazurov
Max Mazurov
I was always curious about the whole PGP+email idea you had when the writing PGP backends for go-imap and go-smtp. What's the point? If a person uses PGP - okay,...
Both ideas require trusted mail server and so are questionable. PGP wants to have only one source of trust: your key.
The first idea raises the complicated question about which key to use and how to obtain it. This is definitely the question about trust and you have to trust the...
I guess it might make sense to implement server-side encryption for mail storage to protect past messages in case of database compromise. PGP is a ready-to-use public key[1] infrastructure[2], though...
_Throwing ideas into air_ Module interface: ```go type Keyring interface { UnlockPrivateKey(username string, secretKey []byte) PrivateKey GetPublicKey(username string) PublicKey } ``` May be implemented by the underlying mail storage or...
>Hmm. I think we're not talking about the same feature in the end. I'm only considering the case where the server doesn't know the private key. Well, my whole idea...
>I've started to look at the code and still not sure that all these options are possible, but I would like to discuss and willing to do the PR :-)...
Note to self: Make sure this change is properly integrated into go-imap v2 branch.
I wonder what this issue exactly means. Delivery to UNIX spool directory with appropriate UID/GIDs set and stuff?
This PR can be a candidate for merge in v2.