Lines Matching refs:extra_cmd
105 zend_string *extra_cmd=NULL, *headers=NULL, *headers_trimmed=NULL; in PHP_FUNCTION() local
112 …, &to, &to_len, &subject, &subject_len, &message, &message_len, &headers, &extra_cmd) == FAILURE) { in PHP_FUNCTION()
124 if (extra_cmd) { in PHP_FUNCTION()
125 MAIL_ASCIIZ_CHECK(ZSTR_VAL(extra_cmd), ZSTR_LEN(extra_cmd)); in PHP_FUNCTION()
169 extra_cmd = php_escape_shell_cmd(force_extra_parameters); in PHP_FUNCTION()
170 } else if (extra_cmd) { in PHP_FUNCTION()
171 extra_cmd = php_escape_shell_cmd(ZSTR_VAL(extra_cmd)); in PHP_FUNCTION()
174 …message, headers_trimmed ? ZSTR_VAL(headers_trimmed) : NULL, extra_cmd ? ZSTR_VAL(extra_cmd) : NUL… in PHP_FUNCTION()
184 if (extra_cmd) { in PHP_FUNCTION()
185 zend_string_release(extra_cmd); in PHP_FUNCTION()
266 PHPAPI int php_mail(char *to, char *subject, char *message, char *headers, char *extra_cmd) in php_mail() argument
355 if (extra_cmd != NULL) { in php_mail()
356 spprintf(&sendmail_cmd, 0, "%s %s", sendmail_path, extra_cmd); in php_mail()
380 if (extra_cmd != NULL) { in php_mail()