Examples of RejectException


Examples of com.englishtown.promises.exceptions.RejectException

            };

            Function<Throwable, Promise<T>> handleReject = (e) -> {
                errors.add(e);
                if (--pending.value == 0) {
                    reject.accept(new RejectException("All promises rejected", errors));
                }
                return null;
            };

            promises.forEach((p) -> {
View Full Code Here

Examples of com.englishtown.promises.exceptions.RejectException

                if (nReject.value > 0) {
                    --nReject.value; // TODO: sync?
                    errors.add(e);

                    if (nReject.value == 0) {
                        reject.accept(new RejectException("Too many rejections", errors));
                    }
                }
                return null;
            };
View Full Code Here

Examples of com.englishtown.promises.exceptions.RejectException

    public Promise<T> tap(Function<T, Thenable<T>> onFulfilledSideEffect) {
        return this.then(onFulfilledSideEffect).yield(this);
    }

    private void rejectInvalidPredicate() {
        throw new RejectException("catch predicate must be a function");
    }
View Full Code Here

Examples of com.englishtown.promises.exceptions.RejectException

                // Short circuit, no need to wait for response end
                if (writeStream == null) {
                    if (finalExpectedStatuses.contains(response.statusCode())) {
                        d.resolve(response);
                    } else {
                        d.reject(new RejectException().setValue(response));
                    }
                    return;
                }

                Pump.createPump(response, writeStream).start();

                response.endHandler(new Handler<Void>() {
                    @Override
                    public void handle(Void event) {
                        if (finalExpectedStatuses.contains(response.statusCode())) {
                            d.resolve(response);
                        } else {
                            d.reject(new RejectException().setValue(response));
                        }
                    }
                });
            });
View Full Code Here

Examples of com.englishtown.promises.exceptions.RejectException

                            body -> {
                                HttpClientResponseAndBody responseAndBody = new DefaultHttpClientResponseAndBody(response, body);
                                if (finalExpectedStatuses.contains(response.statusCode())) {
                                    d.resolve(responseAndBody);
                                } else {
                                    d.reject(new RejectException().setValue(responseAndBody));
                                }
                            }
                    )
            );
View Full Code Here

Examples of org.subethamail.smtp.RejectException

          addedListener = true;
        }
      }

      if (!addedListener)
        throw new RejectException(553, "<" + recipient + "> address unknown.");
    }
View Full Code Here

Examples of org.subethamail.smtp.RejectException

      if (token.trim().equalsIgnoreCase("AUTH"))
      {
        if (!stk.nextToken().trim().equalsIgnoreCase("LOGIN"))
        {
          // Mechanism mismatch
          throw new RejectException(504, "AUTH mechanism mismatch");
        }

        if (stk.hasMoreTokens())
        {
          // The client submitted an initial response, which should be
          // the username.
          // .Net's built in System.Net.Mail.SmtpClient sends its
          // authentication this way (and this way only).
          username = TextUtils.getStringUtf8(Base64.decode(stk
              .nextToken()));

          return "334 "
              + Base64.encodeToString(
                  TextUtils.getAsciiBytes("Password:"),
                  false);
        } else {
          return "334 "
              + Base64.encodeToString(
                  TextUtils.getAsciiBytes("Username:"), false);
        }
      }

      if (this.username == null)
      {
        byte[] decoded = Base64.decode(clientInput);
        if (decoded == null)
        {
          throw new RejectException();
        }

        this.username = TextUtils.getStringUtf8(decoded);

        return "334 "
            + Base64.encodeToString(
                TextUtils.getAsciiBytes("Password:"), false);
      }

      byte[] decoded = Base64.decode(clientInput);
      if (decoded == null)
      {
        throw new RejectException();
      }

      this.password = TextUtils.getStringUtf8(decoded);
      try
      {
        LoginAuthenticationHandlerFactory.this.helper.login(this.username, this.password);
      }
      catch (LoginFailedException lfe)
      {
        throw new RejectException();
      }

      return null;
    }
View Full Code Here

Examples of org.subethamail.smtp.RejectException

        // Let's read the RFC2554 "initial-response" parameter
        // The line could be in the form of "AUTH PLAIN <base64Secret>"
        if (!stk.nextToken().trim().equalsIgnoreCase("PLAIN"))
        {
          // Mechanism mismatch
          throw new RejectException(504, "AUTH mechanism mismatch");
        }

        if (stk.hasMoreTokens())
        {
          // the client submitted an initial response
          secret = stk.nextToken();
        }
        else
        {
          // the client did not submit an initial response, we'll get it in the next pass
          return "334 Ok";
        }
      }

      byte[] decodedSecret = Base64.decode(secret);
      if (decodedSecret == null)
        throw new RejectException();

      /*
       * RFC4616: The client presents the authorization identity (identity
       * to act as), followed by a NUL (U+0000) character, followed by the
       * authentication identity (identity whose password will be used),
       * followed by a NUL (U+0000) character, followed by the clear-text
       * password.
       */

      int i, j;
      for (i = 0; i < decodedSecret.length && decodedSecret[i] != 0; i++)
        ;
      if (i >= decodedSecret.length)
      {
        throw new RejectException();
      }

      for (j = i + 1; j < decodedSecret.length && decodedSecret[j] != 0; j++)
        ;
      if (j >= decodedSecret.length)
      {
        throw new RejectException();
      }

      @SuppressWarnings("unused")
      String authorizationId = new String(decodedSecret, 0, i);
      String authenticationId = new String(decodedSecret, i + 1, j - i - 1);
      String passwd = new String(decodedSecret, j + 1, decodedSecret.length - j - 1);

      // might be nice to do something with authorizationId, but for
      // purposes of the UsernamePasswordValidator, we just want to use
      // authenticationId

      this.username = authenticationId;
      this.password = passwd;
      try
      {
        PlainAuthenticationHandlerFactory.this.helper.login(this.username.toString(), this.password);
      }
      catch (LoginFailedException lfe)
      {
        throw new RejectException();
      }

      return null;
    }
View Full Code Here

Examples of org.subethamail.smtp.RejectException

    @Override
    public void data(MailData data) throws RejectException,
            TooMuchDataException, IOException {
        try {
            if (receivedHeaderCount(data) > maxReceivedHeaders)
                throw new RejectException(554, "Routing loop detected");
        } catch (MimeException e) {
            logger.debug("Cannot determine Received header count", e);
            throw new RejectException(554, "Invalid message content");
        } catch (MaxLineLimitException e) {
            logger.debug(
                    "Line too long, cannot determine Received header count", e);
            throw new RejectException(554, "Line too long");
        }
    }
View Full Code Here

Examples of org.subethamail.smtp.RejectException

        RemotePart remotePart = recipient.getMailbox().getRemotePart();
        for (RemotePartSpecification remotePartSpecification : localDomainSpecifications) {
            if (remotePartSpecification.isSatisfiedBy(remotePart))
                return FilterReply.NEUTRAL;
        }
        throw new RejectException(550,
                "Relaying prohibited, user is not local (" + recipient + ")");

    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.