quantranhong1999 opened a new pull request, #1697:
URL: https://github.com/apache/james-project/pull/1697
Currently, we are doing 2 times URL decoding for request param: 1 by Spark
and 1 by our own.
That leads to in some cases we need to encode 2 times which is not expected.
E.g we have a bug while creating forward with just 1-time encoding:
```
Original forward address: `[email protected]`
-> One-time encoded: `bob%2Btag%40b.com`
```
James today decodes the address 2 times:
```
1st decoding result: `[email protected]`
2nd decoding result: `bob [email protected]` => invalid Mail Address => Can not
create the valid forward...
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]