Hi,
I have installed and configured express with tomcat server and the installation went fine. I am using sendmail for my SMTP need and can send mail from console to any user email account, but while trying to register in express am getting "SEND FAILED" message and cant able to move further,,,
By tracing the log, getting " [BlazeDS][INFO] Endpoint my-amf created with security: None
at URL: http://\{server.name}:{server.port}/{context.root}/data/messagebroker/amf
01-02-2011 08:07:04 [WARN] MessageServiceConfigProcessor.findDefaultChannel(78): No appropriate default channels were detected for the RemotingService. The channels must be explicitly set on any exported service.
Please help me to sort out this problem,,
thank
Same here. My smtp server works perfectly (see below) but I get a "Send failed" message and no logs in the catalina.log file.
$ telnet localhost 25
Trying 127.0.0.1...
Connected to localhost.localdomain.
Escape character is '^]'.
220 solaria.jajuk.info ESMTP Postfix (Debian/GNU)
EHLO localhost
250-solaria.xxx.info
250-PIPELINING
250-SIZE 10240000
250-VRFY
250-ETRN
250-STARTTLS
250-ENHANCEDSTATUSCODES
250-8BITMIME
250 DSN
MAIL FROM: trac@solaria.xxx.info
250 2.1.0 Ok
RCPT TO: bertrand@xxx.net
250 2.1.5 Ok
DATA
354 End data with <CR><LF>.<CR><LF>
test
.
250 2.0.0 Ok: queued as 449E484EC7
View and moderate all "bugs Discussion" comments posted by this user
Mark all as spam, and block user from posting to "Bugs"
I have de same problem. My smtp server is also OK but a I get a "Send failed" message too.
Hi
I did Port 25 test and it´s OK. Manual telnet test OK message arrives OK
Can I create a user by hand in database?
My application,property is
mail.host=localhost
mail.port=25
mail.authenticate=false
mail.username=
mail.password=
mail.from=noreply@mydomain.com
and
my applicationContextNotification.xml
<bean id="mailer" class="org.springframework.mail.javamail.JavaMailSenderImpl"
p:host="${mail.host}" p:username="${mail.username}" p:password="${mail.password}"
p:port="${mail.port}">
<property name="javaMailProperties">
<props>
<prop key="mail.smtp.localhost">localhost</prop>
<prop key="mail.smtp.auth">${mail.authenticate}</prop>
<!--<prop key="mail.smtp.starttls.enable">true</prop>-->
<!--<prop key="mail.smtp.socketFactory.class">javax.net.ssl.SSLSocketFactory</prop>-->
<!--<prop key="mail.smtp.socketFactory.port">${mail.port}</prop>-->
</props>
</property>
</bean>