Reputation: 497
I have an app in c# that receives and sends files in MIME format, but they aren't exactly mails.
I'm using MimeKit and I need that all parameter values be sourronded by double quotes (").
Does exist any configuration in MimeKit to do that?
Thanks!
Upvotes: 1
Views: 84
Reputation: 38593
MimeKit will quote parameter values only if they need to be quoted.
It is open source, though, so if you want it to quote everything, you can modify the code to do that.
Upvotes: 1