Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | vim-6 does folding - clean up a bunch of missing folding tags plus | Rasmus Lerdorf | 2001-06-05 | 1 | -2/+11 | |
| | | | | | some misguided RINIT and RSHUTDOWN calls in a few fringe extensions | |||||
* | Include the To: address in the overview information (already in the | Chuck Hagenbuch | 2001-05-30 | 1 | -0/+6 | |
| | | | | | envelope; it doesn't cost us anything). | |||||
* | imap_thread(), from Rob Siemborski <rjs3@andrew.cmu.edu>. | Chuck Hagenbuch | 2001-05-29 | 1 | -0/+101 | |
| | ||||||
* | This is not needed. ssl_onceonlyinit() is enough. | foobar | 2001-05-27 | 1 | -2/+1 | |
| | ||||||
* | * include "config.h" if HAVE_CONFIG_H is defined (for standalone dso build) | Stig Bakken | 2001-05-24 | 1 | -0/+4 | |
| | ||||||
* | make it possible to set the CHARSET parameter with imap_mail_compose() | Chuck Hagenbuch | 2001-05-24 | 1 | -0/+16 | |
| | | | | | (Johan Ekenberg <johan@ekenberg.se>) | |||||
* | @- Fix for bug 2181. Now zero is returned instead of an unset value for | Vlad Krupin | 2001-05-14 | 1 | -4/+4 | |
| | | | | | | | @ 7-bit encoding and plain text body type. Also, bogus types and encodings will not be returned any longer. Function imap_bodystruct() is also fixed in the same manner. | |||||
* | Fix broken build | Sascha Schumann | 2001-05-06 | 1 | -1/+1 | |
| | ||||||
* | Beutify phpinfo() output. | foobar | 2001-05-06 | 1 | -2/+10 | |
| | ||||||
* | Removed usused variables. | foobar | 2001-05-06 | 1 | -2/+0 | |
| | ||||||
* | Add support for in_reply_to header, and fix erealloc usage ("Johan Ekenberg" | Chuck Hagenbuch | 2001-05-04 | 1 | -9/+8 | |
| | | | | | <johan@ekenberg.se>). | |||||
* | add crash guard (valid message number check) to imap_body(). | Chuck Hagenbuch | 2001-05-03 | 1 | -6/+20 | |
| | ||||||
* | removing references to IMSP module, which will probably never be ported to | Chuck Hagenbuch | 2001-05-03 | 1 | -23/+4 | |
| | | | | | php4 (lack of a publically available library implementing it). | |||||
* | Fix for #8359. imap_fetchheader should never return the full message; the | Chuck Hagenbuch | 2001-05-03 | 1 | -11/+1 | |
| | | | | | | FT_PREFETCHTEXT flag is just a hint to c-client that you'll be asking for the message text next. | |||||
* | - More strncpy() -> strlcpy() changes. mm_login() doesn't seem to be used | Andi Gutmans | 2001-05-02 | 1 | -6/+6 | |
| | | | | | though. | |||||
* | fix whitespace pollution | Chuck Hagenbuch | 2001-05-02 | 1 | -1/+1 | |
| | ||||||
* | Fixes and improvements to imap_mail_compose (Johan Ekenberg | Chuck Hagenbuch | 2001-05-02 | 1 | -31/+120 | |
| | | | | | <johan@ekenberg.se>) | |||||
* | Add support for cram-md5 authentication in imap_open(). | Chuck Hagenbuch | 2001-05-02 | 1 | -0/+1 | |
| | ||||||
* | - Fix crash bugs when rfc822_qprint and rfc822_base64 return NULL | Andi Gutmans | 2001-04-30 | 1 | -0/+11 | |
| | ||||||
* | Fix for bug 9908: check that the result of mail_sort is not 0 before trying | Chuck Hagenbuch | 2001-04-23 | 1 | -7/+12 | |
| | | | | | | | to dereference the pointer. :) Also, free sort programs - this might have been a memory leak. | |||||
* | Use tabs instead of spaces. | Jon Parise | 2001-04-08 | 1 | -15/+15 | |
| | ||||||
* | Make compile again when ZTS is enabled and imap-2000 is used. Bug #9762 | foobar | 2001-03-16 | 1 | -1/+3 | |
| | ||||||
* | If php is compiled --with-imap-ssl, link in the SSL authenticator from | Chuck Hagenbuch | 2001-03-01 | 1 | -0/+4 | |
| | | | | | c-client so that we can use php to make ssl imap connections. | |||||
* | # Bad patch job on the last commit by me. I take the BAD_CODER award for | Dan Kalowsky | 2001-02-26 | 1 | -10/+4 | |
| | | | | | | | # the day. Removes two unnecessary REGISTER_MAIN_LONG_CONSTANT's. # what should be done about the PHP_MINFO_FUNCTION | |||||
* | Correctly checks for the proper header files, and excludes the QUOTA functions | Dan Kalowsky | 2001-02-26 | 1 | -3/+8 | |
| | | | | | | | | | | from non-imap2000 systems (unavailable for testing at this time). # anyone willing to test this out on non-imap2000? PR: Submitted by: Reviewed by: Sascha Schumann Obtained from: | |||||
* | - Fix copyright notices with 2001 | Andi Gutmans | 2001-02-26 | 1 | -1/+1 | |
| | ||||||
* | Updating the IMAP client to include quota support via the imap c-client2000 ↵ | Dan Kalowsky | 2001-02-25 | 1 | -29/+95 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | libraries. # Y2K support is good... Removes the SA_QUOTA and SA_QUOTA_ALL defines # After speaking with Mark Crispin, it is believed these never existed. Cleans up the imap_status() function to remove notion of quotas in a status message. # There is no quota setting in a STATUS message from c-client. Changes the config.m4 to support the client.h include # This should include all the approriate headers for c-client (as defined by # c-client maintainers) such as mail.h, and rfc822.h. Changed the directory search order for the include files as well. # Place the /usr/local/include last, and searched the # /usr/local/include/{c-client|imap} directories first (PHP imap_get_quota) Added (PHP imap_set_quota) Added @- IMAP quota support (imap_set_quota, imap_get_quota) enabled/added via @ c-client2000 PR: Submitted by: Reviewed by: Obtained from: | |||||
* | fix possible leak. | Thies C. Arntzen | 2001-02-21 | 1 | -0/+8 | |
| | ||||||
* | fixed a possible double-free | Thies C. Arntzen | 2001-02-18 | 1 | -2/+17 | |
| | ||||||
* | fixed possible leak in imap_search | Thies C. Arntzen | 2001-02-12 | 1 | -0/+2 | |
| | ||||||
* | Fix ZTS build which was broken by the last commit | Sascha Schumann | 2001-01-07 | 1 | -0/+2 | |
| | ||||||
* | imap_user and imap_password were freed too early. | foobar | 2001-01-07 | 1 | -3/+4 | |
| | | | | | PR: 8424 | |||||
* | Heads up people! | Zeev Suraski | 2000-12-22 | 1 | -2/+2 | |
| | | | | | | Updated the get_current_key() API - the relevant authors, please take a look at the updated code and make sure it's ok... | |||||
* | [whitespace] make this code a bit less dense. | Chuck Hagenbuch | 2000-12-10 | 1 | -34/+36 | |
| | ||||||
* | Use zend_register_list_destructors_ex() instead. | Andrei Zmievski | 2000-10-25 | 1 | -3/+3 | |
| | ||||||
* | Mega-patch to get better resource information for modules. | Andrei Zmievski | 2000-10-20 | 1 | -9/+12 | |
| | | | | | | | | | | | | | * Fixed a bug in zend_rsrc_list_get_rsrc_type() * Switched register_list_destructors() to use zend_register_list_destructors_ex() instead * Updated all relevant modules to provide the resource type name to register_list_destructors() call * Updated var_dump() to output resource type name instead of number @- Made resource type names visible, e.g. var_dump() and @ get_resource_type() display "file" for file resources. (Andrei) | |||||
* | add an optional parameter to imap_sort to specify a search program that | Chuck Hagenbuch | 2000-10-19 | 1 | -11/+18 | |
| | | | | | messages must match to be included in the sorted list. | |||||
* | fix imap_fetchstructure(). msgindex is not valid if we're using FT_UID; | Chuck Hagenbuch | 2000-10-17 | 1 | -6/+6 | |
| | | | | | always use Z_LVAL_PP(msgno) in the actual c-client function call. | |||||
* | *** empty log message *** | foobar | 2000-10-17 | 1 | -17/+31 | |
| | ||||||
* | check the range of message numbers in imap_uid. | Chuck Hagenbuch | 2000-09-09 | 1 | -1/+7 | |
| | ||||||
* | - Fix IMAP build problem | Zeev Suraski | 2000-08-24 | 1 | -2/+2 | |
| | | | | | - Allow external DLLs to use warn_not_available | |||||
* | Fix a crash in imap_fetchheader(). FT_PREFETCHTEXT isn't the only flag that | Chuck Hagenbuch | 2000-08-22 | 1 | -1/+1 | |
| | | | | | you can pass to mail_fetchheader_full(). | |||||
* | use estrndup and efree to hopefully avoid both munging of arguments and | Chuck Hagenbuch | 2000-08-18 | 1 | -1/+4 | |
| | | | | | leaking memory. | |||||
* | prevent mail_criteria from munging the variable passed in containing the | Chuck Hagenbuch | 2000-08-17 | 1 | -1/+1 | |
| | | | | | | query - just had to add a cpystr(). if this isn't the right fix, let me know, but it does work. | |||||
* | Cut and paste error? :) | Joey Smith | 2000-08-10 | 1 | -1/+1 | |
| | ||||||
* | Added missing 'subject'-key in envelope. | foobar | 2000-08-08 | 1 | -0/+4 | |
| | | | | | # I'm starting to think imap_mail_compose() should be rewritten from scratch.. | |||||
* | @- Fixed bug in imap_fetchheader() where using FT_PREFETCHTEXT didn't return | foobar | 2000-08-01 | 1 | -3/+15 | |
| | | | | | @ the body. Bug #4447. (Jani) | |||||
* | @- Fixed bug in imap_compose_mail() which caused crashes. (Jani) | foobar | 2000-07-29 | 1 | -37/+105 | |
| | | | | | | | # This one was only partly ported from php3. As some user pointed it out, # it was working in 3.0.x. But this needs further hacking. Some error # handlers, at least. Fixes bugs #3337 and #5084. | |||||
* | column size for date in imap_headers increased (see bug id #5699) | Hartmut Holzgraefe | 2000-07-21 | 1 | -3/+9 | |
| | ||||||
* | (imap_mail) Fixed a sizing of the arg parameter array. Was causing | Mike Waychison | 2000-07-14 | 1 | -1/+1 | |
| | | | | | | | | Seg-Faults if rpath was specified. @ Fixed a bug with imap_mail where apache would segfault if the rpath @ parameter was specified. # ouch. |