summaryrefslogtreecommitdiff
path: root/ext/imap/php_imap.c
Commit message (Collapse)AuthorAgeFilesLines
* - Fixed bug #29334 (mail() provides incorrect message time header)foobar2005-08-071-1/+1
|
* - Bumber up yearfoobar2005-08-031-1/+1
|
* Missing part of the patch for bug #32589Ilia Alshanetsky2005-04-081-1/+1
|
* Fixed bug #32589 (Possible crash inside imap_mail_compose, with charsets).Ilia Alshanetsky2005-04-051-1/+2
|
* Simplify Code.Ilia Alshanetsky2005-02-201-4/+2
|
* check body for NULL before using and prevent segfaultsAntony Dovgal2005-01-251-0/+4
|
* destruct return_valueAntony Dovgal2005-01-211-0/+1
|
* fix error messageAntony Dovgal2005-01-201-1/+1
|
* fix segfault in imap_sort() - it segfaults when options is less than 0.Antony Dovgal2005-01-201-1/+6
| | | | | | it looks like c-client bug, but we still need a workaround. also, convert_to_string search criteria.
* fix segfault in imap_headerinfo() when fromlength or subjectlength are less ↵Antony Dovgal2005-01-201-3/+11
| | | | | | | than 0 + fix protos
* Fixed bug #31142 (crash, memory leak and data loss by imap_mail_compose).Ilia Alshanetsky2005-01-181-8/+33
|
* Fixed bug #31480 (Possible infinite loop in imap_mail_compose()).Ilia Alshanetsky2005-01-181-3/+2
|
* - Added check for IMAP 2005 versionfoobar2005-01-111-2/+4
|
* - Fixed the crash and leak.foobar2004-12-301-3/+1
|
* MFH: A leak is better(?) then a crash.Ilia Alshanetsky2004-12-301-0/+2
|
* Fixed typo.Ilia Alshanetsky2004-12-291-1/+1
|
* Fixed memory leaks.Ilia Alshanetsky2004-12-291-2/+6
|
* MFB: don't perform pointless operations.Ilia Alshanetsky2004-12-291-2/+1
|
* Fixed bug #31142 (imap_mail_compose() fails to generate correct output).Ilia Alshanetsky2004-12-221-12/+6
|
* Fixed possible crash in imap_mail_compose().Ilia Alshanetsky2004-12-211-0/+8
|
* More spaces -> tabs.Chuck Hagenbuch2004-08-121-11/+10
|
* Properly fix the msgno check inside imap_fetchbody().Ilia Alshanetsky2004-08-121-5/+5
|
* fix.Chuck Hagenbuch2004-08-121-2/+6
|
* Fixed bug #29209 (imap_fetchbody() doesn't check message index).Ilia Alshanetsky2004-07-211-13/+12
| | | | | # Initial Patch by tony2001 at phpclub dot net
* Fixed bug #28963 (Missing space for \0 in address allocation).Ilia Alshanetsky2004-07-041-1/+1
|
* Fixed various possible memory leaks.Ilia Alshanetsky2004-05-121-24/+16
|
* Fixed bug #26909 (crash in imap_mime_header_decode() when no encoding isIlia Alshanetsky2004-01-151-2/+6
| | | | | used).
* - Remove use of bogus macroAndi Gutmans2004-01-141-1/+3
|
* - A belated happy holidays and PHP 5Andi Gutmans2004-01-081-2/+2
|
* Added missing constants (bug #26831)foobar2004-01-081-0/+11
|
* proto fixRasmus Lerdorf2003-11-131-1/+1
|
* proto fixHartmut Holzgraefe2003-09-161-1/+1
|
* Register the TYPEMODEL constant from c-client's mail.h.Jon Parise2003-09-041-0/+2
|
* Fixed compiler warnings.Ilia Alshanetsky2003-08-281-1/+1
|
* emalloc -> safe_emallocIlia Alshanetsky2003-08-121-3/+3
|
* One more typo ;)Ilia Alshanetsky2003-06-171-1/+1
|
* Fixed a typo in the checkIlia Alshanetsky2003-06-171-2/+2
|
* Fixed bug #24150 (crash in imap_fetch_overview() &Ilia Alshanetsky2003-06-161-2/+6
| | | | | imap_rfc822_write_address())
* proto fixAndrey Hristov2003-06-161-1/+1
|
* Busted by the CS police.Ilia Alshanetsky2003-06-131-2/+2
|
* Added missing function protoIlia Alshanetsky2003-06-131-0/+3
|
* Fixed bug #24161 (No timeout value for imap functions)Ilia Alshanetsky2003-06-131-1/+70
| | | | | | | Added imap_timeout() that allows the user to specify as well as retrieve timeout values and set default timeout values based on the default_socket_timeout ini setting.
* Fixed bug #22505 (Allow imap_sort() and imap_search() to specify a charset)Ilia Alshanetsky2003-06-121-9/+15
|
* updating license information in the headers.James Cox2003-06-101-3/+3
|
* Adding imap_getacl, patch provided by Holger BurbachDan Kalowsky2003-05-201-0/+52
| | | | | | (holger.burbach@gonicus.de) @ Adding imap_getacl functionality. Function provided by Holger Burbach
* NIL, NULL, same thing, but changing for consistency sakeDan Kalowsky2003-05-201-1/+1
|
* Fixed bug #22939 (crash in imap_header_info()).Ilia Alshanetsky2003-04-161-0/+2
|
* Fixed proto to sync with the documentationMoriyoshi Koizumi2003-03-311-2/+2
|
* A add much more useful select(2) implementation than is provided byWez Furlong2003-02-161-1/+1
| | | | | | | | | | | | | windows sockets. The winsock implementation will only work with sockets; our implementation works with sockets and file descriptors. By association, stream_select() will now operate correctly with files, pipes and sockets. This change required linking against the winsock2 library. In terms of compatibility, only older versions of windows 95 do not have winsock2 installed by default. It is available as a redistributable file, and is most likely installed by any OS patches (eg: Internet Explorer) applied by the user. Also, add a win32 compatible pipe test when opening a stream from a pipe. This test will only work on NT, win2k and XP platforms. Without this test, interleaved fread() and select() calls would cause the read buffer to be clobbered. I will be working on a fix for this issue for win9x.
* Fixed bug #22048 (crash in imap_headers when the e-mail contains anIlia Alshanetsky2003-02-111-4/+32
| | | | | abnormally large number of special characters).