|
From: enazareno <do-...@jb...> - 2006-07-07 01:36:43
|
Hi,
Thanks for the reply. This is my jboss-service.xml :
| <mbean code="org.jboss.mail.pop3.POP3Protocol" name="jboss.mail:type=MailServices,name=POP3Protocol">
| <depends>jboss.security:service=JaasSecurityDomain,domain=Mail+SSL</depends>
| <attribute name="SecurityDomain">java:/jaas/Mail+SSL</attribute>
| <depends>jboss.mail:type=MailServices,name=MailListener</depends>
| <depends optional-attribute-name="MailboxManager" proxy-type="attribute">jboss.mail:type=MailServices,name=MailboxManager</depends>
| <depends optional-attribute-name="UserRepository" proxy-type="attribute">jboss.mail:type=MailServices,name=UserRepository,uimanageable=true</depends>
| <!--depends optional-attribute-name="APOPUserRepository" proxy-type="attribute">jboss.mail:type=MailServices,name=UserRepository,uimanageable=true,apop=true</depends-->
| <!--register the protocols you want to use -->
| <attribute name="Servername">mail.ramesesinc.com</attribute>
| <attribute name="TlsEnabled">true</attribute>
| <attribute name="RequireTls">false</attribute>
| <!-- enable for forcing clients to use their own certificats -->
| <attribute name="RequireClientCert">false</attribute>
| </mbean>
|
| <!-- defines a POP server. -->
| <mbean code="org.jboss.mail.Server" name="jboss.mail:type=MailServices,name=POP3">
| <depends>jboss.mail:type=MailServices,name=POP3Protocol</depends>
| <!-- options are presently POP or SMTP, we want POP -->
| <attribute name="Protocol">jboss.mail:type=MailServices,name=POP3Protocol</attribute>
| <!-- port to listen on -->
| <attribute name="Port">110</attribute>
| <!-- which addresses to listen on 0.0.0.0 = all or localhost means only the localhost -->
| <attribute name="Address">0.0.0.0</attribute>
| <!-- timeout between commands (not presently supported) -->
| <attribute name="Timeout">30000</attribute>
| <!-- timeout for the connection regardless of whether it is finished. Thus it will kill the socket and thread mid-stream/operation. This should be big
| enough to allow whatever the messages you're sending while defending against folks who might try to DoS your server
| by keeping a large number of connections alive -->
| <attribute name="Life">120000</attribute>
| <attribute name="PoolSize">5</attribute>
| <attribute name="UsesSSL">false</attribute>
| </mbean>
|
And when i telnet :
anonymous wrote :
| telnet mail.ramesesinc.com 110
| Trying 10.0.0.11...
| Connected to mail.ramesesinc.com.
| Escape character is '^]'.
| +OK POP3 Server (JBMAIL POP3 Server version 1.0M4) ready <61....@ma...>
| USER elmo
| +OK
| PASS tinoy2005
| +OK
| LIST
| +OK 0 messages (0 octets)
| .
|
|
When sending mail, I used outlook express and composed mail to two addresses:
el...@ma... and the other is my yahoo mail. The yahoo mail receives it but my local mail does not. Would appreciate any help.
Regards,
Elmo
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3956043#3956043
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3956043
|