summaryrefslogtreecommitdiff
path: root/ext/standard/mail.c
Commit message (Collapse)AuthorAgeFilesLines
* Add default arguments to new internal mail function.Frank M. Kromann2002-07-021-1/+1
|
* - Be nice to users and allow them to check if the mail was sendDerick Rethans2002-07-021-1/+1
|
* - Disable 5th parameter to mail in safemodeDerick Rethans2002-07-021-5/+9
| | | | | @- Disabled the fifth parameter to the mail function in safemode. (Derick)
* Fixed: possible bufferunderrun (worst case == invalid free bytes counter)Stefan Esser2002-06-131-7/+15
| | | | | | | Fixed: isXXXX macros need (unsigned char) cast Fixed: bug#17746 - control chars are now filtered within "to" and "subject" parameters
* - Adjust for improved error messages from win32/sendmail.cMarkus Fischer2002-05-141-2/+8
|
* - WS fix.Markus Fischer2002-03-161-6/+6
|
* - Don't forget to close the handle.Markus Fischer2002-03-161-0/+1
|
* - Raise warning when trying to execute non-executeable shellMarkus Fischer2002-03-161-4/+16
| | | | | for mail delivery binary.
* Maintain headers.Sebastian Bergmann2002-02-281-1/+1
|
* Add a comment indicating that this return statement will never be reached.Jon Parise2002-01-271-1/+2
| | | | | # Perhaps it should just be removed?
* Update headers.Sebastian Bergmann2001-12-111-2/+2
|
* - switch to new paramter parserHartmut Holzgraefe2001-12-021-51/+24
| | | | | - make sure To: and Subject: do not end with a newline character
* 2nd phase in back-substitution those macro'sJeroen van Wolffelaar2001-09-251-4/+4
| | | | | I've got pretty much everything now...
* Back-substitute for Z_* macro's. If it breaks some extension (the script ↵Jeroen van Wolffelaar2001-09-251-2/+2
| | | | isn't optimal, it parses for example var->zval.value incorrect) please let me know.
* - Don't wrap lines... this is annoying while coding.Derick Rethans2001-09-091-2/+2
|
* More TSRMLS_FETCH work, and a bit of cleanupZeev Suraski2001-07-301-5/+9
|
* Redesigned thread safety mechanism - nua nuaZeev Suraski2001-07-281-1/+0
|
* Enable using an external mailer under windows.Shane Caraveo2001-07-081-13/+25
| | | | | | | | 1. this depends on the patch to fix tsrm I sent to dev 2. this provides backwards compatibility, as long as sendmail_path in the ini file is empty, the old internal mailer will be used, once sendmail_path is defined, the external sendmail program will be used. I tested with indigomail from www.indigostar.com, which provides the same command line interface as sendmail no linux.
* Needed for the prototype of php_escape_shell_cmd().Sascha Schumann2001-07-081-0/+1
|
* - Fix for the first part of Bug #11890Derick Rethans2001-07-051-6/+9
| | | | | | @- Fixed a bug that allowed users to spawn processes while using the 5th @ parameter to mail(). (Derick)
* used in extension(s) as wellDaniel Beulshausen2001-06-111-1/+1
|
* Fix folding and clean up some extensionsRasmus Lerdorf2001-06-061-2/+3
|
* vim-6 does folding - clean up a bunch of missing folding tags plusRasmus Lerdorf2001-06-051-1/+9
| | | | | some misguided RINIT and RSHUTDOWN calls in a few fringe extensions
* remove rogue ZEND_GET_MODULE()James Moore2001-04-021-4/+0
|
* UnixWare 7.1 does not have EX_TEMPFAIL or (as far as I can tell)Ben Mansell2001-03-211-0/+4
| | | | | a concept of a temporary failure response to pclose().
* - Fix copyright notices with 2001Andi Gutmans2001-02-261-1/+1
|
* - Added a new parameter to mail() which appends aditional command lineDerick Rethans2001-02-051-8/+25
| | | | | | | | parameters to the mail program. This is usefull to set the From headers correctly with the -f parameter to sendmail p.e. @- Added a new parameter to mail() which appends aditional command line @ parameters to the mail program. (Derick)
* @BeOS patch from svanegmond@bang.dhs.org modified somewhat by RasmusRasmus Lerdorf2001-01-211-0/+5
| | | | | BeOS patch from svanegmond@bang.dhs.org modified somewhat by Rasmus
* evaluate sendmail exit status, fixes unix side of bug #5630Hartmut Holzgraefe2000-08-031-1/+2
|
* ezmlm_hash() function also available for php4.Kristian Köhntopp2000-06-291-0/+31
|
* - ARG_COUNT(ht) -> ZEND_NUM_ARGS() mega patchAndi Gutmans2000-06-051-1/+1
|
* Use #ifdef COMPILE_DL_EXTNAME solely.Sascha Schumann2000-05-231-1/+1
|
* Update the license with the new clause 6Zeev Suraski2000-05-181-2/+2
|
* #if COMPILE_DLSascha Schumann2000-05-021-1/+1
| | | | | | | becomes #if defined(COMPILE_DL) || defined(COMPILE_DL_EXTENSION_NAME)
* Replace the various get_module() functions with a uniformSascha Schumann2000-05-021-1/+1
| | | | | ZEND_GET_MODULE(name) macro.
* phpinfo() prettyingColin Viebrock2000-04-051-2/+3
|
* @Cleaned up extension namespace (Stig)Stig Bakken2000-03-061-10/+0
| | | | | | Cleaned up extension namespace, and changed ext/standard into one single extension.
* the pipe is breaking all the timeZeev Suraski2000-02-191-2/+2
|
* Fine tune Andi's patchZeev Suraski2000-02-111-5/+5
|
* - Get rid of some more evil MSVC5's and switch standard/ to use PHP_WIN32Andi Gutmans2000-02-101-5/+5
|
* SAPIfication, Episode VI: Return of the SAPIZeev Suraski2000-02-101-6/+0
| | | | | | | | | | | | | | | Remove mostly all references to APACHE and CGI_BINARY from the code. - Apache include files are no longer included by any PHP code, except for the Apache SAPI module. - No server specific code is in any of the base PHP code. Still left to be done: - Eliminate any references to APACHE from the few remaining modules. - Move request_info.c's logic to SAPI - Modify the regex function names, and globals, so that we can always include them, without having to fear any interference with Apache; Always use the bundled regex library
* Happy Y2K patch! Happy new year (or the new millennium, depending on whetherSascha Schumann2000-01-011-1/+1
| | | | | you start counting at 0 or 1).
* - The tree compiles againZeev Suraski1999-12-181-1/+1
|
* More php3_ annihilationZeev Suraski1999-12-181-2/+2
|
* - Made PHP_VERSION and PHP_OS work againZeev Suraski1999-12-171-2/+2
| | | | | | - More php3_ cleanup @- Restored the PHP_VERSION and PHP_OS constants (Zeev)
* Clean up php3.*\.h files. The files itself are renamed, and references in allSascha Schumann1999-12-041-1/+1
| | | | | | .*\.[ch] files were changed. There is a slight chance that my script missed a few changes, please correct them manually.
* New Zend APISascha Schumann1999-09-251-13/+13
|
* Removed '3' from key functions in PHP (maintained compatibility throughZeev Suraski1999-08-021-6/+6
| | | | | php3_compat.h)
* More symbol work.Andrey Hristov1999-07-261-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | I've defined a few macros to help with module/request init/startup function definitions. Basically: PHP_MINIT_FUNCTION(module) PHP_MSHUTDOWN_FUNCTION(module) PHP_RINIT_FUNCTION(module) PHP_RSHUTDOWN_FUNCTION(module) PHP_MINFO_FUNCTION(module) These will expand to proper function prototypes. Now to specify these in the module entry, use: PHP_MINIT(module) PHP_MSHUTDOWN(module) PHP_RINIT(module) PHP_RSHUTDOWN(module) PHP_MINFO(module) I've updated all modules in ext/standard and everything from ext/apache to ext/db. If you can, please update your module to use these macros.
* A bunch of grunt work updating function entries and declarations.Andrey Hristov1999-07-241-1/+1
|