diff options
author | thomascube <thomas@roundcube.net> | 2006-08-20 14:06:30 +0000 |
---|---|---|
committer | thomascube <thomas@roundcube.net> | 2006-08-20 14:06:30 +0000 |
commit | 9960666abef914905768c5f9fb43c3de846b80c2 (patch) | |
tree | 1a0e833d4525c20bb36bd83aea894f88da1aee39 /program/include/main.inc | |
parent | 8d4bcda874962d81d9b1a86480538b40834d8040 (diff) |
Added support for Nox Spell Server; plus small bugfixes
Diffstat (limited to 'program/include/main.inc')
-rw-r--r-- | program/include/main.inc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/program/include/main.inc b/program/include/main.inc index 887668b47..1a2b8c793 100644 --- a/program/include/main.inc +++ b/program/include/main.inc @@ -439,12 +439,12 @@ function rcmail_login($user, $pass, $host=NULL) Inspired by Marco <P0L0_notspam_binware.org> */ // Check if we need to add domain - if ($CONFIG['username_domain'] && !strstr($user, '@')) + if (!empty($CONFIG['username_domain']) && !strstr($user, '@')) { if (is_array($CONFIG['username_domain']) && isset($CONFIG['username_domain'][$host])) $user .= '@'.$CONFIG['username_domain'][$host]; - else if (!empty($CONFIG['username_domain'])) - $user .= '@'.$CONFIG['username_domain']; + else if (is_string($CONFIG['username_domain'])) + $user .= '@'.$CONFIG['username_domain']; } |