Lines Matching refs:fulladdress

2100 	char dummy[2000], fulladdress[MAILTMPLEN + 1];  in PHP_FUNCTION()  local
2162 fulladdress[0] = 0x00; in PHP_FUNCTION()
2163 mail_fetchfrom(fulladdress, imap_le_struct->imap_stream, msgno, fromlength); in PHP_FUNCTION()
2164 add_property_string(return_value, "fetchfrom", fulladdress); in PHP_FUNCTION()
2167 fulladdress[0] = 0x00; in PHP_FUNCTION()
2168 mail_fetchsubject(fulladdress, imap_le_struct->imap_stream, msgno, subjectlength); in PHP_FUNCTION()
2169 add_property_string(return_value, "fetchsubject", fulladdress); in PHP_FUNCTION()
4480 zend_string *fulladdress; in _php_imap_parse_address() local
4486 fulladdress = _php_rfc822_write_address(addresstmp); in _php_imap_parse_address()
4497 return fulladdress; in _php_imap_parse_address()
4506 zend_string *fulladdress=NULL; in _php_make_header_object() local
4523 fulladdress = _php_imap_parse_address(en->to, &paddress); in _php_make_header_object()
4524 if (fulladdress) { in _php_make_header_object()
4525 add_property_str(myzvalue, "toaddress", fulladdress); in _php_make_header_object()
4532 fulladdress = _php_imap_parse_address(en->from, &paddress); in _php_make_header_object()
4533 if (fulladdress) { in _php_make_header_object()
4534 add_property_str(myzvalue, "fromaddress", fulladdress); in _php_make_header_object()
4541 fulladdress = _php_imap_parse_address(en->cc, &paddress); in _php_make_header_object()
4542 if (fulladdress) { in _php_make_header_object()
4543 add_property_str(myzvalue, "ccaddress", fulladdress); in _php_make_header_object()
4550 fulladdress = _php_imap_parse_address(en->bcc, &paddress); in _php_make_header_object()
4551 if (fulladdress) { in _php_make_header_object()
4552 add_property_str(myzvalue, "bccaddress", fulladdress); in _php_make_header_object()
4559 fulladdress = _php_imap_parse_address(en->reply_to, &paddress); in _php_make_header_object()
4560 if (fulladdress) { in _php_make_header_object()
4561 add_property_str(myzvalue, "reply_toaddress", fulladdress); in _php_make_header_object()
4568 fulladdress = _php_imap_parse_address(en->sender, &paddress); in _php_make_header_object()
4569 if (fulladdress) { in _php_make_header_object()
4570 add_property_str(myzvalue, "senderaddress", fulladdress); in _php_make_header_object()
4577 fulladdress = _php_imap_parse_address(en->return_path, &paddress); in _php_make_header_object()
4578 if (fulladdress) { in _php_make_header_object()
4579 add_property_str(myzvalue, "return_pathaddress", fulladdress); in _php_make_header_object()