• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10.1/postfix-255/postfix/src/oqmgr/

Lines Matching defs:reply

931 			            const char *addr, RESOLVE_REPLY *reply)
940 resolve_clnt_query_from(message->sender, addr, reply);
942 resolve_clnt_verify_from(message->sender, addr, reply);
943 if (reply->flags & RESOLVE_FLAG_FAIL) {
944 QMGR_REDIRECT(reply, MAIL_SERVICE_RETRY,
947 } else if (reply->flags & RESOLVE_FLAG_ERROR) {
948 QMGR_REDIRECT(reply, MAIL_SERVICE_ERROR,
965 RESOLVE_REPLY reply;
980 resolve_clnt_init(&reply);
996 reply.recipient);
997 RECIPIENT_UPDATE(recipient->address, STR(reply.recipient));
999 recipient->address, &reply) < 0)
1001 if (!STREQ(recipient->address, STR(reply.recipient)))
1002 RECIPIENT_UPDATE(recipient->address, STR(reply.recipient));
1021 reply.flags = 0;
1022 vstring_strcpy(reply.transport, message->filter_xport);
1023 if (FILTER_WITHOUT_NEXTHOP(STR(reply.transport), nexthop)
1027 vstring_strcpy(reply.nexthop, nexthop);
1028 vstring_strcpy(reply.recipient, recipient->address);
1037 recipient->address, &reply) < 0)
1039 if (!STREQ(recipient->address, STR(reply.recipient)))
1040 RECIPIENT_UPDATE(recipient->address, STR(reply.recipient));
1049 QMGR_REDIRECT(&reply, MAIL_SERVICE_ERROR,
1062 if (reply.flags & RESOLVE_CLASS_LOCAL) {
1063 at = strrchr(STR(reply.recipient), '@');
1064 len = (at ? (at - STR(reply.recipient))
1065 : strlen(STR(reply.recipient)));
1066 if (strncasecmp(STR(reply.recipient), var_double_bounce_sender,
1094 if (strcmp(*cpp, STR(reply.transport)) == 0)
1097 QMGR_REDIRECT(&reply, MAIL_SERVICE_RETRY,
1105 if (transport == 0 || !STREQ(transport->name, STR(reply.transport))) {
1106 if ((transport = qmgr_transport_find(STR(reply.transport))) == 0)
1107 transport = qmgr_transport_create(STR(reply.transport));
1126 vstring_strcpy(reply.nexthop, nexthop);
1168 vstring_strcpy(queue_name, STR(reply.nexthop));
1173 at = strrchr(STR(reply.recipient), '@');
1174 len = (at ? (at - STR(reply.recipient))
1175 : strlen(STR(reply.recipient)));
1176 vstring_strncpy(queue_name, STR(reply.recipient), len);
1181 vstring_sprintf_append(queue_name, "@%s", STR(reply.nexthop));
1192 STR(reply.nexthop));
1218 resolve_clnt_free(&reply);