i found the fix for the Subscribe/Unsubscribe page by Boomer:
"You have specified an Incorrect e-mail address"
in the subscribe part, change this
Code:
To subscribe to the newsletter, enter your email address and click "Subscribe".
<form
action="/store/mail/subscribe.php" method=get name=subscribeform2> <input type="text"
name="email" size="40">
Subscribe <input type=hidden
name=redirect value="customer"> </form>
to this
Code:
To subscribe to the newsletter, enter your email address and click "Subscribe".
<form
action="/store/mail/subscribe.php" method=get name=subscribeform2> <input type="text"
name="newsemail" size="40">
Subscribe <input type=hidden
name=redirect value="customer"> </form>
notice the name changed from email to newsemail
this fix worked with my version 4.0.17