Opened 5 years ago

Closed 5 years ago

#1485033 closed Bugs (duplicate)

Domains with å ä ö

Reported by: blodan Owned by:
Priority: 5 Milestone:
Component: Core functionality Version: 0.1.1
Severity: minor Keywords:
Cc:

Description

Hi,

I just got a client which got a domain with å ä ö in it (trägårdsgrävarna.se), doesnt seem that roundcube converts the å ä ö to the real dns name when logging in and sending emails.

I noticed that gmail doesnt have support for this either but outlook does so this is a pretty obvious feature missing for most europeans, or at least scandinavians

When i try to send a mail to a email like "test@trädgårdsgrävarna.se" roundcube sais enter a recipient, which i obviously did, roundcube should convert the address to "test@…" and then send it, same goes when sending the login to the mailserver, it now tries to login with username@trädgårdsgrävarna, but should try to login with username@…

Im running roundcube 0.1.1 with hmailserver 4.4.1

Change History (3)

comment:1 Changed 5 years ago by till

I propose we use Net_IDNA:
http://pear.php.net/package/Net_IDNA

It's lglp licensed, so no new issues from there.

comment:2 Changed 5 years ago by rosali

I have already fixed this issue in my customized/modified RoundCube.

Just convert $_POST_user? from UTF-8 to ISO 8859-1 on login:

$_POST_user? = rcube_charset_convert($_POST_user?, "UTF-8", "ISO-8859-1");

Everything else can be done on the MTA backend:

Real user: username@trägårdsgrävarna.se
Aliased user: username@…

-Roland

comment:3 Changed 5 years ago by thomasb

  • Milestone 0.2-alpha deleted
  • Resolution set to duplicate
  • Severity changed from major to minor
  • Status changed from new to closed

Duplicate of #1483894

Note: See TracTickets for help on using tickets.