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

Lines Matching defs:reply

988 			            const char *addr, RESOLVE_REPLY *reply)
997 resolve_clnt_query_from(message->sender, addr, reply);
999 resolve_clnt_verify_from(message->sender, addr, reply);
1000 if (reply->flags & RESOLVE_FLAG_FAIL) {
1001 QMGR_REDIRECT(reply, MAIL_SERVICE_RETRY,
1004 } else if (reply->flags & RESOLVE_FLAG_ERROR) {
1005 QMGR_REDIRECT(reply, MAIL_SERVICE_ERROR,
1022 RESOLVE_REPLY reply;
1037 resolve_clnt_init(&reply);
1055 reply.recipient);
1056 RECIPIENT_UPDATE(recipient->address, STR(reply.recipient));
1058 recipient->address, &reply) < 0)
1060 if (!STREQ(recipient->address, STR(reply.recipient)))
1061 RECIPIENT_UPDATE(recipient->address, STR(reply.recipient));
1080 reply.flags = 0;
1081 vstring_strcpy(reply.transport, message->filter_xport);
1082 if (FILTER_WITHOUT_NEXTHOP(STR(reply.transport), nexthop)
1086 vstring_strcpy(reply.nexthop, nexthop);
1087 vstring_strcpy(reply.recipient, recipient->address);
1096 recipient->address, &reply) < 0)
1098 if (!STREQ(recipient->address, STR(reply.recipient)))
1099 RECIPIENT_UPDATE(recipient->address, STR(reply.recipient));
1108 QMGR_REDIRECT(&reply, MAIL_SERVICE_ERROR,
1121 if (reply.flags & RESOLVE_CLASS_LOCAL) {
1122 at = strrchr(STR(reply.recipient), '@');
1123 len = (at ? (at - STR(reply.recipient))
1124 : strlen(STR(reply.recipient)));
1125 if (strncasecmp(STR(reply.recipient), var_double_bounce_sender,
1153 if (strcmp(*cpp, STR(reply.transport)) == 0)
1156 QMGR_REDIRECT(&reply, MAIL_SERVICE_RETRY,
1164 if (transport == 0 || !STREQ(transport->name, STR(reply.transport))) {
1165 if ((transport = qmgr_transport_find(STR(reply.transport))) == 0)
1166 transport = qmgr_transport_create(STR(reply.transport));
1185 vstring_strcpy(reply.nexthop, nexthop);
1227 vstring_strcpy(queue_name, STR(reply.nexthop));
1232 at = strrchr(STR(reply.recipient), '@');
1233 len = (at ? (at - STR(reply.recipient))
1234 : strlen(STR(reply.recipient)));
1235 vstring_strncpy(queue_name, STR(reply.recipient), len);
1240 vstring_sprintf_append(queue_name, "@%s", STR(reply.nexthop));
1251 STR(reply.nexthop));
1277 resolve_clnt_free(&reply);