php-src/win32/sendmail.c

992 lines
28 KiB
C
Raw Normal View History

1999-04-07 21:05:13 +00:00
/*
* PHP Sendmail for Windows.
*
* This file is rewriten specificly for PHPFI. Some functionality
* has been removed (MIME and file attachments). This code was
* modified from code based on code writen by Jarle Aase.
*
* This class is based on the original code by Jarle Aase, see bellow:
* wSendmail.cpp It has been striped of some functionality to match
* the requirements of phpfi.
*
* Very simple SMTP Send-mail program for sending command-line level
* emails and CGI-BIN form response for the Windows platform.
*
* The complete wSendmail package with source code can be located
* from http://www.jgaa.com
1999-04-07 21:05:13 +00:00
*
*/
2001-12-20 18:06:13 +00:00
/* $Id$ */
1999-04-07 21:05:13 +00:00
#include "php.h" /*php specific */
#include <stdio.h>
#include <stdlib.h>
2003-01-03 15:17:43 +00:00
#ifndef NETWARE
#include <winsock2.h>
#include "time.h"
# include <Ws2tcpip.h>
2003-01-03 15:17:43 +00:00
#else /* NETWARE */
#include <netware/sendmail_nw.h>
2003-01-03 15:17:43 +00:00
#endif /* NETWARE */
1999-04-07 21:05:13 +00:00
#include <string.h>
#include <math.h>
2003-01-03 15:17:43 +00:00
#ifndef NETWARE
1999-04-07 21:05:13 +00:00
#include <malloc.h>
#include <memory.h>
#include <winbase.h>
2003-01-03 15:17:43 +00:00
#endif /* NETWARE */
1999-04-07 21:05:13 +00:00
#include "sendmail.h"
1999-04-10 13:32:47 +00:00
#include "php_ini.h"
#include "inet.h"
1999-04-07 21:05:13 +00:00
#if HAVE_PCRE || HAVE_BUNDLED_PCRE
#include "ext/pcre/php_pcre.h"
#endif
#include "ext/standard/php_string.h"
#include "ext/date/php_date.h"
1999-04-07 21:05:13 +00:00
/*enum
{
DO_CONNECT = WM_USER +1
};
*/
/* '*error_message' has to be passed around from php_mail() */
#define SMTP_ERROR_RESPONSE_SPEC "SMTP server response: %s"
/* Convinient way to handle error messages from the SMTP server.
response is ecalloc()d in Ack() itself and efree()d here
because the content is in *error_message now */
#define SMTP_ERROR_RESPONSE(response) { \
if (response && error_message) { \
if (NULL != (*error_message = ecalloc(1, sizeof(SMTP_ERROR_RESPONSE_SPEC) + strlen(response)))) { \
snprintf(*error_message, sizeof(SMTP_ERROR_RESPONSE_SPEC) + strlen(response), SMTP_ERROR_RESPONSE_SPEC, response); \
} \
efree(response); \
} \
}
#define SMTP_SKIP_SPACE(str) { while (isspace(*str)) { str++; } }
1999-04-07 21:05:13 +00:00
#ifndef THREAD_SAFE
char Buffer[MAIL_BUFFER_SIZE];
2000-06-16 18:24:02 +00:00
/* socket related data */
1999-04-07 21:05:13 +00:00
SOCKET sc;
2003-01-03 15:17:43 +00:00
#ifndef NETWARE
1999-04-07 21:05:13 +00:00
WSADATA Data;
struct hostent *adr;
int WinsockStarted;
2000-06-16 18:24:02 +00:00
/* values set by the constructor */
1999-04-07 21:05:13 +00:00
char *AppName;
2003-01-03 15:17:43 +00:00
#endif /* NETWARE */
2005-07-28 09:44:13 +00:00
SOCKADDR_IN sock_in;
1999-04-07 21:05:13 +00:00
char MailHost[HOST_NAME_LEN];
char LocalHost[HOST_NAME_LEN];
#endif
char seps[] = " ,\t\n";
2003-01-03 15:17:43 +00:00
#ifndef NETWARE
2006-02-08 21:03:36 +00:00
char *php_mailer = "PHP 5 WIN32";
2003-01-03 15:17:43 +00:00
#else
2006-02-08 21:03:36 +00:00
char *php_mailer = "PHP 5 NetWare";
2003-01-03 15:17:43 +00:00
#endif /* NETWARE */
1999-04-07 21:05:13 +00:00
2000-06-16 18:24:02 +00:00
/* Error messages */
1999-04-07 21:05:13 +00:00
static char *ErrorMessages[] =
{
{"Success"}, /* 0 */
{"Bad arguments from form"}, /* 1 */
1999-04-07 21:05:13 +00:00
{"Unable to open temporary mailfile for read"},
{"Failed to Start Sockets"},
{"Failed to Resolve Host"},
{"Failed to obtain socket handle"}, /* 5 */
{"Failed to connect to mailserver, verify your \"SMTP\" setting in php.ini"},
1999-04-07 21:05:13 +00:00
{"Failed to Send"},
{"Failed to Receive"},
{"Server Error"},
{"Failed to resolve the host IP name"}, /* 10 */
1999-04-07 21:05:13 +00:00
{"Out of memory"},
{"Unknown error"},
{"Bad Message Contents"},
{"Bad Message Subject"},
{"Bad Message destination"}, /* 15 */
1999-04-07 21:05:13 +00:00
{"Bad Message Return Path"},
{"Bad Mail Host"},
{"Bad Message File"},
{"\"sendmail_from\" not set in php.ini or custom \"From:\" header missing"},
{"Mailserver rejected our \"sendmail_from\" setting"}, /* 20 */
{"Error while trimming mail header with PCRE, please file a bug report at http://bugs.php.net/"} /* 21 */
1999-04-07 21:05:13 +00:00
};
/* This pattern converts all single occurrences of \n (Unix)
* withour a leading \r to \r\n and all occurrences of \r (Mac)
* without a trailing \n to \r\n
* Thx to Nibbler from ircnet/#linuxger
*/
#define PHP_WIN32_MAIL_UNIFY_PATTERN "/(\r\n?)|\n/"
#define PHP_WIN32_MAIL_UNIFY_REPLACE "\r\n"
/* This pattern removes \r\n from the start of the string,
* \r\n from the end of the string and also makes sure every line
* is only wrapped with a single \r\n (thus reduces multiple
* occurrences of \r\n between lines to a single \r\n) */
#define PHP_WIN32_MAIL_RMVDBL_PATTERN "/^\r\n|(\r\n)+$/m"
#define PHP_WIN32_MAIL_RMVDBL_REPLACE ""
/* This pattern escapes \n. inside the message body. It prevents
* premature end of message if \n.\n or \r\n.\r\n is encountered
* and ensures that \n. sequences are properly displayed in the
* message body. */
#define PHP_WIN32_MAIL_DOT_PATTERN "\n."
#define PHP_WIN32_MAIL_DOT_REPLACE "\n.."
/* This function is meant to unify the headers passed to to mail()
* This means, use PCRE to transform single occurrences of \n or \r in \r\n
* As a second step we also eleminate all \r\n occurrences which are:
* 1) At the start of the header
* 2) At the end of the header
* 3) Two or more occurrences in the header are removed so only one is left
*
* Returns NULL on error, or the new char* buffer on success.
* You have to take care and efree() the buffer on your own.
*/
static zend_string *php_win32_mail_trim_header(char *header TSRMLS_DC)
{
#if HAVE_PCRE || HAVE_BUNDLED_PCRE
zend_string *result, *result2;
zval replace;
zend_string *regex;
1999-04-07 21:05:13 +00:00
if (!header) {
return NULL;
}
ZVAL_STRINGL(&replace, PHP_WIN32_MAIL_UNIFY_REPLACE, strlen(PHP_WIN32_MAIL_UNIFY_REPLACE));
regex = STR_INIT(PHP_WIN32_MAIL_UNIFY_REPLACE, sizeof(PHP_WIN32_MAIL_UNIFY_REPLACE)-1, 0);
//zend_string *php_pcre_replace(zend_string *regex, char *subject, int subject_len, zval *replace_val, int is_callable_replace, int limit, int *replace_count TSRMLS_DC);
result = php_pcre_replace(regex,
header, strlen(header),
&replace,
0,
-1,
NULL TSRMLS_CC);
if (NULL == result) {
zval_ptr_dtor(&replace);
STR_FREE(regex);
return NULL;
}
ZVAL_STRING(&replace, PHP_WIN32_MAIL_RMVDBL_PATTERN);
regex = STR_INIT(PHP_WIN32_MAIL_RMVDBL_PATTERN, sizeof(PHP_WIN32_MAIL_RMVDBL_PATTERN)-1, 0);
result2 = php_pcre_replace(regex,
result->val, result->len,
&replace,
0,
-1,
NULL TSRMLS_CC);
return result;
#else
/* In case we don't have PCRE support (for whatever reason...) simply do nothing and return the unmodified header */
return estrdup(header);
#endif
}
1999-04-07 21:05:13 +00:00
2000-06-16 18:24:02 +00:00
/*********************************************************************
1999-04-07 21:05:13 +00:00
// Name: TSendMail
// Input: 1) host: Name of the mail host where the SMTP server resides
// max accepted length of name = 256
// 2) appname: Name of the application to use in the X-mailer
// field of the message. if NULL is given the application
// name is used as given by the GetCommandLine() function
// max accespted length of name = 100
// Output: 1) error: Returns the error code if something went wrong or
// SUCCESS otherwise.
//
// See SendText() for additional args!
2000-06-16 18:24:02 +00:00
//********************************************************************/
PHPAPI int TSendMail(char *host, int *error, char **error_message,
char *headers, char *Subject, char *mailTo, char *data,
char *mailCc, char *mailBcc, char *mailRPath TSRMLS_DC)
1999-04-07 21:05:13 +00:00
{
int ret;
char *RPath = NULL;
zend_string *headers_lc = NULL; /* headers_lc is only created if we've a header at all */
char *pos1 = NULL, *pos2 = NULL;
1999-04-07 21:05:13 +00:00
2003-01-03 15:17:43 +00:00
#ifndef NETWARE
WinsockStarted = FALSE;
2003-01-03 15:17:43 +00:00
#endif
1999-04-07 21:05:13 +00:00
if (host == NULL) {
*error = BAD_MAIL_HOST;
return FAILURE;
1999-04-07 21:05:13 +00:00
} else if (strlen(host) >= HOST_NAME_LEN) {
*error = BAD_MAIL_HOST;
return FAILURE;
1999-04-07 21:05:13 +00:00
} else {
strcpy(MailHost, host);
1999-04-07 21:05:13 +00:00
}
if (headers) {
char *pos = NULL;
size_t i;
zend_string *headers_trim;
/* Use PCRE to trim the header into the right format */
if (NULL == (headers_trim = php_win32_mail_trim_header(headers TSRMLS_CC))) {
*error = W32_SM_PCRE_ERROR;
return FAILURE;
}
/* Create a lowercased header for all the searches so we're finally case
* insensitive when searching for a pattern. */
if (NULL == (headers_lc = STR_COPY(headers_trim))) {
*error = OUT_OF_MEMORY;
return FAILURE;
}
for (i = 0; i < headers_lc->len; i++) {
headers_lc->val[i] = tolower(headers_lc->val[i]);
}
}
/* Fall back to sendmail_from php.ini setting */
if (mailRPath && *mailRPath) {
RPath = estrdup(mailRPath);
} else if (INI_STR("sendmail_from")) {
RPath = estrdup(INI_STR("sendmail_from"));
} else if ( headers_lc &&
(pos1 = strstr(headers_lc->val, "from:")) &&
((pos1 == headers_lc->val) || (*(pos1-1) == '\n'))
) {
/* Real offset is memaddress from the original headers + difference of
* string found in the lowercase headrs + 5 characters to jump over
* the from: */
pos1 = headers + (pos1 - headers_lc->val) + 5;
if (NULL == (pos2 = strstr(pos1, "\r\n"))) {
RPath = estrndup(pos1, strlen(pos1));
} else {
2006-01-06 02:04:33 +00:00
RPath = estrndup(pos1, pos2 - pos1);
}
} else {
if (headers_lc) {
STR_FREE(headers_lc);
}
*error = W32_SM_SENDMAIL_FROM_NOT_SET;
return FAILURE;
1999-04-07 21:05:13 +00:00
}
2000-06-16 18:24:02 +00:00
/* attempt to connect with mail host */
1999-04-07 21:05:13 +00:00
*error = MailConnect();
if (*error != 0) {
if (RPath) {
efree(RPath);
}
if (headers) {
efree(headers);
efree(headers_lc);
}
/* 128 is safe here, the specifier in snprintf isn't longer than that */
if (NULL == (*error_message = ecalloc(1, HOST_NAME_LEN + 128))) {
return FAILURE;
}
snprintf(*error_message, HOST_NAME_LEN + 128,
2002-09-21 15:03:24 +00:00
"Failed to connect to mailserver at \"%s\" port %d, verify your \"SMTP\" "
"and \"smtp_port\" setting in php.ini or use ini_set()",
MailHost, !INI_INT("smtp_port") ? 25 : INI_INT("smtp_port"));
return FAILURE;
1999-04-07 21:05:13 +00:00
} else {
ret = SendText(RPath, Subject, mailTo, mailCc, mailBcc, data, headers, headers_lc->val, error_message TSRMLS_CC);
1999-04-07 21:05:13 +00:00
TSMClose();
if (RPath) {
efree(RPath);
}
if (headers) {
efree(headers);
efree(headers_lc);
}
1999-04-07 21:05:13 +00:00
if (ret != SUCCESS) {
*error = ret;
return FAILURE;
1999-04-07 21:05:13 +00:00
}
return SUCCESS;
1999-04-07 21:05:13 +00:00
}
}
//********************************************************************
1999-04-07 21:05:13 +00:00
// Name: TSendMail::~TSendMail
// Input:
// Output:
// Description: DESTRUCTOR
// Author/Date: jcar 20/9/96
// History:
2000-06-16 18:24:02 +00:00
//********************************************************************/
PHPAPI void TSMClose()
1999-04-07 21:05:13 +00:00
{
Post("QUIT\r\n");
Ack(NULL);
2000-06-16 18:24:02 +00:00
/* to guarantee that the cleanup is not made twice and
compomise the rest of the application if sockets are used
elesewhere
*/
shutdown(sc, 0);
closesocket(sc);
1999-04-07 21:05:13 +00:00
}
2000-06-16 18:24:02 +00:00
/*********************************************************************
1999-04-07 21:05:13 +00:00
// Name: char *GetSMErrorText
// Input: Error index returned by the menber functions
// Output: pointer to a string containing the error description
// Description:
// Author/Date: jcar 20/9/96
// History:
2000-06-16 18:24:02 +00:00
//*******************************************************************/
PHPAPI char *GetSMErrorText(int index)
1999-04-07 21:05:13 +00:00
{
if (MIN_ERROR_INDEX <= index && index < MAX_ERROR_INDEX) {
1999-04-07 21:05:13 +00:00
return (ErrorMessages[index]);
} else {
return (ErrorMessages[UNKNOWN_ERROR]);
}
1999-04-07 21:05:13 +00:00
}
PHPAPI zend_string *php_str_to_str(char *haystack, int length, char *needle,
int needle_len, char *str, int str_len);
1999-04-07 21:05:13 +00:00
2000-06-16 18:24:02 +00:00
/*********************************************************************
2006-01-06 02:04:33 +00:00
// Name: SendText
1999-04-07 21:05:13 +00:00
// Input: 1) RPath: return path of the message
// Is used to fill the "Return-Path" and the
// "X-Sender" fields of the message.
// 2) Subject: Subject field of the message. If NULL is given
// the subject is set to "No Subject"
// 3) mailTo: Destination address
// 4) data: Null terminated string containing the data to be send.
// 5,6) headers of the message. Note that the second
// parameter, headers_lc, is actually a lowercased version of
// headers. The should match exactly (in terms of length),
// only differ in case
1999-04-07 21:05:13 +00:00
// Output: Error code or SUCCESS
// Description:
// Author/Date: jcar 20/9/96
// History:
2000-06-16 18:24:02 +00:00
//*******************************************************************/
static int SendText(char *RPath, char *Subject, char *mailTo, char *mailCc, char *mailBcc, char *data,
char *headers, char *headers_lc, char **error_message TSRMLS_DC)
1999-04-07 21:05:13 +00:00
{
int res;
1999-04-07 21:05:13 +00:00
char *p;
char *tempMailTo, *token, *pos1, *pos2;
char *server_response = NULL;
char *stripped_header = NULL;
zend_string *data_cln;
1999-04-07 21:05:13 +00:00
2000-06-16 18:24:02 +00:00
/* check for NULL parameters */
1999-04-07 21:05:13 +00:00
if (data == NULL)
return (BAD_MSG_CONTENTS);
if (mailTo == NULL)
return (BAD_MSG_DESTINATION);
if (RPath == NULL)
return (BAD_MSG_RPATH);
2000-06-16 18:24:02 +00:00
/* simple checks for the mailto address */
/* have ampersand ? */
/* mfischer, 20020514: I commented this out because it really
seems bogus. Only a username for example may still be a
valid address at the destination system.
1999-04-07 21:05:13 +00:00
if (strchr(mailTo, '@') == NULL)
return (BAD_MSG_DESTINATION);
*/
1999-04-07 21:05:13 +00:00
snprintf(Buffer, sizeof(Buffer), "HELO %s\r\n", LocalHost);
1999-04-07 21:05:13 +00:00
2013-07-13 12:37:04 +00:00
/* in the beginning of the dialog */
2000-06-16 18:24:02 +00:00
/* attempt reconnect if the first Post fail */
if ((res = Post(Buffer)) != SUCCESS) {
1999-04-07 21:05:13 +00:00
MailConnect();
2006-01-06 02:04:33 +00:00
if ((res = Post(Buffer)) != SUCCESS) {
1999-04-07 21:05:13 +00:00
return (res);
2006-01-06 02:04:33 +00:00
}
1999-04-07 21:05:13 +00:00
}
if ((res = Ack(&server_response)) != SUCCESS) {
SMTP_ERROR_RESPONSE(server_response);
1999-04-07 21:05:13 +00:00
return (res);
}
1999-04-07 21:05:13 +00:00
2006-01-06 02:04:33 +00:00
SMTP_SKIP_SPACE(RPath);
FormatEmailAddress(Buffer, RPath, "MAIL FROM:<%s>\r\n");
2006-01-06 02:04:33 +00:00
if ((res = Post(Buffer)) != SUCCESS) {
return (res);
2006-01-06 02:04:33 +00:00
}
if ((res = Ack(&server_response)) != SUCCESS) {
SMTP_ERROR_RESPONSE(server_response);
return W32_SM_SENDMAIL_FROM_MALFORMED;
}
1999-04-07 21:05:13 +00:00
tempMailTo = estrdup(mailTo);
/* Send mail to all rcpt's */
token = strtok(tempMailTo, ",");
2006-01-06 02:04:33 +00:00
while (token != NULL)
{
2006-01-06 02:04:33 +00:00
SMTP_SKIP_SPACE(token);
FormatEmailAddress(Buffer, token, "RCPT TO:<%s>\r\n");
if ((res = Post(Buffer)) != SUCCESS) {
efree(tempMailTo);
return (res);
}
if ((res = Ack(&server_response)) != SUCCESS) {
SMTP_ERROR_RESPONSE(server_response);
efree(tempMailTo);
return (res);
}
token = strtok(NULL, ",");
}
efree(tempMailTo);
if (mailCc && *mailCc) {
tempMailTo = estrdup(mailCc);
/* Send mail to all rcpt's */
token = strtok(tempMailTo, ",");
2006-01-06 02:04:33 +00:00
while (token != NULL)
{
2006-01-06 02:04:33 +00:00
SMTP_SKIP_SPACE(token);
FormatEmailAddress(Buffer, token, "RCPT TO:<%s>\r\n");
if ((res = Post(Buffer)) != SUCCESS) {
efree(tempMailTo);
return (res);
}
if ((res = Ack(&server_response)) != SUCCESS) {
SMTP_ERROR_RESPONSE(server_response);
efree(tempMailTo);
return (res);
}
token = strtok(NULL, ",");
}
efree(tempMailTo);
}
/* Send mail to all Cc rcpt's */
2005-01-19 18:54:23 +00:00
else if (headers && (pos1 = strstr(headers_lc, "cc:")) && ((pos1 == headers_lc) || (*(pos1-1) == '\n'))) {
/* Real offset is memaddress from the original headers + difference of
* string found in the lowercase headrs + 3 characters to jump over
* the cc: */
pos1 = headers + (pos1 - headers_lc) + 3;
if (NULL == (pos2 = strstr(pos1, "\r\n"))) {
tempMailTo = estrndup(pos1, strlen(pos1));
} else {
2006-01-06 02:04:33 +00:00
tempMailTo = estrndup(pos1, pos2 - pos1);
}
1999-04-07 21:05:13 +00:00
token = strtok(tempMailTo, ",");
2006-01-06 02:04:33 +00:00
while (token != NULL)
{
SMTP_SKIP_SPACE(token);
FormatEmailAddress(Buffer, token, "RCPT TO:<%s>\r\n");
2006-01-06 02:04:33 +00:00
if ((res = Post(Buffer)) != SUCCESS) {
efree(tempMailTo);
return (res);
2006-01-06 02:04:33 +00:00
}
if ((res = Ack(&server_response)) != SUCCESS) {
SMTP_ERROR_RESPONSE(server_response);
2006-01-06 02:04:33 +00:00
efree(tempMailTo);
return (res);
}
token = strtok(NULL, ",");
}
efree(tempMailTo);
}
/* Send mail to all Bcc rcpt's
This is basically a rip of the Cc code above.
Just don't forget to remove the Bcc: from the header afterwards. */
if (mailBcc && *mailBcc) {
tempMailTo = estrdup(mailBcc);
/* Send mail to all rcpt's */
token = strtok(tempMailTo, ",");
2006-01-06 02:04:33 +00:00
while (token != NULL)
{
SMTP_SKIP_SPACE(token);
FormatEmailAddress(Buffer, token, "RCPT TO:<%s>\r\n");
if ((res = Post(Buffer)) != SUCCESS) {
efree(tempMailTo);
return (res);
}
if ((res = Ack(&server_response)) != SUCCESS) {
SMTP_ERROR_RESPONSE(server_response);
efree(tempMailTo);
return (res);
}
token = strtok(NULL, ",");
}
efree(tempMailTo);
}
else if (headers) {
if (pos1 = strstr(headers_lc, "bcc:")) {
/* Real offset is memaddress from the original headers + difference of
* string found in the lowercase headrs + 4 characters to jump over
* the bcc: */
pos1 = headers + (pos1 - headers_lc) + 4;
if (NULL == (pos2 = strstr(pos1, "\r\n"))) {
tempMailTo = estrndup(pos1, strlen(pos1));
/* Later, when we remove the Bcc: out of the
header we know it was the last thing. */
pos2 = pos1;
} else {
tempMailTo = estrndup(pos1, pos2 - pos1);
}
token = strtok(tempMailTo, ",");
2006-01-06 02:04:33 +00:00
while (token != NULL)
{
SMTP_SKIP_SPACE(token);
FormatEmailAddress(Buffer, token, "RCPT TO:<%s>\r\n");
if ((res = Post(Buffer)) != SUCCESS) {
2006-01-06 02:04:33 +00:00
efree(tempMailTo);
return (res);
}
if ((res = Ack(&server_response)) != SUCCESS) {
SMTP_ERROR_RESPONSE(server_response);
2006-01-06 02:04:33 +00:00
efree(tempMailTo);
return (res);
}
token = strtok(NULL, ",");
}
efree(tempMailTo);
/* Now that we've identified that we've a Bcc list,
remove it from the current header. */
if (NULL == (stripped_header = ecalloc(1, strlen(headers)))) {
return OUT_OF_MEMORY;
}
/* headers = point to string start of header
pos1 = pointer IN headers where the Bcc starts
'4' = Length of the characters 'bcc:'
Because we've added +4 above for parsing the Emails
we've to substract them here. */
memcpy(stripped_header, headers, pos1 - headers - 4);
if (pos1 != pos2) {
/* if pos1 != pos2 , pos2 points to the rest of the headers.
Since pos1 != pos2 if "\r\n" was found, we know those characters
are there and so we jump over them (else we would generate a new header
which would look like "\r\n\r\n". */
memcpy(stripped_header + (pos1 - headers - 4), pos2 + 2, strlen(pos2) - 2);
}
}
}
/* Simplify the code that we create a copy of stripped_header no matter if
we actually strip something or not. So we've a single efree() later. */
if (headers && !stripped_header) {
if (NULL == (stripped_header = estrndup(headers, strlen(headers)))) {
return OUT_OF_MEMORY;
}
}
if ((res = Post("DATA\r\n")) != SUCCESS) {
if (stripped_header) {
efree(stripped_header);
}
1999-04-07 21:05:13 +00:00
return (res);
}
if ((res = Ack(&server_response)) != SUCCESS) {
SMTP_ERROR_RESPONSE(server_response);
if (stripped_header) {
efree(stripped_header);
}
1999-04-07 21:05:13 +00:00
return (res);
}
1999-04-07 21:05:13 +00:00
2000-06-16 18:24:02 +00:00
/* send message header */
if (Subject == NULL) {
res = PostHeader(RPath, "No Subject", mailTo, stripped_header TSRMLS_CC);
} else {
res = PostHeader(RPath, Subject, mailTo, stripped_header TSRMLS_CC);
}
if (stripped_header) {
efree(stripped_header);
}
if (res != SUCCESS) {
1999-04-07 21:05:13 +00:00
return (res);
}
1999-04-07 21:05:13 +00:00
/* Escape \n. sequences
* We use php_str_to_str() and not php_str_replace_in_subject(), since the latter
* uses ZVAL as it's parameters */
data_cln = php_str_to_str(data, strlen(data), PHP_WIN32_MAIL_DOT_PATTERN, sizeof(PHP_WIN32_MAIL_DOT_PATTERN) - 1,
PHP_WIN32_MAIL_DOT_REPLACE, sizeof(PHP_WIN32_MAIL_DOT_REPLACE) - 1);
if (!data_cln) {
data_cln = STR_EMPTY_ALLOC();
}
2000-06-16 18:24:02 +00:00
/* send message contents in 1024 chunks */
{
char c, *e2, *e = data_cln->val + data_cln->len;
p = data_cln->val;
while (e - p > 1024) {
e2 = p + 1024;
c = *e2;
*e2 = '\0';
if ((res = Post(p)) != SUCCESS) {
STR_FREE(data_cln);
return(res);
}
*e2 = c;
p = e2;
}
if ((res = Post(p)) != SUCCESS) {
STR_FREE(data_cln);
return(res);
1999-04-07 21:05:13 +00:00
}
}
STR_FREE(data_cln);
2000-06-16 18:24:02 +00:00
/*send termination dot */
1999-04-07 21:05:13 +00:00
if ((res = Post("\r\n.\r\n")) != SUCCESS)
return (res);
if ((res = Ack(&server_response)) != SUCCESS) {
SMTP_ERROR_RESPONSE(server_response);
1999-04-07 21:05:13 +00:00
return (res);
}
1999-04-07 21:05:13 +00:00
return (SUCCESS);
}
static int addToHeader(char **header_buffer, const char *specifier, char *string)
{
if (NULL == (*header_buffer = erealloc(*header_buffer, strlen(*header_buffer) + strlen(specifier) + strlen(string) + 1))) {
return 0;
}
sprintf(*header_buffer + strlen(*header_buffer), specifier, string);
return 1;
}
1999-04-07 21:05:13 +00:00
2000-06-16 18:24:02 +00:00
/*********************************************************************
1999-04-07 21:05:13 +00:00
// Name: PostHeader
// Input: 1) return path
// 2) Subject
// 3) destination address
// 4) headers
1999-04-07 21:05:13 +00:00
// Output: Error code or Success
// Description:
// Author/Date: jcar 20/9/96
// History:
2000-06-16 18:24:02 +00:00
//********************************************************************/
static int PostHeader(char *RPath, char *Subject, char *mailTo, char *xheaders TSRMLS_DC)
1999-04-07 21:05:13 +00:00
{
2000-06-16 18:24:02 +00:00
/* Print message header according to RFC 822 */
/* Return-path, Received, Date, From, Subject, Sender, To, cc */
1999-04-07 21:05:13 +00:00
int res;
char *header_buffer;
char *headers_lc = NULL;
size_t i;
if (xheaders) {
if (NULL == (headers_lc = estrdup(xheaders))) {
return OUT_OF_MEMORY;
}
for (i = 0; i < strlen(headers_lc); i++) {
headers_lc[i] = tolower(headers_lc[i]);
}
}
1999-04-07 21:05:13 +00:00
header_buffer = ecalloc(1, MAIL_BUFFER_SIZE);
1999-04-07 21:05:13 +00:00
if (!xheaders || !strstr(headers_lc, "date:")) {
time_t tNow = time(NULL);
zend_string *dt = php_format_date("r", 1, tNow, 1 TSRMLS_CC);
snprintf(header_buffer, MAIL_BUFFER_SIZE, "Date: %s\r\n", dt->val);
STR_FREE(dt);
}
if (!headers_lc || !strstr(headers_lc, "from:")) {
if (!addToHeader(&header_buffer, "From: %s\r\n", RPath)) {
goto PostHeader_outofmem;
}
}
if (!addToHeader(&header_buffer, "Subject: %s\r\n", Subject)) {
goto PostHeader_outofmem;
}
/* Only add the To: field from the $to parameter if isn't in the custom headers */
if ((headers_lc && (!strstr(headers_lc, "\r\nto:") && (strncmp(headers_lc, "to:", 3) != 0))) || !headers_lc) {
if (!addToHeader(&header_buffer, "To: %s\r\n", mailTo)) {
goto PostHeader_outofmem;
}
1999-04-07 21:05:13 +00:00
}
2006-01-06 02:04:33 +00:00
if (xheaders) {
if (!addToHeader(&header_buffer, "%s\r\n", xheaders)) {
goto PostHeader_outofmem;
}
1999-04-07 21:05:13 +00:00
}
2002-06-03 14:39:30 +00:00
if (headers_lc) {
efree(headers_lc);
}
if ((res = Post(header_buffer)) != SUCCESS) {
efree(header_buffer);
1999-04-07 21:05:13 +00:00
return (res);
}
efree(header_buffer);
1999-04-07 21:05:13 +00:00
if ((res = Post("\r\n")) != SUCCESS) {
1999-04-07 21:05:13 +00:00
return (res);
}
1999-04-07 21:05:13 +00:00
return (SUCCESS);
PostHeader_outofmem:
2002-06-03 14:39:30 +00:00
if (headers_lc) {
efree(headers_lc);
}
return OUT_OF_MEMORY;
1999-04-07 21:05:13 +00:00
}
2000-06-16 18:24:02 +00:00
/*********************************************************************
1999-04-07 21:05:13 +00:00
// Name: MailConnect
// Input: None
// Output: None
// Description: Connect to the mail host and receive the welcome message.
// Author/Date: jcar 20/9/96
// History:
2000-06-16 18:24:02 +00:00
//********************************************************************/
static int MailConnect()
1999-04-07 21:05:13 +00:00
{
int res, namelen;
2000-08-06 21:42:10 +00:00
short portnum;
struct hostent *ent;
IN_ADDR addr;
#ifdef HAVE_IPV6
IN6_ADDR addr6;
#endif
1999-04-07 21:05:13 +00:00
2000-06-16 18:24:02 +00:00
/* Create Socket */
if ((sc = socket(PF_INET, SOCK_STREAM, 0)) == INVALID_SOCKET) {
1999-04-07 21:05:13 +00:00
return (FAILED_TO_OBTAIN_SOCKET_HANDLE);
}
1999-04-07 21:05:13 +00:00
2000-06-16 18:24:02 +00:00
/* Get our own host name */
if (gethostname(LocalHost, HOST_NAME_LEN)) {
return (FAILED_TO_GET_HOSTNAME);
}
ent = gethostbyname(LocalHost);
if (!ent) {
1999-04-07 21:05:13 +00:00
return (FAILED_TO_GET_HOSTNAME);
}
namelen = strlen(ent->h_name);
#ifdef HAVE_IPV6
if (inet_pton(AF_INET, ent->h_name, &addr) == 1 || inet_pton(AF_INET6, ent->h_name, &addr6) == 1)
#else
if (inet_pton(AF_INET, ent->h_name, &addr) == 1)
#endif
{
if (namelen + 2 >= HOST_NAME_LEN) {
return (FAILED_TO_GET_HOSTNAME);
}
strcpy(LocalHost, "[");
strcpy(LocalHost + 1, ent->h_name);
strcpy(LocalHost + namelen + 1, "]");
} else {
if (namelen >= HOST_NAME_LEN) {
return (FAILED_TO_GET_HOSTNAME);
}
strcpy(LocalHost, ent->h_name);
}
1999-04-07 21:05:13 +00:00
2000-06-16 18:24:02 +00:00
/* Resolve the servers IP */
/*
if (!isdigit(MailHost[0])||!gethostbyname(MailHost))
{
return (FAILED_TO_RESOLVE_HOST);
}
2006-01-06 02:04:33 +00:00
*/
1999-04-07 21:05:13 +00:00
portnum = (short) INI_INT("smtp_port");
2000-08-06 21:38:41 +00:00
if (!portnum) {
2000-08-06 17:49:41 +00:00
portnum = 25;
2000-08-06 21:38:41 +00:00
}
2000-08-06 17:49:41 +00:00
2000-06-16 18:24:02 +00:00
/* Connect to server */
sock_in.sin_family = AF_INET;
2000-08-06 17:49:41 +00:00
sock_in.sin_port = htons(portnum);
sock_in.sin_addr.S_un.S_addr = GetAddr(MailHost);
1999-04-07 21:05:13 +00:00
if (connect(sc, (LPSOCKADDR) & sock_in, sizeof(sock_in))) {
1999-04-07 21:05:13 +00:00
return (FAILED_TO_CONNECT);
}
1999-04-07 21:05:13 +00:00
2000-06-16 18:24:02 +00:00
/* receive Server welcome message */
res = Ack(NULL);
1999-04-07 21:05:13 +00:00
return (res);
}
2000-06-16 18:24:02 +00:00
/*********************************************************************
1999-04-07 21:05:13 +00:00
// Name: Post
// Input:
// Output:
// Description:
// Author/Date: jcar 20/9/96
// History:
2000-06-16 18:24:02 +00:00
//********************************************************************/
static int Post(LPCSTR msg)
1999-04-07 21:05:13 +00:00
{
int len = strlen(msg);
int slen;
int index = 0;
while (len > 0) {
if ((slen = send(sc, msg + index, len, 0)) < 1)
1999-04-07 21:05:13 +00:00
return (FAILED_TO_SEND);
len -= slen;
index += slen;
}
return (SUCCESS);
}
2000-06-16 18:24:02 +00:00
/*********************************************************************
1999-04-07 21:05:13 +00:00
// Name: Ack
// Input:
// Output:
// Description:
// Get the response from the server. We only want to know if the
// last command was successful.
// Author/Date: jcar 20/9/96
// History:
2000-06-16 18:24:02 +00:00
//********************************************************************/
static int Ack(char **server_response)
1999-04-07 21:05:13 +00:00
{
static char buf[MAIL_BUFFER_SIZE];
1999-04-07 21:05:13 +00:00
int rlen;
int Index = 0;
int Received = 0;
2006-01-06 02:04:33 +00:00
again:
1999-04-07 21:05:13 +00:00
2006-01-06 02:04:33 +00:00
if ((rlen = recv(sc, buf + Index, ((MAIL_BUFFER_SIZE) - 1) - Received, 0)) < 1) {
1999-04-07 21:05:13 +00:00
return (FAILED_TO_RECEIVE);
2006-01-06 02:04:33 +00:00
}
1999-04-07 21:05:13 +00:00
Received += rlen;
buf[Received] = 0;
2000-06-16 18:24:02 +00:00
/*err_msg fprintf(stderr,"Received: (%d bytes) %s", rlen, buf + Index); */
1999-04-07 21:05:13 +00:00
2000-06-16 18:24:02 +00:00
/* Check for newline */
1999-04-07 21:05:13 +00:00
Index += rlen;
/* SMPT RFC says \r\n is the only valid line ending, who are we to argue ;)
* The response code must contain at least 5 characters ex. 220\r\n */
if (Received < 5 || buf[Received - 1] != '\n' || buf[Received - 2] != '\r') {
goto again;
}
1999-04-07 21:05:13 +00:00
if (buf[0] > '3') {
2002-06-02 16:25:06 +00:00
/* If we've a valid pointer, return the SMTP server response so the error message contains more information */
if (server_response) {
int dec = 0;
/* See if we have something like \r, \n, \r\n or \n\r at the end of the message and chop it off */
if (Received > 2) {
if (buf[Received-1] == '\n' || buf[Received-1] == '\r') {
dec++;
if (buf[Received-2] == '\r' || buf[Received-2] == '\n') {
dec++;
}
}
}
*server_response = estrndup(buf, Received - dec);
}
1999-04-07 21:05:13 +00:00
return (SMTP_SERVER_ERROR);
}
1999-04-07 21:05:13 +00:00
return (SUCCESS);
}
2000-06-16 18:24:02 +00:00
/*********************************************************************
1999-04-07 21:05:13 +00:00
// Name: unsigned long GetAddr (LPSTR szHost)
// Input:
// Output:
// Description: Given a string, it will return an IP address.
// - first it tries to convert the string directly
// - if that fails, it tries o resolve it as a hostname
//
// WARNING: gethostbyname() is a blocking function
// Author/Date: jcar 20/9/96
// History:
2000-06-16 18:24:02 +00:00
//********************************************************************/
static unsigned long GetAddr(LPSTR szHost)
1999-04-07 21:05:13 +00:00
{
LPHOSTENT lpstHost;
u_long lAddr = INADDR_ANY;
/* check that we have a string */
if (*szHost) {
/* check for a dotted-IP address string */
lAddr = inet_addr(szHost);
/* If not an address, then try to resolve it as a hostname */
if ((lAddr == INADDR_NONE) && (strcmp(szHost, "255.255.255.255"))) {
lpstHost = gethostbyname(szHost);
if (lpstHost) { /* success */
lAddr = *((u_long FAR *) (lpstHost->h_addr));
} else {
lAddr = INADDR_ANY; /* failure */
}
}
}
return (lAddr);
2006-01-06 02:04:33 +00:00
} /* end GetAddr() */
/*********************************************************************
// Name: int FormatEmailAddress
// Input:
// Output:
// Description: Formats the email address to remove any content ouside
// of the angle brackets < > as per RFC 2821.
//
// Returns the invalidly formatted mail address if the < > are
// unbalanced (the SMTP server should reject it if it's out of spec.)
//
// Author/Date: garretts 08/18/2009
// History:
//********************************************************************/
2009-08-26 21:59:54 +00:00
static int FormatEmailAddress(char* Buf, char* EmailAddress, char* FormatString) {
char *tmpAddress1, *tmpAddress2;
int result;
if( (tmpAddress1 = strchr(EmailAddress, '<')) && (tmpAddress2 = strchr(tmpAddress1, '>')) ) {
*tmpAddress2 = 0; // terminate the string temporarily.
result = snprintf(Buf, MAIL_BUFFER_SIZE, FormatString , tmpAddress1+1);
*tmpAddress2 = '>'; // put it back the way it was.
return result;
}
return snprintf(Buf, MAIL_BUFFER_SIZE , FormatString , EmailAddress );
} /* end FormatEmailAddress() */