Skip to content
Snippets Groups Projects
Commit 95ed0d3c authored by tbrehm's avatar tbrehm
Browse files

Fixed: FS#959 - Changeing email alias

parent e2ce4359
No related branches found
No related tags found
2 merge requests!46Master,!21Master
......@@ -303,6 +303,20 @@ class page_action extends tform_actions {
$app->db->query($sql);
}
//** If the email address has been changed, change it in all aliases too
if($this->oldDataRecord['email'] != $this->dataRecord['email']) {
//* Update the aliases
$forwardings = $app->db->queryAllRecords("SELECT * FROM mail_forwarding WHERE destination = '".$app->db->quote($this->oldDataRecord['email'])."'");
if(is_array($forwardings)) {
foreach($forwardings as $rec) {
$destination = $app->db->quote($this->dataRecord['email']);
$app->db->datalogUpdate('mail_forwarding', "destination = '$destination'", 'forwarding_id', $rec['forwarding_id']);
}
}
} // end if email addess changed
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment