Password reminder default from email address [solved]

Permalink
How do I set a default email address for the password reminder email?
Version Installed - 5.7.5.6

The server only allows authenticated mail accounts as a from adres. It can't be a random user adres.

The default from adres for form_blocks is set in the application/config/concrete.php

Contact forms have the correct from and replyto addresses

ANSWER
<?php
return array(
   'email' => array(
      'forgot_password' => array(
         'address' => 'no-reply@xxxx.xx'
        ),        
      'form_block' => array(
         'address' => 'no-reply@xxxx.xx'
        )
    ),
);
?>

c5dragon