Changeset 4010 in subversion
- Timestamp:
- Sep 29, 2010 8:36:53 AM (3 years ago)
- Location:
- trunk/plugins
- Files:
-
- 5 edited
-
managesieve/managesieve.php (modified) (1 diff)
-
new_user_dialog/new_user_dialog.php (modified) (2 diffs)
-
new_user_identity/new_user_identity.php (modified) (1 diff)
-
virtuser_file/virtuser_file.php (modified) (1 diff)
-
virtuser_query/virtuser_query.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/plugins/managesieve/managesieve.php
r3939 r4010 65 65 $host = rcube_parse_host($this->rc->config->get('managesieve_host', 'localhost')); 66 66 $port = $this->rc->config->get('managesieve_port', 2000); 67 68 $host = idn_to_ascii($host); 67 69 68 70 // try to connect to managesieve server and to fetch the script -
trunk/plugins/new_user_dialog/new_user_dialog.php
r3841 r4010 63 63 'type' => 'text', 64 64 'name' => '_email', 65 'value' => $identity['email'],65 'value' => idn_to_utf8($identity['email']), 66 66 'disabled' => ($identities_level == 1 || $identities_level == 3) 67 67 ))); … … 112 112 if ($identities_level == 1 || $identities_level == 3) 113 113 $save_data['email'] = $identity['email']; 114 else 115 $save_data['email'] = idn_to_ascii($save_data['email']); 114 116 115 117 // save data if not empty -
trunk/plugins/new_user_identity/new_user_identity.php
r3841 r4010 41 41 $args['user_name'] = $results->records[0]['name']; 42 42 if (!$args['user_email'] && strpos($results->records[0]['email'], '@')) { 43 $args['user_email'] = $results->records[0]['email'];43 $args['user_email'] = idn_to_ascii($results->records[0]['email']); 44 44 } 45 45 } -
trunk/plugins/virtuser_file/virtuser_file.php
r3560 r4010 41 41 42 42 if (count($arr) > 0 && strpos($arr[0], '@')) { 43 $result[] = trim(str_replace('\\@', '@', $arr[0]));43 $result[] = idn_to_ascii(trim(str_replace('\\@', '@', $arr[0]))); 44 44 45 45 if ($p['first']) { -
trunk/plugins/virtuser_query/virtuser_query.php
r3548 r4010 45 45 if ($p['extended'] && count($sql_arr) > 1) { 46 46 $result[] = array( 47 'email' => $sql_arr[0],47 'email' => idn_to_ascii($sql_arr[0]), 48 48 'name' => $sql_arr[1], 49 49 'organization' => $sql_arr[2], 50 'reply-to' => $sql_arr[3],51 'bcc' => $sql_arr[4],50 'reply-to' => idn_to_ascii($sql_arr[3]), 51 'bcc' => idn_to_ascii($sql_arr[4]), 52 52 'signature' => $sql_arr[5], 53 53 'html_signature' => (int)$sql_arr[6],
Note: See TracChangeset
for help on using the changeset viewer.
