Ejecute la siguiente declaración:
SELECT *
FROM `core_config_data`
WHERE `path` LIKE '%email%'
LIMIT 0 , 30
Básicamente, puede editar los valores allí. Los principales que querrás ver son:
trans_email/ident_general/email
,
trans_email/ident_salse/email
y
trans_email/ident_support/email
PD
No obtengo un error al validar esa dirección de correo electrónico en 1.7.0.2, podría intentar una anulación local del siguiente Modelo:
app/code/core/Mage/Adminhtml/Model/System/Config/backend/Email/Address.php
desde:
protected function _beforeSave()
{
$value = $this->getValue();
if (!Zend_Validate::is($value, 'EmailAddress')) {
Mage::throwException(Mage::helper('adminhtml')->__('Invalid email address "%s".', $value));
}
return $this;
}
a
protected function _beforeSave()
{
$value = $this->getValue();
/*if (!Zend_Validate::is($value, 'EmailAddress')) {
Mage::throwException(Mage::helper('adminhtml')->__('Invalid email address "%s".', $value));
}*/
return $this;
}
Esto básicamente pasa por alto el proceso de validación.