summaryrefslogtreecommitdiff
path: root/win32/sendmail.c
Commit message (Collapse)AuthorAgeFilesLines
* - 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
* Removing unused code and making sure headers are send when called from ↵Frank M. Kromann2002-12-061-18/+11
| | | | imap_mail()
* Dont scan headers for cc abd bcc if extra parameters are used for theseFrank M. Kromann2002-11-301-29/+27
|
* - Forgot to add an extra space.Markus Fischer2002-09-211-1/+1
|
* Oops. Last commit reverted some of sebastians changes.Frank M. Kromann2002-07-021-10/+9
|
* Switch from imap_sendmail.* to sendmail.c under Win32Frank M. Kromann2002-07-021-7/+56
|
* Remove unused local variables.Sebastian Bergmann2002-06-141-1/+1
|
* - We don't need the check here because the regex makes sure we never have \r\nMarkus Fischer2002-06-131-6/+0
| | | | | at the end of the header.
* Typo: == instead of =Stefan Esser2002-06-131-1/+1
|
* - should fix bug#17753Stefan Esser2002-06-131-2/+8
|
* - Headers are now rewritten to always have \r\n line endings for SMTP.Markus Fischer2002-06-051-5/+92
| | | | | | | Also automatically removes superflous line breaks at the start and end of the header. # http://cr.yp.to/docs/smtplf.html is a good read about this topic.
* - Fix a leak and a crash.Markus Fischer2002-06-031-7/+6
|
* - Only add the To: field with the $to parameter if we don't have it in theMarkus Fischer2002-06-021-2/+7
| | | | | | | custom header. This was the behaviour < 4.2.x (but it was broken, this one isn't). # last commit for today, promised.
* - Revert fix for #14407. The From: header field IS different from theMarkus Fischer2002-06-021-30/+7
| | | | | sendmail_from field which is in fact the retturn path.
* - Try to fix most of the buffer overflows and dynamically allocate memory whereMarkus Fischer2002-06-021-13/+38
| | | | | applicable.
* - Finish implementation of custom smtp port (introduces "smtp_port" ini config).Markus Fischer2002-06-021-2/+5
|
* - Rephrase commentMarkus Fischer2002-06-021-1/+1
|
* - Classig problem: right idea, wrong pointer ...Markus Fischer2002-06-021-1/+1
|
* - Win32 mail() is no longer case-sensitive when it comes to match for any ↵Markus Fischer2002-05-171-61/+116
| | | | | | | | headers (e.g. from:, cc:, etc). # Fixed also a crash I introduced earlier, which tells me no one tested it :)
* Fixing line breaksFrank M. Kromann2002-05-151-1/+0
|
* - Add support for Bcc in w32/sendmail code.Markus Fischer2002-05-151-8/+71
|
* - Improve code so errors returned from the server are reported back to the user.Markus Fischer2002-05-141-30/+77
| | | | | # Testers, testers, testers!
* - Do not include the Cc: for the first Cc'd recipient (spotted by Richard).Markus Fischer2002-05-141-0/+1
|
* - Convert unix to dos line endings.Markus Fischer2002-05-141-0/+7
| | | | | # This is *really* annoying ... can only be an advantage for windows users imho.
* - Try to find From: field in header, fallback to sendmail_from php.ini settingMarkus Fischer2002-05-141-3/+29
| | | | | | (Original patch by Michael Sisolak <msisolak@yahoo.com>, enhanced a bit). @- Win32 mail() supports parsing 'From:' field from header (msisolak@yahoo.com, Markus).
* - Fix win32 sendmail bug with Cc: in custom header not terminated with \r\nMarkus Fischer2002-05-141-14/+20
| | | | | - Fix some obvious errors returned by the module, little cleanup.
* Adding cvs IDFrank M. Kromann2001-12-201-0/+2
|