Uses of Interface
mireka.address.Recipient
-
Packages that use Recipient Package Description mireka.address Classes representing recipient addresses passed in mail envelopes.mireka.destination Contains Destination core classes; destinations represents the different ways of delivering a mail received in an incoming mail transaction, e.g. putting the mail into a POP3 maildrop or transmitting it to a remote domain.mireka.filter Contains the filter API; filters follow an SMTP transaction and may respond to individual SMTP commands.mireka.filter.local.table Provides classes for configuring which recipients are local and what to do with mails addressed to them.mireka.filter.proxy Provides a filter which relays a mail transaction step by step to a backend server in "real time".mireka.forward Provides support for address expansion for multiple delivery.mireka.list Provides a simple mailing list, which can be used for small, closed, internal mailing lists, if a full mailing list manager software is not available.mireka.login Contains classes for the configuration and verification of login credentials.mireka.smtp Contains some commonly useful SMTP related classes.mireka.smtp.server Classes related to establishing an SMTP listening socket, receiving mail using the SubEthaSMTP library, and passing it to the filter chain for processing.mireka.transmission Provides the reliable transmission service API and the correspondingTransmitterDestinationdestination.mireka.transmission.dsn Creates Delivery Status Notification message.mireka.transmission.immediate Provides the API and implementation for services which make a one-time attempt to synchronously transmit a mail to a remote system, either directly, or via a smart host. -
-
Uses of Recipient in mireka.address
Subinterfaces of Recipient in mireka.address Modifier and Type Interface Description interfaceRemotePartContainingRecipientThe special "Postmaster" recipient (without domain name) is the only Recipient which doesn't implement this interfaceClasses in mireka.address that implement Recipient Modifier and Type Class Description classDomainPostmasterrepresents the special "Postmaster@"domain recipient.classGenericRecipientThis class represents a generic recipient, which is neither the special global nor the special domain specific postmaster address.classGlobalPostmasterGlobalPostmaster represents the special "Postmaster" recipient (without a domain).Methods in mireka.address that return Recipient Modifier and Type Method Description RecipientMailAddressFactory. createRecipient(String recipientString)Parses the specified string and creates aRecipientinstance.RecipientMailAddressFactory. createRecipientAlreadyVerified(String recipientString)RecipientMailAddressFactory. reversePath2Recipient(ReversePath reversePath) -
Uses of Recipient in mireka.destination
Methods in mireka.destination that return Recipient Modifier and Type Method Description RecipientAliasDestination. getRecipient()Methods in mireka.destination with parameters of type Recipient Modifier and Type Method Description voidAliasDestination. setRecipient(Recipient recipient) -
Uses of Recipient in mireka.filter
Fields in mireka.filter declared as Recipient Modifier and Type Field Description RecipientRecipientContext. recipientConstructors in mireka.filter with parameters of type Recipient Constructor Description RecipientContext(MailTransaction mailTransaction, Recipient recipient) -
Uses of Recipient in mireka.filter.local.table
Methods in mireka.filter.local.table with parameters of type Recipient Modifier and Type Method Description booleanAnyDomainPostmaster. isSatisfiedBy(Recipient recipient)booleanAnyDomainRecipient. isSatisfiedBy(Recipient recipient)booleanAnyPostmaster. isSatisfiedBy(Recipient recipient)booleanAnyRecipient. isSatisfiedBy(Recipient recipient)booleanCaseInsensitiveAnyDomainRecipient. isSatisfiedBy(Recipient recipient)booleanDomainPostmasterSpecification. isSatisfiedBy(Recipient recipient)booleanGlobalPostmasterSpecification. isSatisfiedBy(Recipient recipient)booleanInlineRecipientRegistry. isSatisfiedBy(Recipient recipient)booleanLocalPostmaster. isSatisfiedBy(Recipient recipient)booleanLocalRemoteCombinedRecipientSpecification. isSatisfiedBy(Recipient recipient)booleanRecipientSpecification. isSatisfiedBy(Recipient recipient)booleanRecipientSpecifications. isSatisfiedBy(Recipient recipient)booleanRegexAddressSpecification. isSatisfiedBy(Recipient recipient)booleanSplitRecipientSpecification. isSatisfiedBy(Recipient recipient)DestinationAliasMapper. lookup(Recipient recipient)DestinationLocalRecipientTable. lookup(Recipient recipient)DestinationPostmasterAliasMapper. lookup(Recipient recipient)DestinationRecipientDestinationMapper. lookup(Recipient recipient)Returns the destination of mails sent to this user; or null if it does not know the recipient.DestinationRecipientDestinationPair. lookup(Recipient recipient)DestinationRecipientSpecificationDestinationPair. lookup(Recipient recipient)DestinationRecipientTable. lookup(Recipient recipient) -
Uses of Recipient in mireka.filter.proxy
Methods in mireka.filter.proxy with parameters of type Recipient Modifier and Type Method Description voidBackendClient. recipient(Recipient recipient) -
Uses of Recipient in mireka.forward
Methods in mireka.forward that return Recipient Modifier and Type Method Description RecipientMember. getRecipient()RecipientSrs. reverse(Recipient srsRecipient)Methods in mireka.forward with parameters of type Recipient Modifier and Type Method Description ReversePathSrs. forward(ReversePath reversePath, Recipient originalRecipient)Returns a reverse path which can be used in the forwarded mail.booleanSrsRecipientSpecification. isSatisfiedBy(Recipient recipient)RecipientSrs. reverse(Recipient srsRecipient) -
Uses of Recipient in mireka.list
Methods in mireka.list with parameters of type Recipient Modifier and Type Method Description DestinationListMapper. lookup(Recipient recipient) -
Uses of Recipient in mireka.login
Methods in mireka.login with parameters of type Recipient Modifier and Type Method Description booleanGlobalUsersRecipientSpecification. isSatisfiedBy(Recipient recipient)DestinationGlobalUsersMaildropDestinationMapper. lookup(Recipient recipient) -
Uses of Recipient in mireka.smtp
Methods in mireka.smtp that return Recipient Modifier and Type Method Description RecipientUnknownUserException. getRecipient()Constructors in mireka.smtp with parameters of type Recipient Constructor Description UnknownUserException(Recipient recipient) -
Uses of Recipient in mireka.smtp.server
Methods in mireka.smtp.server with parameters of type Recipient Modifier and Type Method Description voidMailTransactionImpl. addDestinationForRecipient(Recipient recipient, Destination destination) -
Uses of Recipient in mireka.transmission
Fields in mireka.transmission with type parameters of type Recipient Modifier and Type Field Description java.util.List<Recipient>Mail. recipients -
Uses of Recipient in mireka.transmission.dsn
Fields in mireka.transmission.dsn declared as Recipient Modifier and Type Field Description RecipientRecipientProblemReport. recipient -
Uses of Recipient in mireka.transmission.immediate
Fields in mireka.transmission.immediate declared as Recipient Modifier and Type Field Description RecipientRecipientRejection. recipientConstructors in mireka.transmission.immediate with parameters of type Recipient Constructor Description RecipientRejection(Recipient recipient, RemoteMtaErrorResponseException sendException)
-