Merge branch 'master' of github.com:roundcube/roundcubemail
| | |
| | | // 5: domain-username |
| | | // 6: username_domain |
| | | // 7: domain_username |
| | | $rcmail_config['password_virtualmin_format'] = 0; |
| | | // 8: username@domain; mbox.username |
| | | $rcmail_config['password_virtualmin_format'] = 8; |
| | | |
| | | |
| | | // pw_usermod Driver options |
| | |
| | | $pieces = explode("_", $username); |
| | | $domain = $pieces[0]; |
| | | break; |
| | | case 8: // domain taken from alias, username left as it was |
| | | $email = $rcmail->user->data['alias']; |
| | | $domain = substr(strrchr($email, "@"), 1); |
| | | break |
| | | default: // username@domain |
| | | $domain = substr(strrchr($username, "@"), 1); |
| | | } |