Re: SSL/TLS with Let's Encrypt

2021-04-25 Thread Jean Helou
Hi james > "Installing a Certificate provided by a Certificate Authority" but Let's > Encrypt seems like a different beast than the other CAs mentioned on that > page, > Discalimer I have used lentsencrypt before but not for James yet. It gives you a classic keypai

SSL/TLS with Let's Encrypt

2021-04-25 Thread Scott
I've got my James mail working now using smtp, imap, and pop, on the standard unencrypted ports for those three services, and using the Thunderbird client. I've been looking at this:  https://james.apache.org/server/3/config-ssl-tls.html  and ready to try to tackle the SSL/TLS compon

AW: Remote delivery via SSL [unsigned]

2016-10-24 Thread Bernd Waibel
Nachricht- Von: James List [mailto:james-l...@olmeca.nl] Gesendet: Sonntag, 23. Oktober 2016 21:07 An: server-user@james.apache.org Betreff: Remote delivery via SSL Hi, I’m trying to setup James to only use SSL when connecting to other SMTP servers. To this end I have added the following

Remote delivery via SSL

2016-10-23 Thread James List
Hi, I’m trying to setup James to only use SSL when connecting to other SMTP servers. To this end I have added the following configuration to the mailetconfiguration of the RemoteDelivery mailet. true 465 true javax.net.ssl.SSLSocketFactory But when

AW: TLS/SSL on James 2.3.2 [unsigned]

2015-12-29 Thread Bernd Waibel
%28java.net.ServerSocket%29 The TLSServerSocketFactory of the Cornerstone library simply uses the Sun SSL Server sockets. So it seems to depend on the installed JRE and the default handling there. Maybe the older JRE (JRE 6) may not be able to use "newer" algorithms, but I did not check this. But I a

Re: TLS/SSL on James 2.3.2

