1aim / DELETE-THIS-mail-types

Encoding/Decoding (roughly read Generating/Parsing) of mails in rust, including limited unicode support
0 stars 0 forks source link

Add (more) encoding support for mime parameters (RFC 2231) #11

Open rustonaut opened 7 years ago

rustonaut commented 7 years ago

like param*=utf8'en-us'the%20content through because we might start without language support its: param*=utf8''the%20content and if splitting a param is supported there can be an *N betwenn the name and the tailing * e.g. param*0*=utf8''the%20content

Note that the tailing * marks that it's meant to be encoded/decodec. in param*0=value value can not use percent encoding

note param* is semantically the same parameter as param just with encoding (and language) support.

rustonaut commented 6 years ago

Having encoded parameter values is implemented without explicit language support. Sections and language support is not yet implemented.

rustonaut commented 6 years ago

changed title + labeled it as enhancement as the important basic functionality is done