Home
last modified time | relevance | path

Searched refs:ml_to (Results 1 – 5 of 5) sorted by relevance

/dports/mail/elm/elm2.5.8/lib/
H A Dmlist.c184 if (entry->ml_to.str == NULL) {
188 parseaddrs(entry->allto, &entry->ml_to, FALSE);
190 entry->ml_cc_index = entry->ml_to.len;
191 parseaddrs(entry->allto+entry->cc_index, &entry->ml_to, TRUE);
194 parseaddrs(entry->allto, &entry->ml_to, FALSE);
195 entry->ml_cc_index = entry->ml_to.len;
205 for (match = 0; match < entry->ml_to.len; match++) {
206 if (!okay_address(entry->ml_to.str[match], NULL)) {
227 for (i = 0; i < entry->ml_to.len; i++) {
228 if (istrcmp(entry->ml_to.str[i], addr) == 0) {
/dports/mail/elm/elm2.5.8/src/
H A Dscreen.c443 if (entry->ml_to.len == 1 || /* just to me ... */
444 (entry->ml_to.len == 2 && /* ... or me and sender */
457 match = addrmatch(&entry->ml_to, &patterns);
463 if (entry->ml_to.len > 0) { /* ... no mlist, try 'to' hdr */
466 entry->ml_to.str[0]);
480 if (entry->ml_to.len == 1 || /* just to me ... */
481 (entry->ml_to.len == 2 && /* ... or me and sender */
H A Dnewmbox.c527 current_header->ml_to.len = current_header->ml_to.max = 0;
528 current_header->ml_to.str = NULL;
588 current_header->ml_to.len = current_header->ml_to.max = 0;
589 current_header->ml_to.str = NULL;
H A Delm.c674 for (i = 0; i < hdr->ml_to.len; i++) { in debug_message()
677 PutLine0(-1, -1, hdr->ml_to.str[i]); in debug_message()
/dports/mail/elm/elm2.5.8/hdrs/
H A Delm_defs.h424 struct addrs ml_to; /** mlist parsed 'to' fields **/ member