- Fix identities "reply-to" and "bcc" fields have a bogus value when left empty (#1487943)
| | |
| | | CHANGELOG Roundcube Webmail |
| | | =========================== |
| | | |
| | | - Fix identities "reply-to" and "bcc" fields have a bogus value when left empty (#1487943) |
| | | - Add popup with basic fields selection for addressbook search |
| | | - Case-insensitive matching in autocompletion (#1487933) |
| | | - Added option to force spellchecking before sending a message (#1485458) |
| | |
| | | |
| | | $domain = $is_utf ? idn_to_ascii($domain) : idn_to_utf8($domain); |
| | | |
| | | if ($domain === false) { |
| | | return ''; |
| | | } |
| | | |
| | | return $at ? $user . '@' . $domain : $domain; |
| | | } |
| | | |