Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
ISPConfig
ISPConfig 3
Commits
98302dea
Commit
98302dea
authored
Mar 17, 2010
by
tbrehm
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed: FS#1122 - Corrupted email aliases and fetchmail settings after open mailbox settings.
parent
f49e5154
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
interface/web/mail/mail_user_edit.php
interface/web/mail/mail_user_edit.php
+2
-1
No files found.
interface/web/mail/mail_user_edit.php
View file @
98302dea
...
...
@@ -304,7 +304,8 @@ class page_action extends tform_actions {
}
//** If the email address has been changed, change it in all aliases too
if
(
$this
->
oldDataRecord
[
'email'
]
!=
$this
->
dataRecord
[
'email'
])
{
if
(
isset
(
$this
->
dataRecord
[
'email'
])
&&
$this
->
oldDataRecord
[
'email'
]
!=
$this
->
dataRecord
[
'email'
])
{
//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'
])
.
"'"
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment