Interface MailpitConfig


@ConfigMapping(prefix="quarkus.mailpit") @ConfigRoot(phase=BUILD_TIME) public interface MailpitConfig
Allows configuring the Mailpit mail server.

Find more info about Mailpit on https://github.com/axllent/mailpit.

  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final String
    Default docker image name.
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    If Dev Services for Mailpit has been explicitly enabled or disabled.
    The Mailpit container image to use.
    static boolean
     
    boolean
    Flag to control if verbose logging of Mailpit container is requested.
  • Field Details

  • Method Details

    • enabled

      @WithDefault("true") boolean enabled()
      If Dev Services for Mailpit has been explicitly enabled or disabled. Dev Services are generally enabled by default, unless there is an existing configuration present.
    • imageName

      @WithDefault("axllent/mailpit") String imageName()
      The Mailpit container image to use.
    • verbose

      @WithDefault("true") boolean verbose()
      Flag to control if verbose logging of Mailpit container is requested.
    • isEqual

      static boolean isEqual(MailpitConfig d1, MailpitConfig d2)