/src/org/subethamail/core/smtp/SMTPService.java

http://subetha.googlecode.com/ · Java · 198 lines · 106 code · 31 blank · 61 comment · 14 complexity · 29353bd8f86deec9cad81fb506ce4dc6 MD5 · raw file

  1. /*
  2. * $Id: SMTPService.java 273 2006-05-07 04:00:41Z jon $
  3. * $URL: http://subetha.tigris.org/svn/subetha/branches/resin/core/src/org/subethamail/core/smtp/SMTPService.java $
  4. */
  5. package org.subethamail.core.smtp;
  6. import java.io.IOException;
  7. import java.net.InetAddress;
  8. import java.net.UnknownHostException;
  9. import javax.annotation.PostConstruct;
  10. import javax.annotation.PreDestroy;
  11. import javax.ejb.Startup;
  12. import javax.enterprise.context.ApplicationScoped;
  13. import javax.inject.Inject;
  14. import org.slf4j.Logger;
  15. import org.slf4j.LoggerFactory;
  16. import org.subethamail.core.injector.i.Injector;
  17. import org.subethamail.smtp.server.SMTPServer;
  18. /**
  19. * SubEtha's adapter for SubEthaSMTP. The default port is 2500 and by
  20. * default it binds to all addresses. This can be overriden by setting
  21. * the various properties in the subetha.xml configuration file.
  22. *
  23. * Note that this also handles a fallback destination for mail that is
  24. * not accepted by this server. If defined, all unclaimed mail will
  25. * be sent there. Note that mail can have multiple recipients, in which
  26. * case it may get split and sent both locally and remotely (multiple times,
  27. * even).
  28. *
  29. * @author Ian McFarland
  30. * @author Jeff Schnitzer
  31. * @author Jon Stevens
  32. * @author Scott Hernandez
  33. */
  34. @Startup
  35. @ApplicationScoped
  36. public class SMTPService
  37. {
  38. /** */
  39. private final static Logger log = LoggerFactory.getLogger(SMTPService.class);
  40. /** */
  41. public static final int DEFAULT_PORT = 2500;
  42. /** */
  43. private int port = DEFAULT_PORT;
  44. private String hostName = null;
  45. private String bindAddress = null;
  46. private String fallbackHost = null;
  47. /** */
  48. private SMTPServer smtpServer;
  49. /** */
  50. @Inject Injector injector;
  51. /**
  52. */
  53. public SMTPService()
  54. {
  55. }
  56. /** This is used privately by the Handler */
  57. Injector getInjector()
  58. {
  59. return this.injector;
  60. }
  61. /**
  62. */
  63. @PostConstruct
  64. public void start() throws IOException
  65. {
  66. if (this.smtpServer != null)
  67. throw new IllegalStateException("SMTPServer already running");
  68. log.info("Starting SMTP service: " + (this.bindAddress==null ? "*" : this.bindAddress) + ":" + this.port);
  69. this.smtpServer = new SMTPServer(new SMTPHandler(this));
  70. this.smtpServer.setHideTLS(true);
  71. InetAddress binding = this.getBinding();
  72. if (binding != null)
  73. this.smtpServer.setBindAddress(binding);
  74. this.smtpServer.setPort(this.port);
  75. if (this.hostName != null)
  76. this.smtpServer.setHostName(this.hostName);
  77. this.smtpServer.start();
  78. }
  79. /** @return a more processed form of the address, or null if none can be determined */
  80. public InetAddress getBinding()
  81. {
  82. if (this.bindAddress != null)
  83. {
  84. try
  85. {
  86. return InetAddress.getByName(this.bindAddress);
  87. }
  88. catch (UnknownHostException ignored) {}
  89. }
  90. return null;
  91. }
  92. /**
  93. */
  94. @PreDestroy
  95. public void stop()
  96. {
  97. log.info("Stopping SMTP service");
  98. this.smtpServer.stop();
  99. this.smtpServer = null;
  100. }
  101. /**
  102. * This can only be set on a stopped service.
  103. */
  104. public void setPort(int port)
  105. {
  106. if (this.smtpServer != null)
  107. throw new IllegalStateException("SMTPServer already running");
  108. this.port = port;
  109. }
  110. /**
  111. * When the SMTP server starts, it will listen on this port.
  112. */
  113. public int getPort()
  114. {
  115. return this.port;
  116. }
  117. /**
  118. * Sets the hostname the SMTP service reports. If null, one is guessed at.
  119. */
  120. public void setHostName(String hostname)
  121. {
  122. if (this.smtpServer != null)
  123. throw new IllegalStateException("SMTPServer already running");
  124. this.hostName = hostname;
  125. }
  126. /**
  127. * The hostname the SMTP service reports. Defaults to null (system takes a guess).
  128. */
  129. public String getHostName()
  130. {
  131. return this.hostName;
  132. }
  133. /**
  134. * The address which the server is bound to.
  135. */
  136. public String getBindAddress()
  137. {
  138. return this.bindAddress;
  139. }
  140. /**
  141. * The address which the server is bound to.
  142. */
  143. public void setBindAddress(String addy)
  144. {
  145. if (this.smtpServer != null)
  146. throw new IllegalStateException("SMTPServer already running");
  147. this.bindAddress = addy;
  148. }
  149. /**
  150. * The host to which all non-list mail that goes through the SMTP intake
  151. * is forwarded. Null means all non-list mail will be rejected.
  152. */
  153. public String getFallbackHost()
  154. {
  155. return this.fallbackHost;
  156. }
  157. /**
  158. * The host to which all non-list mail that goes through the SMTP intake
  159. * is forwarded. Null means all non-list mail will be rejected.
  160. *
  161. * This can be set while the server is running.
  162. */
  163. public void setFallbackHost(String value)
  164. {
  165. this.fallbackHost = value;
  166. }
  167. }