Summary | No mail listing at all |
Queue | IMP |
Queue Version | 4.0.3 |
Type | Bug |
State | Not A Bug |
Priority | 1. Low |
Owners | |
Requester | loginadmin (at) gmail (dot) com |
Created | 07/07/2005 (7324 days ago) |
Due | |
Updated | 07/11/2005 (7320 days ago) |
Assigned | 07/07/2005 (7324 days ago) |
Resolved | 07/11/2005 (7320 days ago) |
Github Issue Link | |
Github Pull Request | |
Milestone | |
Patch | No |
See http://bugs.php.net/bug.php?id=32244 for example.
kind of iconv library. One is from Glibc and the other from GNU.
Glibc use the name iconv, so the GNU one was named libiconv. I guess
Linux happens to use GNU, so there is no issue on Linux. However, You
might face same issue on other OS such as Solaris....
For detail, please look at
http://hk2.php.net/manual/en/function.iconv.php
Scroll to bottom on the comment at 16-Nov-2004 03:53
There doesn't even exists a function like that in PHP.
If this is really true please make an urgent bug report at FreeBSD.
when they compile iconv and if they use the GNU iconv, you can not use
the iconv function. You will have to use libiconv() instead. The
problem lies at lib/Horde/String.php at around line 104 which is
trying to call @iconv function. Since it start with the "@" sign, no
error is printing on screen. In the String.php, you can add the
following code should solve the issue.
if (!function_exists('iconv') && function_exists('libiconv')) {
function iconv($input_encoding, $output_encoding, $string) {
return libiconv($input_encoding, $output_encoding, $string);
}
}
State ⇒ Not A Bug
doesn't segfault, the empty list is exactly what we get back from the
PHP imap extension.
If you need more help fixing this (PHP or c-client) issue, ask on the
mailing list.
thing. Any folder with email that has non-english character in the
subject line, the whole folder won't dispaly the listing. Any more
suggestion?
version, sometimes even downgrading fixes things.
see if that solve the problem?
those have seg fault error. I have tried to create an new email
account. As long as I send email with subject in English, I can see
the mail listing just fine, but as soon as any email with subject
other than English, the mail listing is gone.....
State ⇒ Feedback
Priority ⇒ 1. Low
is most likely the fault of a broken c-client version.
Priority ⇒ 3. High
Type ⇒ Bug
Summary ⇒ No mail listing at all
Queue ⇒ IMP
New Attachment: mail.jpg
State ⇒ Unconfirmed
at all as you can see the the attached screenshots. I found that if
the mailbox contains email subject that is *not* in english, it will
not display *any* email.