forked from extern/egroupware
Only check for smtp server. As Klaus is going to create an emailadmin
profile allowing the user to set there own profiles and signatures, if no default imap server is defined in setup.
This commit is contained in:
parent
bee370fa61
commit
cd781c228c
@ -366,7 +366,7 @@ class setup_detection
|
||||
{
|
||||
$config_errors[] = lang("Your backup directory '%1' %2",$config['backup_dir'],$error_msg);
|
||||
}
|
||||
if (!$config['mail_server'] || !$config['mail_server_type'] || !$config['smtp_server'])
|
||||
if (!$config['smtp_server'])
|
||||
{
|
||||
$config_errors[] = lang('Missing or uncomplete mailserver configuration');
|
||||
}
|
||||
|
@ -39,7 +39,7 @@ function vfs_storage_mode($settings)
|
||||
|
||||
function mail_server($settings)
|
||||
{
|
||||
if (!$settings['mail_server'] || !$settings['mail_server_type'] || !$settings['smtp_server'])
|
||||
if (!$settings['smtp_server'])
|
||||
{
|
||||
$GLOBALS['config_error'] = lang('Missing or uncomplete mailserver configuration');
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user