2015-12-28 Thread Marc Chamberlin
wrote: Hi - I am running a James 2.3.2 server on OpenSuSE12.3 and am running into an issue with using TLS/SSL connections. In particular clients using Mozilla Thunderbird can no longer connect on those ports to pick up or send emails. (This use to work fine and I have not changed my James con

Re: TLS/SSL on James 2.3.2

2015-12-28 Thread David Legg
u are using and maybe disable support for export cipher suites and use a 2048-bit Diffie-Hellman group. Regards, David Legg On 28/12/15 04:22, Marc Chamberlin wrote: > Hi - I am running a James 2.3.2 server on OpenSuSE12.3 and am running > into an issue with using TLS/SSL connections. In parti

TLS/SSL on James 2.3.2

2015-12-27 Thread Marc Chamberlin
Hi - I am running a James 2.3.2 server on OpenSuSE12.3 and am running into an issue with using TLS/SSL connections. In particular clients using Mozilla Thunderbird can no longer connect on those ports to pick up or send emails. (This use to work fine and I have not changed my James

Unable to send messages using SSL/TLS on port 465

2013-12-23 Thread Saibabu Vallurupalli
for secured connections. Configuration done are: - Updated smtpserver-ssl.xml as below: smtpserver-ssl 0.0.0.0:465 200 file://conf/keystore x org.bouncycastle.jce.provider.BouncyCastleProvider 360 true 127.0.0.0/8 false 0

Re: Unable to send mail using SSL/TLS

2013-11-03 Thread Eric Charles
Use the gatewayPort attribute in RemoteDelivery mailet (in mailetcontainer.xml) http://james.apache.org/server/3/dev-provided-mailets.html#RemoteDelivery On 31/10/13 01:09, Saibabu Vallurupalli wrote: Hi All, I configured James 3 Beta 3 to use SSL/TLS followed the instructions (1) and (2

Unable to send mail using SSL/TLS

2013-10-30 Thread Saibabu Vallurupalli
Hi All, I configured James 3 Beta 3 to use SSL/TLS followed the instructions (1) and (2). After starting the server , I am able to send receive emails on port 465 using SMTP on SSL/TLS. If I try to send a mail to another server it is always trying to connect to the remote server on port 25. The

Re: SSL/TLS imported third party cert

2013-09-22 Thread Ioan Eugen Stan
Another way is to use a proxy. I think Apache or Nginx can fit the bill and you can also use it as a load-balancer. [1] http://nginx.org/en/docs/mail/ngx_mail_ssl_module.html - To unsubscribe, e-mail: server-user-unsubscr...@jame

SSL/TLS imported third party cert

2013-09-21 Thread Robert Munn
I was banging my head up against a problem importing a previously signed cert into the keystore for use with James. I finally found an answer and wanted to share a bit of wisdom I picked up from someone else. See this StackOverflow thread: http://stackoverflow.com/questions/906402/importing-an-exi

Re: SSL/TLS usage with James 3.0-beta4

2013-02-14 Thread seyoum tesfay
Hi Eric, Thank you for the info. I thought we can rename the config files as we pleased. But james actually doesn't read the smtpserver-ssl.conf. So, I have made entries for the SSL/TLS in the smtpserver.conf as follows 0.0.0.0:465 200 file://conf/mykey.key

Re: SSL/TLS usage with James 3.0-beta4

2013-02-13 Thread Eric Charles
p.**SMTPTransport.protocolConnect(** SMTPTransport.java:525) at javax.mail.Service.connect(**Service.java:291) at javax.mail.Service.connect(**Service.java:172) . I am still quite not sure how to enable ssl/tls with james server and create client programs for testing SM

Re: SSL/TLS usage with James 3.0-beta4

2013-02-13 Thread Saibabu Vallurupalli
>> java.net.ConnectException: Connection refused: connect >> at com.sun.mail.smtp.**SMTPTransport.openServer(** >> SMTPTransport.java:1706) >> at com.sun.mail.smtp.**SMTPTransport.protocolConnect(** >> SMTPTransport.java:525) >> at javax.mai

Re: SSL/TLS usage with James 3.0-beta4

2013-02-13 Thread Eric Charles
nested exception is: java.net.ConnectException: Connection refused: connect at com.sun.mail.smtp.SMTPTransport.openServer(SMTPTransport.java:1706) at com.sun.mail.smtp.SMTPTransport.protocolConnect(SMTPTransport.java:525) at javax.mail.Service.connect(Service.java:

Re: SSL/TLS usage with James 3.0-beta4

2013-02-13 Thread seyoum tesfay
PTransport.java:1706) at com.sun.mail.smtp.SMTPTransport.protocolConnect(SMTPTransport.java:525) at javax.mail.Service.connect(Service.java:291) at javax.mail.Service.connect(Service.java:172) . I am still quite not sure how to enable ssl/tls with james server

Re: SSL/TLS usage with James 3.0-beta4

2013-02-12 Thread Eric Charles
Hi, The logs should not change. Are you sure you point your mail client to the ssl socket? If you want more logs, raise the SMTP level to DEBUG in log4j.properties. Thx, Eric On 12/02/2013 14:01, seyoum tesfay wrote: Hi, I am using James 3.0-beta4 and I want to use SSL/TLS for sending and

SSL/TLS usage with James 3.0-beta4

2013-02-12 Thread seyoum tesfay
Hi, I am using James 3.0-beta4 and I want to use SSL/TLS for sending and receiving emails with SMTPS, POP3S and IMAPS. I have gone through the james manual on [1] and created the necessary keystore file. I have edited the configuration files to include the entry with appropriate values. After

Re: Howto disable weak SSL/TLS ciphers for SMTP

2012-12-08 Thread Phillip Odam
Perfect, thank you Eric A little more searching of the code base may have got me to see the config details in AbstractConfigurableAsyncServer Thanks for the quick response. - To unsubscribe, e-mail: server-user-unsubscr...@ja

Re: Howto disable weak SSL/TLS ciphers for SMTP

2012-12-07 Thread Eric Charles
disable weak ciphers when using either SSL or TLS for SMTP. From what I can gather the issue https://issues.apache.org/jira/browse/JAMES-385 was raised to address the ability to be able to select which ciphers are offered and hence be able to disable weak ciphers. However reading through JAMES-385

Howto disable weak SSL/TLS ciphers for SMTP

2012-12-07 Thread Phillip Odam
I want to be able to disable weak ciphers when using either SSL or TLS for SMTP. From what I can gather the issue https://issues.apache.org/jira/browse/JAMES-385 was raised to address the ability to be able to select which ciphers are offered and hence be able to disable weak ciphers

Re: NettyServer with SSL support

2012-11-19 Thread Jan Chaloupecky
debugging > your code) > > Thx, Eric > > > > On 19/11/2012 10:39, Jan Chaloupecky wrote: > >> Hi, >> I'm trying to create a POP3 Serverwith SSL but the ssl handshake fails. >> When I test the connection using openssl, I get a >> "SSL23_GE

Re: NettyServer with SSL support

2012-11-19 Thread Eric Charles
Hi, Are your settings (keystore,...) working with a complete James installation? (just to be sure you start from a good base before debugging your code) Thx, Eric On 19/11/2012 10:39, Jan Chaloupecky wrote: Hi, I'm trying to create a POP3 Serverwith SSL but the ssl handshake fails. W

NettyServer with SSL support

2012-11-19 Thread Jan Chaloupecky
Hi, I'm trying to create a POP3 Serverwith SSL but the ssl handshake fails. When I test the connection using openssl, I get a "SSL23_GET_SERVER_HELLO:sslv3 alert handshake failure" I construct the NettyServer using : > new NettyServer(protocol, Encryption.createTls(sslC

Re: James 3 ssl

2012-09-21 Thread Pavel Shareyko
Charles wrote: > >> Hi Pavel, >> >> Can you post any message/exception you see in the log to >> server-user@james.apache.org so everyone can help/benefit from this? >> >> Thx, Eric >> >> >> >> On 18/09/2012 08:51, Pavel Shareyko wrote: &

Re: James 3 ssl

2012-09-18 Thread Pavel Shareyko
his? > > Thx, Eric > > > > On 18/09/2012 08:51, Pavel Shareyko wrote: > >> Hi Eric, >> >> I can not turn on ssl for James 3. I did everything according to the >> instructions >> (http://james.apache.org/**server/3/config-ssl-tls.html<http://jam

Re: James3 ssl

2012-08-20 Thread Jean L. Guislain
ons(DefaultBeanDefinitionDocumentReader.java:184) > at > > org.springframework.beans.factory.xml.DefaultBeanDefinitionDocumentReader.doRegisterBeanDefinitions(DefaultBeanDefinitionDocumentReader.java:140) > at > > org.springframework.beans.factory.xml.Defau

Re: James3 ssl

2012-08-17 Thread Jean L. Guislain
ingframework.beans.factory.xml.DefaultBeanDefinitionDocumentReader.registerBeanDefinitions(DefaultBeanDefinitionDocumentReader.java:111) > at > > org.springframework.beans.factory.xml.XmlBeanDefinitionReader.registerBeanDefinitions(XmlBeanDefinitionReader.java:493) > at &g

Re: James3 ssl

2012-08-17 Thread Jean L. Guislain
islain jay...@fastmail.fm On Fri, Aug 17, 2012, at 04:52, Eric Charles wrote: > port 993 is listening and you try to talk to 995. > Thx, Eric > > On 08/16/2012 10:15 PM, Jean L. Guislain wrote: > > Hi Eric! > > > > To answer your questions: > > > > 1) A Z

Re: James3 ssl

2012-08-17 Thread Eric Charles
port 993 is listening and you try to talk to 995. Thx, Eric On 08/16/2012 10:15 PM, Jean L. Guislain wrote: Hi Eric! To answer your questions: 1) A Zenmap scan shows: 443/tcp open ssl/http Apache httpd 2.2.17 ((Unix) mod_ssl/2.2.17 OpenSSL/0.9.8r DAV/2 PHP/5.3.6) |_sslv2: server still

