HomeSort by: relevance | last modified time | path
    Searched defs:why (Results 1 - 25 of 69) sorted by relevancy

1 2 3

  /src/external/ibm-public/postfix/dist/src/global/
trace.c 117 VSTRING *why = vstring_alloc(100); local
126 vstring_sprintf(why, "delivery via %s: ", relay);
127 vstring_strcat(why, my_dsn.reason);
128 my_dsn.reason = vstring_str(why);
145 vstring_free(why);
reject_deliver_request.c 74 DSN_BUF *why; local
84 why = vdsb_simple(dsb_create(), code, format, ap);
86 (void) DSN_FROM_DSN_BUF(why);
87 if (strchr("45", vstring_str(why->status)[0]) == 0)
95 status = (vstring_str(why->status)[0] != '4' ?
100 service, &why->dsn);
105 dsb_free(why);
dot_lockfile.c 11 /* int dot_lockfile(path, why)
13 /* VSTRING *why;
30 /* .IP why
31 /* A null pointer, or storage for the reason why a lock file could
82 int dot_lockfile(const char *path, VSTRING *why)
126 if (status && why)
127 vstring_sprintf(why, "unable to create lock file %s: %m", lock_file);
162 VSTRING *why = vstring_alloc(100); local
168 if (dot_lockfile(argv[1], why) < 0)
169 msg_fatal("%s", vstring_str(why));
    [all...]
mail_version.c 19 /* MAIL_VERSION *mail_version_parse(version_string, why)
21 /* const char **why;
64 /* a null pointer, and sets the why argument to a string with
157 MAIL_VERSION *mail_version_parse(const char *string, const char **why)
166 *why = err;
213 const char *why; local
215 mp = mail_version_parse(sample, &why);
217 vstream_printf("ERROR: %s: %s\n", sample, why);
  /src/external/ibm-public/postfix/dist/src/smtp/
smtp_sasl_proto.c 125 DSN_BUF *why = state->why; local
146 dsb_simple(why, "4.7.0", "SASL authentication failed: "
165 if (smtp_sasl_authenticate(session, why) <= 0) {
smtp_rcpt.c 149 DSN_BUF *why = state->why; local
179 dsb_update(why, resp->dsn, dsn_action, DSB_MTYPE_DNS, STR(iter->host),
184 session->namaddrport, DSN_FROM_DSN_BUF(why));
smtp_trouble.c 79 /* record why the host is being skipped; soft error, final server:
89 /* record why the host is being skipped; soft error, final server:
105 /* record why the recipient is being skipped; soft error, final server:
115 /* with the reason why the host is being skipped; final server:
132 /* Human-readable description of why mail is not deliverable.
219 DSN_BUF *why = state->why; local
223 int soft_error = (STR(why->status)[0] == '4');
224 int soft_bounce_error = (STR(why->status)[0] == '5' && var_soft_bounce);
230 * why we're skipping this host
316 DSN_BUF *why = state->why; local
375 DSN_BUF *why = state->why; local
436 DSN_BUF *why = state->why; local
    [all...]
  /src/external/ibm-public/postfix/dist/src/dns/
dns_rr_to_pa.c 89 VSTRING *why; local
95 why = vstring_alloc(1);
102 if (dns_lookup(argv[1], type, 0, &rr, (VSTRING *) 0, why) != DNS_OK)
103 msg_fatal("%s: %s", argv[1], vstring_str(why));
111 vstring_free(why);
dns_sec.c 88 VSTRING *why; local
121 why = vstring_alloc(100);
122 dns_status = dns_lookup(qname, qtype, rflags, &rrlist, (VSTRING *) 0, why);
141 var_dnssec_probe, vstring_str(why));
145 vstring_free(why);
dns_rr_to_sa.c 133 VSTRING *why; local
140 why = vstring_alloc(1);
149 if (dns_lookup(argv[1], type, 0, &rr, (VSTRING *) 0, why) != DNS_OK)
150 msg_fatal("%s: %s", argv[1], vstring_str(why));
161 vstring_free(why);
test_dns_lookup.c 74 VSTRING *why = vstring_alloc(100); local
120 switch (dns_lookup_rv(name, RES_USE_DNSSEC, &rr, fqdn, why,
123 msg_warn("%s (rcode=%d)", vstring_str(why), rcode);
  /src/external/ibm-public/postfix/dist/src/local/
file.c 89 DSN_BUF *why = state.msg_attr.why; local
115 dsb_simple(why, "5.7.1", "mail to file is restricted");
124 dsb_simple(why, "2.0.0", "delivers to file: %s", path);
166 "5.2.0", why);
170 dsb_simple(why, "5.7.1", "file is executable");
175 "\n", why);
187 vstring_sprintf_prepend(why->reason,
192 dsb_simple(why, "2.0.0", "delivered to file: %s", path);
command.c 91 DSN_BUF *why = state.msg_attr.why; local
122 dsb_simple(why, "2.0.0", "delivers to command: %s", command);
209 dsb_simple(why, "4.3.5", "mail system configuration error");
213 cmd_status = pipe_command(state.msg_attr.fp, why,
238 dsb_simple(why, "2.0.0", "delivered to command: %s", command);
maildir.c 88 DSN_BUF *why = state.msg_attr.why; local
110 dsb_simple(why, "2.0.0", "delivers to maildir");
194 dsb_simple(why, mbox_dsn(errno, "5.2.0"),
214 why)) == 0) {
219 dsb_simple(why, mbox_dsn(errno, "5.2.0"),
238 STR(why->reason));
241 vstring_sprintf_prepend(why->reason, "maildir delivery failed: ");
243 (STR(why->status)[0] == '4' ?
247 dsb_simple(why, "2.0.0", "delivered to maildir")
    [all...]
mailbox.c 101 DSN_BUF *why = state.msg_attr.why; local
125 dsb_simple(why, "2.0.0", "delivers to mailbox");
197 local_mbox_lock_mask, "5.2.0", why);
203 dsb_simple(why, "5.2.0",
207 dsb_simple(why, "4.2.0",
215 copy_flags, "\n", why);
229 vstring_sprintf_prepend(why->reason,
233 (STR(why->status)[0] == '4' ?
237 dsb_simple(why, "2.0.0", "delivered to mailbox")
    [all...]
  /src/sys/arch/hpcmips/vr/
cmu.c 133 int why = (int)msg; local
135 switch (why) {
vrled.c 361 int why =*(int *)msg; local
369 switch (why) {
  /src/external/ibm-public/postfix/dist/src/postlock/
postlock.c 160 DSN_BUF *why; local
254 why = dsb_create();
257 -1, -1, lock_mask, "5.2.0", why)) == 0)
258 msg_fatal("open file %s: %s", folder, vstring_str(why->reason));
259 dsb_free(why);
  /src/external/ibm-public/postfix/dist/src/postqueue/
showq_json.c 70 static VSTRING *why = 0; local
85 why = vstring_alloc(100);
132 RECV_ATTR_STR(MAIL_ATTR_WHY, why),
137 if (LEN(why) > 0)
139 QUOTE_JSON(quote_buf, STR(why)));
  /src/external/ibm-public/postfix/dist/src/util/
fifo_trigger.c 62 static VSTRING *why; local
67 if (why == 0)
68 why = vstring_alloc(1);
77 * the caller with safe_open() specific quirks such as the why argument.
80 (struct stat *) 0, -1, -1, why)) == 0) {
82 msg_info("%s: open %s: %s", myname, service, vstring_str(why));
logwriter.c 95 VSTRING *why = vstring_alloc(100); local
102 NO_STATP, NO_CHOWN, NO_CHGRP, why);
104 msg_fatal("open logfile '%s': %s", path, vstring_str(why));
106 vstring_free(why);
  /src/external/ibm-public/postfix/dist/src/virtual/
maildir.c 83 DSN_BUF *why = state.msg_attr.why; local
105 dsb_simple(why, "2.0.0", "delivers to maildir");
188 dsb_simple(why, mbox_dsn(errno, "4.2.0"),
208 why)) == 0) {
213 dsb_simple(why, mbox_dsn(errno, "4.2.0"),
234 STR(why->reason));
237 vstring_sprintf_prepend(why->reason, "maildir delivery failed: ");
239 (STR(why->status)[0] == '4' ?
244 dsb_simple(why, "2.0.0", "delivered to maildir")
    [all...]
mailbox.c 85 DSN_BUF *why = state.msg_attr.why; local
103 dsb_simple(why, "2.0.0", "delivers to mailbox");
127 virtual_mbox_lock_mask, "4.2.0", why);
133 dsb_simple(why, "5.3.5", "mail system configuration error");
136 dsb_simple(why, "4.2.0",
145 copy_flags, "\n", why);
157 vstring_sprintf_prepend(why->reason, "delivery failed to mailbox %s: ",
160 (STR(why->status)[0] == '4' ?
165 dsb_simple(why, "2.0.0", "delivered to mailbox")
180 DSN_BUF *why = state.msg_attr.why; local
    [all...]
  /src/sys/dev/hpc/
pwctl.c 180 int why =(int)msg; local
183 why == PWR_RESUME? "resume"
184 : why == PWR_SUSPEND? "suspend" : "standby",
187 switch (why) {
  /src/external/ibm-public/postfix/dist/src/dnsblog/
dnsblog.c 137 static VSTRING *why; variable
205 why, (int *) 0, DNS_REQ_FLAG_NCACHE_TTL);
243 myname, STR(query), STR(why));
295 why = vstring_alloc(100);

Completed in 57 milliseconds

1 2 3