@burnout426 said in Is there any way of extracting a password from an email account in Opera Mail?:
If you can still send messages in Opera Mail, you can log the outgoing connection while sending a test message.
Then, in the log file, the password will be exposed. If it's not in plain text, it'll be in base64 that you can decode.
decode.html:
<script> alert(atob("bXlwYXNzd29yZA==")); </script>
You'd replace the base64 data there with what you get from the log file, save and open decode.html in your browser.
Interesting! Can I send a message to myself though? Remember I have no problem receiving and sending email on this account with Opera Mail.