summaryrefslogtreecommitdiff
path: root/ext/imap/php_imap.c
Commit message (Collapse)AuthorAgeFilesLines
...
* Fixed bug #22022 (Crash in imap_mail_compose() if the body is an empty array).Ilia Alshanetsky2003-02-031-1/+4
|
* Removed pointless checks.Ilia Alshanetsky2003-01-301-9/+3
|
* - Fixed stupid typo..foobar2003-01-241-1/+1
| | | | | # I will test before commit, I will test before commit...
* Fix bug: #21817 (only enable this if --with-kerberos is used)foobar2003-01-231-1/+1
|
* quota function fixes. Thanks Wez.Ilia Alshanetsky2003-01-201-6/+9
|
* Changed php_error to php_error_docref.Ilia Alshanetsky2003-01-201-116/+101
| | | | | | Removed pointless memory allocation checks. Memory leak fix inside quota functions.
* Fix bug: #21687, imap extension does not include gss authentication mechanismfoobar2003-01-181-1/+5
|
* Fixed memory leaks in imap_get_quota & imap_get_quotaroot.Ilia Alshanetsky2003-01-171-26/+9
| | | | | Removed pointless checks around array_init().
* Fix ZTS-ZE2 buildMarcus Boerger2003-01-041-26/+26
|
* Bump year.Sebastian Bergmann2002-12-311-1/+1
|
* fixing code styleFrank M. Kromann2002-12-071-4/+8
|
* Fixing a possible strcat on a NULL pointerFrank M. Kromann2002-12-061-1/+2
|
* Fix the use of "personal" information in To and Cc headersFrank M. Kromann2002-11-301-4/+23
|
* free alocated mem.Frank M. Kromann2002-11-271-5/+18
| | | | | minor changes in the layout
* Avoid , at the end of each string (to, cc and bcc)Frank M. Kromann2002-11-261-3/+3
|
* email address changeHartmut Holzgraefe2002-11-251-1/+1
|
* - Fix protos (resource instead of int for stream_id, fix some return protos,Markus Fischer2002-10-091-47/+47
| | | | | | consistent usage of options instead of flags). - Make imap_ping,imap_setquota and imap_setacl return a real (bool) now.
* Fixed bug #19280Ilia Alshanetsky2002-10-081-3/+9
|
* white space fixDan Kalowsky2002-09-191-35/+35
|
* Patch for Bug #19402 provided by Kevin Way (kevin.way@overtone.org)Dan Kalowsky2002-09-181-1/+35
|
* missed one section for #15630Dan Kalowsky2002-09-091-1/+2
|
* ws fixesfoobar2002-08-161-56/+55
|
* Silence a compiler warning, and returns the SUCCESS value on PHP_MINITDan Kalowsky2002-08-161-0/+1
|
* Comming a fix for a compile error found in Bug #15630Dan Kalowsky2002-08-141-4/+10
| | | | | # NOTE this is NOT the supplied patch in said bug for fixing imap_utf7_decode
* Removing the imap_popen command... because as Jani puts it "it never workedDan Kalowsky2002-08-051-219/+11
| | | | | and it never will work" until IMAP servers support this feature.
* Cleaning up the imap_get_quotaroot return array to remove useless dataDan Kalowsky2002-08-031-19/+0
|
* Adding in some BC for users to imap_get_quota() functionDan Kalowsky2002-08-011-0/+6
|
* removing the useless +1's on sizeof() and adding the mail_parameter for theDan Kalowsky2002-07-311-11/+8
| | | | | getquot inside the imap_get_quotaroot function. thank Jani.
* fixes a typo in the word "limit", adds the null character to the strlen,Dan Kalowsky2002-07-301-13/+15
| | | | | | and seems to make imap_get_quotaroot return the correct values despite cclients claim of "getquotaroot list improper".
* forgot to make the same change to imap_get_quota...Dan Kalowsky2002-07-261-6/+2
|
* Minor memory fix suggested by ZeevDan Kalowsky2002-07-261-6/+2
|
* Adding initial support for PHP imap_get_quotarootDan Kalowsky2002-07-261-0/+58
| | | | | | | # apparently c-client does not like Cyrus's GETQUOTAROOT return list this # is still be worked out, but all functionality should be there # Return array is still not very organized
* (PHP imap_get_quota) updated to properly reflect the RFC 2087 as perDan Kalowsky2002-07-261-11/+30
| | | | | | | bug #14673 @- imap_get_quota now allows multiple resource values to be returned, as per RFC 2087, closes bug #14673 (kalowsky, Sander Steffann)
* Make sure To addresses are parsed correct with RFC822.Frank M. Kromann2002-07-021-3/+27
|
* Switch from imap_sendmail.* to sendmail.c under Win32Frank M. Kromann2002-07-021-3/+48
|
* - Fix TSRM gotchaDerick Rethans2002-06-281-2/+2
|
* Unify error messagesDerick Rethans2002-06-281-34/+34
|
* - Fixed bug: #15595 (and possibly others too)foobar2002-06-271-39/+74
|
* - Cleaning up the mess..these are NOT zvals.foobar2002-06-271-17/+17
|
* - Fixed bug: #17999foobar2002-06-261-11/+12
| | | | | | - The errors should always be stored, but they are not supposed to be shown at request shutdown unless E_NOTICES are allowed.
* standardize a bit (we know its enabled :)Sterling Hughes2002-06-231-1/+0
|
* - Fix for bug #14410 (Patch by C. McCohy <mccohy@kyberdigi.cz>).Derick Rethans2002-06-131-0/+3
|
* - Fix for bug #17503Derick Rethans2002-05-291-2/+2
|
* Instead of calling mail_fetchheader_full() to retrieve the complete headerJon Parise2002-05-131-10/+3
| | | | | | | | | | information just to extract the message envelope, call mail_fetchenvelope(), which returns just what we need. This is simpler, faster, and saves the IMAP server some work. Submitted by: Adam Kauffman <adam.kauffman@mindspring.com>
* @Improve IMAP performance when dealing with large mailboxes.Jon Parise2002-05-121-31/+44
| | | | | Submitted by: Rob Siemborski <rjs3@andrew.cmu.edu>
* - Do the ssl_onceonlyinit() as last. This is how c-client createsfoobar2002-04-241-6/+9
| | | | | the linkage.c (used by Pine).
* Maintain headers.Sebastian Bergmann2002-02-281-1/+1
|
* Fixed segfault in imap_bodystruct() when called with an invalid messageVlad Krupin2002-01-121-0/+5
| | | | | number. Now it fails with a warning instead.
* Update headers.Sebastian Bergmann2001-12-111-2/+2
|
* fix #13801 (imap_rfc822_parse_adrlist changes arg1)Thies C. Arntzen2001-12-071-0/+1
|