Uses of Interface
mireka.destination.Destination
-
Packages that use Destination Package Description 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.misc Contains other, unrelated, simple filters which have not got their own package.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.pop Contains classes for the configuration and connection handling of a POP3 (Post Office Protocol) server.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. -
-
Uses of Destination in mireka.destination
Subinterfaces of Destination in mireka.destination Modifier and Type Interface Description interfaceMailDestinationA MailDestination is aResponsibleDestinationwhich is only interested in the complete mail at the end of the mail transaction, not in the steps of the mail transaction.interfaceResponsibleDestinationResponsibleDestination is a Destination which takes complete responsibility for the delivery of the mail.interfaceSessionDestinationSessionDestination is aResponsibleDestination, which is able the deliver the mail while following the mail transaction step by step.Classes in mireka.destination that implement Destination Modifier and Type Class Description classAliasDestinationAn AliasDestination indicates that the final destination of mails sent to the recipient should be the same as the destination assigned to another recipient.classNullDestinationNullDestination drops the mail.classTransformDestinationTransforms the mail sent to the recipient and forwards the result.classUnknownRecipientDestinationUnknownRecipientDestination is a special destination which rejects the recipient in theSession.recipient(RecipientContext)phase. -
Uses of Destination in mireka.filter
Methods in mireka.filter that return Destination Modifier and Type Method Description DestinationRecipientContext. getDestination()Methods in mireka.filter with parameters of type Destination Modifier and Type Method Description voidRecipientContext. setDestination(Destination destination) -
Uses of Destination in mireka.filter.local.table
Methods in mireka.filter.local.table that return Destination Modifier and Type Method Description 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)Methods in mireka.filter.local.table with parameters of type Destination Modifier and Type Method Description voidRecipientDestinationPair. setDestination(Destination destination)voidRecipientSpecificationDestinationPair. setDestination(Destination destination) -
Uses of Destination in mireka.filter.misc
Methods in mireka.filter.misc that return Destination Modifier and Type Method Description DestinationReversePathDestinationPair. getDestination()Methods in mireka.filter.misc with parameters of type Destination Modifier and Type Method Description voidReversePathDestinationPair. setDestination(Destination destination) -
Uses of Destination in mireka.filter.proxy
Classes in mireka.filter.proxy that implement Destination Modifier and Type Class Description classRelayDestinationRelayDestination relays each step of the mail transaction in "realtime" to a gateway. -
Uses of Destination in mireka.forward
Classes in mireka.forward that implement Destination Modifier and Type Class Description classForwardDestinationForwardDestination redistributes mail to multiple recipients without changing the reverse path.classSrsDestinationAn SrsDestination assigned to a recipient indicates that the mail must be forwarded to a remote address, which is specified in the Sender Rewriting Scheme (SRS) compatible local part of the recipient address. -
Uses of Destination in mireka.list
Classes in mireka.list that implement Destination Modifier and Type Class Description classListDestinationA ListDestination assigned to a recipient indicates that the mail should be redistributed to multiple recipients.Methods in mireka.list that return Destination Modifier and Type Method Description DestinationListMapper. lookup(Recipient recipient) -
Uses of Destination in mireka.login
Methods in mireka.login that return Destination Modifier and Type Method Description DestinationGlobalUsersMaildropDestinationMapper. lookup(Recipient recipient) -
Uses of Destination in mireka.pop
Classes in mireka.pop that implement Destination Modifier and Type Class Description classMaildropDestinationMaildropDestination puts the mail into the specified POP3 maildrop. -
Uses of Destination in mireka.smtp.server
Methods in mireka.smtp.server with parameters of type Destination Modifier and Type Method Description voidMailTransactionImpl. addDestinationForRecipient(Recipient recipient, Destination destination) -
Uses of Destination in mireka.transmission
Classes in mireka.transmission that implement Destination Modifier and Type Class Description classTransmitterDestinationThe TransmitterDestination marks a recipient for which the mail must be transmitted asynchronously to a remote MTA as specified by the remote part of the address.
-