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()
4477 zend_string *fulladdress; in _php_imap_parse_address() local
4483 fulladdress = _php_rfc822_write_address(addresstmp); in _php_imap_parse_address()
4494 return fulladdress; in _php_imap_parse_address()
4503 zend_string *fulladdress=NULL; in _php_make_header_object() local
4520 fulladdress = _php_imap_parse_address(en->to, &paddress); in _php_make_header_object()
4521 if (fulladdress) { in _php_make_header_object()
4522 add_property_str(myzvalue, "toaddress", fulladdress); in _php_make_header_object()
4529 fulladdress = _php_imap_parse_address(en->from, &paddress); in _php_make_header_object()
4530 if (fulladdress) { in _php_make_header_object()
4531 add_property_str(myzvalue, "fromaddress", fulladdress); in _php_make_header_object()
4538 fulladdress = _php_imap_parse_address(en->cc, &paddress); in _php_make_header_object()
4539 if (fulladdress) { in _php_make_header_object()
4540 add_property_str(myzvalue, "ccaddress", fulladdress); in _php_make_header_object()
4547 fulladdress = _php_imap_parse_address(en->bcc, &paddress); in _php_make_header_object()
4548 if (fulladdress) { in _php_make_header_object()
4549 add_property_str(myzvalue, "bccaddress", fulladdress); in _php_make_header_object()
4556 fulladdress = _php_imap_parse_address(en->reply_to, &paddress); in _php_make_header_object()
4557 if (fulladdress) { in _php_make_header_object()
4558 add_property_str(myzvalue, "reply_toaddress", fulladdress); in _php_make_header_object()
4565 fulladdress = _php_imap_parse_address(en->sender, &paddress); in _php_make_header_object()
4566 if (fulladdress) { in _php_make_header_object()
4567 add_property_str(myzvalue, "senderaddress", fulladdress); in _php_make_header_object()
4574 fulladdress = _php_imap_parse_address(en->return_path, &paddress); in _php_make_header_object()
4575 if (fulladdress) { in _php_make_header_object()
4576 add_property_str(myzvalue, "return_pathaddress", fulladdress); in _php_make_header_object()