summaryrefslogtreecommitdiff
path: root/win32/sendmail.c
Commit message (Collapse)AuthorAgeFilesLines
* Fix bug #70145 From field incorrectly parsed from headersAnatol Belski2015-08-191-17/+38
|
* fix thread safetyAnatol Belski2015-07-291-1/+1
|
* Improved zend_string API (Francois Laupretre)Dmitry Stogov2015-06-291-1/+1
| | | | | | | | | | | | | | | | | | | | Squashed commit of the following: commit d96eab8d79b75ac83d49d49ae4665f948d15a804 Author: Francois Laupretre <francois@tekwire.net> Date: Fri Jun 26 01:23:31 2015 +0200 Use the new 'ZSTR' macros in the rest of the code. Does not change anything to the generated code (thanks to compat macros) but cleaner. commit b3526439104ac7a89a8e0c79dbebf33b22bd01b8 Author: Francois Laupretre <francois@tekwire.net> Date: Thu Jun 25 13:45:06 2015 +0200 Improve zend_string API Add missing methods
* add vim modelinesAnatol Belski2015-05-201-0/+9
|
* fix thread safety for win32/sendmailAnatol Belski2015-03-031-56/+39
|
* avoid this pointers playAnatol Belski2015-03-031-6/+1
|
* use correct free apiAnatol Belski2015-03-031-2/+2
|
* Fixed bug #69154 Access violation in php7.dll!_emallocAnatol Belski2015-03-031-1/+0
| | | | one more invalid free
* fix socket leaking and better connection err checkAnatol Belski2015-03-031-1/+10
|
* Fixed bug #69115 crash in mailAnatol Belski2015-02-271-1/+0
| | | | | | | There were two issues - php_pcre_replace could be used directly and sbject_str could be NULL - the Windows sendmail variant was freeing something passed from the outside
* Avoid reallocation in preg_replace() if nothing was replacedDmitry Stogov2015-02-101-5/+10
|
* cleanupAnatol Belski2015-01-161-12/+10
|
* Bug fix for wrong regex in mailmatbech2015-01-151-1/+1
| | | | The wrong string PHP_WIN32_MAIL_UNIFY_REPLACE instead of PHP_WIN32_MAIL_UNIFY_PATTERN is used for the regex.
* trailing whitespace removalStanislav Malyshev2015-01-101-15/+15
|
* first shot remove TSRMLS_* thingsAnatol Belski2014-12-131-12/+12
|
* typo fixes - https://github.com/vlajos/misspell_fixerVeres Lajos2014-11-191-2/+2
|
* fix datatype mismatch warningsAnatol Belski2014-10-291-4/+4
|
* s,PHP 5,PHP 7,Johannes Schlüter2014-09-201-2/+2
|
* several signature and data type fixesAnatol Belski2014-08-261-2/+2
|
* master renames phase 1Anatol Belski2014-08-251-9/+9
|
* first shot on merging the core fro the int64 branchAnatol Belski2014-08-161-0/+3
|
* cleanupDmitry Stogov2014-08-131-3/+0
|
* Fixed compilation on WindowsDmitry Stogov2014-07-151-2/+2
|
* port sendmail to windwos (untested yet)Pierre Joye2014-05-131-47/+48
|
* typo fixesVeres Lajos2013-07-151-1/+1
|
* Merge branch 'pull-request/341'Stanislav Malyshev2013-06-101-6/+6
| | | | | * pull-request/341: (23 commits) typofixes
* - bump minimum version, no more XP/2003Pierre Joye2012-03-041-0/+1
|
* - silent warning (fix for #28038)Pierre Joye2009-08-261-1/+1
|
* Fixed a compiler warning (variable clobbering)Ilia Alshanetsky2009-08-251-3/+3
|
* - Fixed bug #28038 (Sent incorrect RCPT TO commands to SMTP server)Garrett Serack2009-08-181-6/+33
|
* MFH: Fixed bug #38091 (Mail() does not use FQDN when sending SMTP helo)Kalle Sommer Nielsen2009-06-301-4/+42
| | | | | # Note, this does not go in 5.2 because the inet ports for VC6 are not in that branch
* - Avoid sprintf, even when checked copy'n'paste or changes lead to errorsMarcus Boerger2007-02-241-6/+3
|
* - MFH: It's 2006 and PHP 5Johannes Schlüter2006-02-081-2/+2
|
* MFHfoobar2006-01-061-23/+29
|
* - Fixed bug #29334 (mail() provides incorrect message time header)foobar2005-08-071-47/+21
|
* NetWare cleanupAnantha Kesari H Y2005-07-281-22/+1
| | | | | --Kamesh
* FR 32275 - fifth parameter to preg_replace() to count number of replacesAndrey Hristov2005-03-121-2/+4
| | | | | | made. #it would be nice if someone of the doc team documents it. thanks!
* time.h is available in NetWare LibC.Anantha Kesari H Y2005-02-251-2/+2
| | | | | path sperator has been changed from \ to / while including netware\sendmail_nw.h
* Stricter cc header check.Ilia Alshanetsky2005-01-191-1/+1
|
* - Fixed bug #28976 (use From: from headers if sendmail_from is empty)foobar2005-01-191-2/+15
|
* Exporting symbols used in the imap extensionFrank M. Kromann2003-12-081-3/+3
|
* Fixed bug #25333 (Possible body corruption & crash in win32 mail()).Ilia Alshanetsky2003-09-081-23/+18
|
* Fixed bug #22947 (Ack() inside win32/sendmail.c may stall in certainIlia Alshanetsky2003-08-111-5/+5
| | | | | situations).
* Fixed bug #25037 (Possible infinite loop inside SendText())Ilia Alshanetsky2003-08-111-0/+1
|
* Fixed bug #23798 (Spaces were not being stripped from Bcc header)Ilia Alshanetsky2003-07-231-17/+47
| | | | | Fixed bug #24663 (\n. sequences were not being escaped)
* 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.
* MFB:Edin Kadribasic2003-01-071-2/+6
| | | | | | Fixed bug #21442 (Crash of mail() on Windows when the first parameter is empty).
* NetWare related changes/modifications.Anantha Kesari H Y2003-01-031-0/+35
|
* Typo.Sara Golemon2002-12-281-1/+1
|
* When scanning for cc: headers, make sure the header is JUST cc: and not bcc: ↵Sara Golemon2002-12-281-1/+1
| | | | | | | or original-cc: or <anything-printable>cc: See Bugs # 21036 and # 20707