Hide DSN option in Preferences when smtp_server is not used (#1490666)

release-1.0
Aleksander Machniak 8 years ago
parent 3c988b0f08
commit 10f24c034b

@ -8,6 +8,7 @@ CHANGELOG Roundcube Webmail
- Fix bug where Archive/Junk buttons were not active after page jump with select=all mode (#1490647)
- Fix bug in long recipients list parsing for cases where recipient name contained @-char (#1490653)
- Fix additional_message_headers plugin compatibility with Mail_Mime >= 1.9 (#1490657)
- Hide DSN option in Preferences when smtp_server is not used (#1490666)
RELEASE 1.0.8
-------------

@ -739,7 +739,7 @@ function rcmail_user_prefs($current = null)
);
}
if (!isset($no_override['dsn_default'])) {
if (!isset($no_override['dsn_default']) && $RCMAIL->config->get('smtp_server')) {
if (!$current) {
continue 2;
}

Loading…
Cancel
Save