Re: James3 ssl

2012-08-16 Thread Jean L. Guislain
Hi Eric! To answer your questions: 1) A Zenmap scan shows: 443/tcp open ssl/http Apache httpd 2.2.17 ((Unix) mod_ssl/2.2.17 OpenSSL/0.9.8r DAV/2 PHP/5.3.6) |_sslv2: server still supports SSLv2 |_http-title: 403 Forbidden |_http-methods: No Allow or Public header in OPTIONS response (status

Re: James3 ssl

2012-08-16 Thread Eric Charles
fetchmail is a pop3 or imap4 client. Its configuration has nothing to do with the pop3 impa4 servers. Thx, Eric On 08/15/2012 07:59 PM, Jean L. Guislain wrote: In fact fetchmail uses pop3 or imap, it is not itself configurable for ssl Rgs, -- Jean L. Guislain jay...@fastmail.fm On Tue, Aug 14

Re: James3 ssl

2012-08-16 Thread Eric Charles
: Well, What I want is to be able to poll (with POP3 encrypted) an external server (in my case fastmail's server mail.messagingengine.com) and to poll James with Thunderbird (with an IMAP encrypted connection). So I gess, I need ssl enabled in pop3, imap AND fetchmail, right? I followd the steps

Re: James3 ssl

2012-08-15 Thread Jean L. Guislain
In fact fetchmail uses pop3 or imap, it is not itself configurable for ssl Rgs, -- Jean L. Guislain jay...@fastmail.fm On Tue, Aug 14, 2012, at 13:52, Eric Charles wrote: > I was not sure if you wanted ssl on pop3/smtp/imap4 or on fetchmail. > > Did you follow http://james.apache.org

Re: James3 ssl

2012-08-15 Thread Jean L. Guislain
Well, What I want is to be able to poll (with POP3 encrypted) an external server (in my case fastmail's server mail.messagingengine.com) and to poll James with Thunderbird (with an IMAP encrypted connection). So I gess, I need ssl enabled in pop3, imap AND fetchmail, right? I followd the

Re: James3 ssl

2012-08-14 Thread Eric Charles
I was not sure if you wanted ssl on pop3/smtp/imap4 or on fetchmail. Did you follow http://james.apache.org/server/3/config-ssl-tls.html? the sunjec_provider... jars are for james 2.3 and jdk < 1.5. Thx, Eric On 08/14/2012 07:06 PM, Jean L. Guislain wrote: Thank you Eric for your answer.

Re: James3 ssl

2012-08-14 Thread Jean L. Guislain
sh-4.1# So I am not yet at the stage of configuring fetchmail. But to try to get my ssl configuration working... I installed: bcmail-jdk15on-147.jar bcprov-jdk15on-147.jar in /opt/james3/conf/lib I copied: sunjce_provider.jar to /opt/james3/lib I copied: crypto-147 (jasypt-1.9.0-dist.zip) to /opt/

Re: James3 ssl

2012-08-14 Thread Eric Charles
and bring here any exception, log message you can. Thx, Eric On 08/14/2012 02:18 AM, Jean L. Guislain wrote: Hi! I have tried almost everything possible to have have ssl working with apache-james-3.0-beta4. It does not work. What should I do to have it working? (I need this to poll an external s

James3 ssl

2012-08-13 Thread Jean L. Guislain
Hi! I have tried almost everything possible to have have ssl working with apache-james-3.0-beta4. It does not work. What should I do to have it working? (I need this to poll an external server with fetchmail/pop3). Please help Rgs jl -- Jean L. Guislain jay...@fastmail.fm

James3 ssl

2012-08-13 Thread Jean L. Guislain
Hi! I have tried almost everything possible to have have ssl working with apache-james-3.0-beta4. It does not work. What should I do to have it working? (I need this to poll an external server with fetchmail/pop3). Please help Rgs jl -- -- Jean L. Guislain jay...@fastmail.fm

Re: using SSL cert

2012-07-02 Thread dgarvey
lhost:443 -state -debug -CAfile /tmp/ca.crt On 05/08/2012 09:15 AM, Young Gu wrote: How do you install your SSL certification? What client are you using? Can you post the log details? Please be free to contact with me for any question or suggestion. Thanks& Bes

Re: using SSL cert

2012-07-02 Thread dgarvey
lhost:443 -state -debug -CAfile /tmp/ca.crt On 05/08/2012 09:15 AM, Young Gu wrote: How do you install your SSL certification? What client are you using? Can you post the log details? Please be free to contact with me for any question or suggestion. Thanks& Bes

Re: using SSL cert

2012-07-02 Thread dgarvey
g Gu wrote: How do you install your SSL certification? What client are you using? Can you post the log details? Please be free to contact with me for any question or suggestion. Thanks& Best Regards . -- Young Gu Sof

Re: using SSL cert

2012-06-08 Thread dgarvey
g Gu wrote: How do you install your SSL certification? What client are you using? Can you post the log details? Please be free to contact with me for any question or suggestion. Thanks& Best Regards . -- Young Gu Software

Re: using SSL cert

2012-05-10 Thread roy . james
urk, turns out our firewall was intercepting with some other cert. Was not aware it was setup that way. Thanks guys! Roy - To unsubscribe, e-mail: server-user-unsubscr...@james.apache.org For additional commands, e-mail: serve

Re: using SSL cert

2012-05-10 Thread Eric Charles
Hi Roy, Did you read http://james.apache.org/server/3/config-ssl-tls.html ? (it's quite basic and may contain inaccuracies, that's a work in progress, especially behavior or may change on different JDK versions). Thx, Èric On 05/08/2012 06:15 PM, Young Gu wrote: How do you instal

Re: using SSL cert

2012-05-08 Thread Young Gu
How do you install your SSL certification? What client are you using? Can you post the log details? Please be free to contact with me for any question or suggestion. Thanks& Best Regards . -- Young Gu Software Engineer

using SSL cert

2012-05-08 Thread roy . james
Hello, So I can't seem to figure out how to get our SSL cert working on James so I was hoping someone could help me out? I generated an RSA 2048 private key and certificate request using openssl. I've read on googles that this is probably where I originally went wrong as some pe

Use both SSL and non-SSL

2012-03-28 Thread l0c4l h0st
Hello, How can we use both SSL and non-SSL with James? So let's say we want to host a mailserver that provides SMTP and IMAP. I want the server to listen on: - 25/587, for non-SSL SMTP - 465, for SSL SMTP and: - 143, for non-SSL IMAP - 993, for SSL IMAP As far as I can see, I can

Cannot send SSL/TLS mail from Outlook 2010 using James 2.3.2

2011-12-08 Thread Nikhil George
Hi, I enabled SSL/TLS in James and then tried to configure an account using Outlook and send a test email but failed. Both James and outlook are setup on my localbox. Hence in Outlook, the smtp server is configured to be "localhost", listening on 465 over TLS (I also tried SSL - no luc

Re: Installing an SSL certificate in James 3.0-M3

2011-09-02 Thread Gert van Spijker (2Canaries.com)
on the wiki page http://wiki.apache.org/james/UsingSSL. > > It's still applicable to create a keystore file for James 3. > > We still need to deploy the updated version of the documentation. In > the meantime, you can read the xml version on > https://svn.apache.org/repos/asf/james/server/t

Re: Installing an SSL certificate in James 3.0-M3

2011-08-05 Thread Eric Charles
n the meantime, you can read the xml version on https://svn.apache.org/repos/asf/james/server/trunk/src/site/xdoc/config-ssl-tls.xml Thx. On 05/08/11 23:24, Gert van Spijker (2Canaries.com) wrote: I have downloaded and installed a James 3.0-M3 Snapshot. I also managed to enable StartTLS in my

Installing an SSL certificate in James 3.0-M3

2011-08-05 Thread Gert van Spijker (2Canaries.com)
I have downloaded and installed a James 3.0-M3 Snapshot. I also managed to enable StartTLS in my SMTP, IMAP and POP3 servers, but when I connect with a user agent I am prompted with a prompt warning me that the server is untrusted. I created an SSL certificate through Start SSL (https

Re: TLS/SSL problems Solved!

2011-07-19 Thread david garvey
st. >>>> >>>> Also, http://wiki.apache.org/james/UsingSSL says you need to >>>> add/configure bouncycastle. I don't think it will help with the >>>> NoClassDefFoundError, but I would give it a try. >>> I will look into this further

Re: TLS/SSL problems Solved!

2011-07-19 Thread Marc Chamberlin
would give it a try. > > I will look into this further and see if I need to do anything to > handle > > the x32 bit version of Java, otherwise I am surprised if I need to do > > anything that I have not already done, since I had SSL working fine > > before I switched to x3

Re: TLS/SSL problems

2011-07-18 Thread david garvey
it version of Java, otherwise I am surprised if I need to do > anything that I have not already done, since I had SSL working fine > before I switched to x32 Java > > Marc... >> >> Thx. >> >> On 18/07/11 08:45, Marc Chamberlin wrote: >>> I

Re: TLS/SSL problems

2011-07-18 Thread Marc Chamberlin
think it will help with the > NoClassDefFoundError, but I would give it a try. I will look into this further and see if I need to do anything to handle the x32 bit version of Java, otherwise I am surprised if I need to do anything that I have not already done, since I had SSL working fine before I switched to x32

Re: TLS/SSL problems

2011-07-18 Thread Eric Charles
when using TLS/SSL connections - An error occurred during a connection to mail.mydomain.com:995. Cannot communicate securely with peer: no common encryption algorithm(s). (Error code: ssl_error_no_cypher_overlap) Looking in the James logs files I found this stack walkback in the connections log

TLS/SSL problems

2011-07-17 Thread Marc Chamberlin
following sort of error when using TLS/SSL connections - An error occurred during a connection to mail.mydomain.com:995. Cannot communicate securely with peer: no common encryption algorithm(s). (Error code: ssl_error_no_cypher_overlap) Looking in the James logs files I found this stack

Re: trying my hand @ james ssl/spam/mysql

2011-06-03 Thread Dwayne Nelson
-ssl-tls.html On 26/05/2011 22:26, Dwayne Nelson wrote: I did try using a later snapshot and the behavior was the same. When I changed the debugging level, I did not notice any errors associated with the new smtpserver-ssl section. Instead, I noted exception thrown relating to jackrabbit. Is

Re: trying my hand @ james ssl/spam/mysql

2011-05-31 Thread Eric Charles
Right now, it's not available out-of-the-box. There is some ongoing work to work with a distributed clustered storage. If you really know well the internals, there is some way to achieve this now for some (not all) mail protocols/usecases. Tks, - Eric On 29/05/2011 16:28, alezozov wrote: Hi,

Re: trying my hand @ james ssl/spam/mysql

2011-05-29 Thread Daniel Tan
seems to be stuck/hung trying to connect. >> >> >> 25 >> 200 >> >> file://conf/james.keystore >> password >> org.bouncycastle.jce.provider.BouncyCastleProvider >> >> >> >> regards, >> dan >> >> On 27-Ma

Re: trying my hand @ james ssl/spam/mysql

2011-05-29 Thread alezozov
Hi, all ! I have a question:       Can James  be scaled on several machines to make a mail cluster ?        If it is so? then how to achive this ? - To unsubscribe, e-mail: server-user-unsubscr...@james.apache.org For additional c

Re: trying my hand @ james ssl/spam/mysql

2011-05-29 Thread alezozov
2011/5/29 alezozov > Hi, all ! > I have a question: > Can James be scaled on several machines to make a mail cluster ? >If it is so? then how to achive this ? > > >

Re: trying my hand @ james ssl/spam/mysql

2011-05-29 Thread alezozov
Hi, all ! I have a question: Can James be scaled on several machines to make a mail cluster ?

Re: trying my hand @ james ssl/spam/mysql

2011-05-29 Thread Norman Maurer
27-May-2011, at 5:30 PM, Eric Charles wrote: > >> Hi, >> I tried both configs: >> - startTLS (STARTTLS in thunderbird) >> - socketTLS (SSL/TLS in thunderbird) >> >> With socketTLS, you can't read anything. >> >> With startTLS, the preambl

Re: trying my hand @ james ssl/spam/mysql

2011-05-29 Thread Daniel Tan
/james.keystore password org.bouncycastle.jce.provider.BouncyCastleProvider regards, dan On 27-May-2011, at 5:30 PM, Eric Charles wrote: > Hi, > I tried both configs: > - startTLS (STARTTLS in thunderbird) > - socketTLS (SSL/TLS in thunderbird) > > With socketTLS, you can't r

Re: trying my hand @ james ssl/spam/mysql

2011-05-27 Thread Eric Charles
in spring since last time we tried it). Tks, Eric [1] http://people.apache.org/~eric/james/20110517/site/config-ssl-tls.html On 26/05/2011 22:26, Dwayne Nelson wrote: I did try using a later snapshot and the behavior was the same. When I changed the debugging level, I did not notice any

Re: trying my hand @ james ssl/spam/mysql

2011-05-27 Thread Eric Charles
Hi, I tried both configs: - startTLS (STARTTLS in thunderbird) - socketTLS (SSL/TLS in thunderbird) With socketTLS, you can't read anything. With startTLS, the preamble is readable, but the rest is encrypted. * OK JAMES IMAP4rev1 Server Server 192.168.1.4 is ready. * CAPABILITY IMAP

Re: trying my hand @ james ssl/spam/mysql

2011-05-26 Thread Dwayne Nelson
I did try using a later snapshot and the behavior was the same. When I changed the debugging level, I did not notice any errors associated with the new smtpserver-ssl section. Instead, I noted exception thrown relating to jackrabbit. Is there a how-to/quick-start guide covering multi-port

RE: trying my hand @ james ssl/spam/mysql

2011-05-26 Thread Pao, Vanessa
AM To: James Users List Subject: Re: trying my hand @ james ssl/spam/mysql i have startTLS enabled and my SSL cert is working but when i used wireshark to snoop my traffic, i can see my email sent out in plain text. not encrypted. any idea? On 24-May-2011, at 7:13 AM, Dwayne Nelson wrote

Re: trying my hand @ james ssl/spam/mysql

2011-05-25 Thread Daniel Tan
i have startTLS enabled and my SSL cert is working but when i used wireshark to snoop my traffic, i can see my email sent out in plain text. not encrypted. any idea? On 24-May-2011, at 7:13 AM, Dwayne Nelson wrote: > Right - it doesn't exist. I was following the link from this page: &

Re: trying my hand @ james ssl/spam/mysql

2011-05-25 Thread Eric Charles
ct current code. For SSL [2] and Antispam [3], this is still draft (go to the linked examples to have some ideas :) Tks, - Eric [1] http://people.apache.org/~eric/james/20110517/site/index.html [2] http://people.apache.org/~eric/james/20110517/site/config-ssl-tls.html [3] http://people.apache.

Re: trying my hand @ james ssl/spam/mysql

2011-05-25 Thread Dwayne Nelson
rrent code. For SSL [2] and Antispam [3], this is still draft (go to the linked examples to have some ideas :) Tks, - Eric [1] http://people.apache.org/~eric/james/20110517/site/index.html [2] http://people.apache.org/~eric/james/20110517/site/config-ssl-tls.html [3] http://people.apache.org/~eric

Re: trying my hand @ james ssl/spam/mysql

2011-05-23 Thread Dwayne Nelson
M, Eric Charles wrote: Hi Daniel, You can read a snapshot of the server website on [1] that is in-line with the upcoming beta release. The quick start has been updated to reflect current code. For SSL [2] and Antispam [3], this is still draft (go to the linked examples to have some ideas :) Tks, -

Re: trying my hand @ james ssl/spam/mysql

2011-05-23 Thread Eric Charles
Yes, only one of the startTLS/socketTLS, not both (mutual exclusive) - See also [1] for the difference between TLS and SSL. If your security requirement is strong, helloName is good to change. Don't hesitate to inform us with additional security you would implement so we can docume

Re: trying my hand @ james ssl/spam/mysql

2011-05-23 Thread Daniel Tan
used will still be 25 right unless i change it to specific port 465. regards, daniel On 23-May-2011, at 6:02 PM, Eric Charles wrote: > I will update the documentation to tell the bind port should be changed to > 993 (standard imap4 ssl) > > Whatever the defined port, on encrypted s

Re: trying my hand @ james ssl/spam/mysql

2011-05-23 Thread Eric Charles
1 07:57 AM, Eric Charles wrote: Hi Daniel, You can read a snapshot of the server website on [1] that is in-line with the upcoming beta release. The quick start has been updated to reflect current code. For SSL [2] and Antispam [3], this is still draft (go to the linked examples to have some ide

Re: trying my hand @ james ssl/spam/mysql

2011-05-23 Thread Eric Charles
I will update the documentation to tell the bind port should be changed to 993 (standard imap4 ssl) Whatever the defined port, on encrypted socket, james will still announce unencrypted "* OK JAMES IMAP4rev1 Server Server laptop-techteam.b2boost.local. is ready.". After, the by

Re: trying my hand @ james ssl/spam/mysql

2011-05-22 Thread Dwayne Nelson
flect current code. For SSL [2] and Antispam [3], this is still draft (go to the linked examples to have some ideas :) Tks, - Eric [1] http://people.apache.org/~eric/james/20110517/site/index.html [2] http://people.apache.org/~eric/james/20110517/site/config-ssl-tls.html [3] http://people.apach

Re: trying my hand @ james ssl/spam/mysql

2011-05-21 Thread Daniel Tan
i am a bit confused. i have created my self signed ssl cert. but when i telnet i can see see OK JAMES Server i tried a few things, enable startTLS with disabled socketTLS, disabled startTLS with enabled socketTLS. i am having prob using my macbook mail to connect to the mailboxes. if i use

Re: trying my hand @ james ssl/spam/mysql

2011-05-17 Thread Eric Charles
Hi Daniel, You can read a snapshot of the server website on [1] that is in-line with the upcoming beta release. The quick start has been updated to reflect current code. For SSL [2] and Antispam [3], this is still draft (go to the linked examples to have some ideas :) Tks, - Eric [1] http

Re: trying my hand @ james ssl/spam/mysql

2011-05-16 Thread Daniel Tan
Hi eric, where will the links be updated for ssl and spam? regards, daniel On 11-May-2011, at 10:54 PM, Eric Charles wrote: > Hi, > > See also http://james.apache.org/server/3/quick-start.html. > You must edit database.properties and change the values according to your > da

Re: trying my hand @ james ssl/spam/mysql

2011-05-11 Thread Eric Charles
. You must edit database.properties and change the values according to your database (+ place the mysql jdbc driver in conf/lib folder). For SSL and spam, the documentation will be available online begin next week (we are in the process of releasing a new 3.0-M3 milestone). Tks, - Eric On 11/05

Re: trying my hand @ james ssl/spam/mysql

2011-05-11 Thread Daniel Tan
See also http://james.apache.org/server/3/quick-start.html. > You must edit database.properties and change the values according to your > database (+ place the mysql jdbc driver in conf/lib folder). > > For SSL and spam, the documentation will be available online begin next week >

Re: trying my hand @ james ssl/spam/mysql

2011-05-11 Thread Eric Charles
Hi, See also http://james.apache.org/server/3/quick-start.html. You must edit database.properties and change the values according to your database (+ place the mysql jdbc driver in conf/lib folder). For SSL and spam, the documentation will be available online begin next week (we are in the

trying my hand @ james ssl/spam/mysql

2011-05-11 Thread Daniel Tan
hi, i am trying my hand in implementing james with ssl/spam/mysql. at this link http://wiki.apache.org/james/V3ConfigTutorial, i have followed the instructions but when i telnet to localhost 4555, i tried to adduser test test, the logs throws connection refused. ** END NESTED EXCEPTION

Re: Connection Parameters and database.properties using SSL?

2011-04-05 Thread Norman Maurer
try: database.url=jdbc:postgresql://192.168.0.60/james&ssl=true Hope it works, Norman Am 05.04.2011 um 18:40 schrieb Darko Hojnik: > Hello Norman, > > Thanks for your respond. But stil no luck :( > With database.url=jdbc:postgresql://192.168.0.60/james&ssl=true it will

Re: Connection Parameters and database.properties using SSL?

2011-04-05 Thread Darko Hojnik
Hello Norman, Thanks for your respond. But stil no luck :( With database.url=jdbc:postgresql://192.168.0.60/james&ssl=true it will try to connect to the database james&ssl=true and SSL is still off best regards Darko Hojnik Am 05.04.2011, 18:14 Uhr, schrieb Norman Maurer : Hi t

Re: Connection Parameters and database.properties using SSL?

2011-04-05 Thread Norman Maurer
Hi there, I think from the docs you need to add the ssl=true the url as parameter. So prolly something like this: database.url=jdbc:postgresql://192.168.0.60/james&ssl=true Bye, Norman Am 05.04.2011 um 18:09 schrieb Darko Hojnik: > Hi there, > > I have changed database.pr

Connection Parameters and database.properties using SSL?

2011-04-05 Thread Darko Hojnik
Hi there, I have changed database.properties from Apache James from derby to PostgreSQL. Without SSL I think it works. The server has filled some tables inside the database. Under http://jdbc.postgresql.org/documentation/81/ssl-client.html I've read the documentation for using SSL. So

Re: Getting ssl_error_no_cypher_overlap on 465 after installing SSL certificate

2011-02-01 Thread Norman Maurer
: > >> Before installing an SSL certificate I could successfully send test emails >> using Thunderbird (even though Thunderbird would warn me about there being >> no certificate). >> >> After installing an SSL certificate (from Go Daddy), I started getting >>

Re: Getting ssl_error_no_cypher_overlap on 465 after installing SSL certificate

2011-02-01 Thread agks mehx
the key from which I generated the certificate signing request, and then added the certificates to that file. That made it work like a charm. On Tue, Feb 1, 2011 at 1:01 PM, agks mehx wrote: > Before installing an SSL certificate I could successfully send test emails > using Thunderbird

Getting ssl_error_no_cypher_overlap on 465 after installing SSL certificate

2011-02-01 Thread agks mehx
Before installing an SSL certificate I could successfully send test emails using Thunderbird (even though Thunderbird would warn me about there being no certificate). After installing an SSL certificate (from Go Daddy), I started getting ssl_error_no_cypher_overlap. Any suggestions? I am

Re: James 3 and SSL/TLS

2011-01-24 Thread Norman Maurer
> >> Norman >> >> >> >> >> >> >> >> 2011/1/22 Kevin Kovach : >> >> >> >> > Thanks for the reply.  It appears to be configured now.  The >> server >> >> >> >> starts >> >> >> &

Re: James 3 and SSL/TLS

2011-01-23 Thread Kevin Kovach
>> > out when trying to pop mail with TLS enabled. I don't know if > this > >> >> could > >> >> >> be > >> >> >> > because I have something else configured incorrectly? > >> >> >> > > >>

Re: James 3 and SSL/TLS

2011-01-23 Thread Norman Maurer
nfigured incorrectly? >> >> >> > >> >> >> > I turned on DEBUG and am seeing the following in my >> james-server.log >> >> and >> >> >> > pop3server.log ... >> >> >> > >> >> >> >

Re: James 3 and SSL/TLS

2011-01-23 Thread Kevin Kovach
nd handler for > >> >> command: > >> >> > CAPA > >> >> > DEBUG 02:33:11,937 | james.pop3server | Lookup command handler for > >> >> command: > >> >> > USER > >> >> > DEBUG 02:33:11,939 | james.po

  1   2   >