mail-receiver
mail-receiver copied to clipboard
Password in imap url
When user is having password with spl char like @ , it parse the character after @ as host. For example,
imaps://[email protected]:soeme@[email protected]:993/Inbox
It will be parsed as
protocol : "imaps" username: "[email protected]" password : "soeme" host: "[email protected]"
Expected :- protocol : "imaps" username: "[email protected]" password : "soeme@123!!" host: "outlook.office365.com"
Sorry for late reply. You can manually parse URI before injecting to MailReceiver bean. Ref source code