similar to: Dovecot not listening when testing connection

Displaying 20 results from an estimated 1000 matches similar to: "Dovecot not listening when testing connection"

2017 Apr 20
2
Dovecot not listening when testing connection
Hi Webert -- Thanks for the quick reply and observation. When I try "telnet localhost 143" I get the same result. It does connect but then the connection is dropped. # telnet localhost 143 Trying ::1... Connected to localhost. Escape character is '^]'. Connection closed by foreign host. I never get the "* OK [CAPA....]" Thanks, On 04/20/2017 10:41 AM, Webert de
2017 Apr 20
2
Dovecot not listening when testing connection
Hi, here's my result for # doveconf -n|grep ssl ssl = yes ssl = required ssl_cert = /etc/exim/ssl/wildcard_cantella_com.crt.chained ssl_cipher_list = ALL:!LOW:!SSLv2:SSLv3:!EXP:!aNULL ssl_key = /etc/exim/ssl/wildcard_cantella_com.key verbose_ssl = yes On 04/20/2017 11:27 AM, B. Reino wrote: > On Thu, 20 Apr 2017, Alvaro Lacerda wrote: > >> These are my dovecot logs. It
2017 Apr 20
2
Dovecot not listening when testing connection
Hi B. Reino, These are my dovecot logs. It looks like this error pops up every time I run "telnet localhost 143" Apr 20 11:11:39 imap-login: Fatal: Couldn't parse private ssl_key: error:0906D06C:PEM routines:PEM_read_bio:no start line: Expecting: ANY PRIVATE KEY Apr 20 11:11:39 master: Error: service(imap-login): command startup failed, throttling for 60 secs On 04/20/2017
2017 Apr 20
0
Dovecot not listening when testing connection
You won't have that "* OK [CAPA....]" message by doing telnet on port 993, as this is a secure port and the connection is encrypted. Either you need to use something as openssl or gnutls to test it that way, or telnet to imap port 143 (not encrypted). On Thu, Apr 20, 2017 at 11:33 AM, Alvaro Lacerda <alacerda at cantella.com> wrote: > Hi, > > This is my environment:
2017 Apr 20
0
Dovecot not listening when testing connection
On Thu, 20 Apr 2017, Alvaro Lacerda wrote: > ssl = yes > ssl = required > ssl_cert = /etc/exim/ssl/wildcard_cantella_com.crt.chained > ssl_cipher_list = ALL:!LOW:!SSLv2:SSLv3:!EXP:!aNULL > ssl_key = /etc/exim/ssl/wildcard_cantella_com.key > verbose_ssl = yes I guess you didn't read https://wiki2.dovecot.org/SSL/DovecotConfiguration Change ssl_cert and ssl_key so it reads
2007 Aug 29
1
Migration woes from tpop mbox to dovecot maildir
I was hoping some one might be able to offer me some advice on a little problem I have. I am looking to A. move from mbox to maildir B. looking to move from tpop to dovecot to bring both pop and imap under the same program. anyways the problem I am having is this tpop3d mbox uses MD5 sum of the mailbox headers in hex which is option %m in the uidl section but the problem is when dovecot
2012 Oct 29
2
Retrieving data from aspx pages
Hi. I'm trying to write an application to retrieve financial data (specially bonds data) from FINRA. The web page is served dynamically from an asp.net application: http://cxa.gtm.idmanagedsolutions.com/finra/BondCenter/AdvancedScreener.aspx I'd like to know if it's possible to fill dynamically the web page form from R and, after filling it (with the issuer name), retrieve the web
2012 Oct 29
2
Retrieving data from aspx pages
Hi. I'm trying to write an application to retrieve financial data (specially bonds data) from FINRA. The web page is served dynamically from an asp.net application: http://cxa.gtm.idmanagedsolutions.com/finra/BondCenter/AdvancedScreener.aspx I'd like to know if it's possible to fill dynamically the web page form from R and, after filling it (with the issuer name), retrieve the web
2013 Apr 03
5
Can package plyr also calculate the mode?
I am trying to replicate the SAS proc univariate in R. I got most of the stats I needed for a by grouping in a data frame using: all1 <- ddply(all,"ACT_NAME", summarise, mean=mean(COUNTS), sd=sd(COUNTS), q25=quantile(COUNTS,.25),median=quantile(COUNTS,.50), q75=quantile(COUNTS,.75), q90=quantile(COUNTS,.90), q95=quantile(COUNTS,.95), q99=quantile(COUNTS,.99) )
2013 Apr 05
2
How to perform a grouped shapiro wilk test on dataframe
Hello, I was wandering if it is possible to perform on a dataframe called 'all' a shapiro wilk normality test for COUNTS by variable Group ACTIVITY? Could it be done using plyer? I saw an eg that applies to an array but not to a dataframe: lapply(split(dataset1$Height,dataset1$Group),shapiro.test) Any thoughts would be much appreciated. My dataframe is in shape: dat ACTIVIT
2003 Jun 26
1
[LLVMdev] Core LLVM status update
I recently realized that I haven't sent out a status update for the LLVM core components quite a while, so here is a new one: We've been really busy working on LLVM adding all kinds of new features, fixing lots of bugs, and are rapidly converging on our 1.0 release for this August. Here are some of the new features added recently: 1. Support for static constructors/destructors in
2013 May 23
3
Removing rows w/ smaller value from data frame
Hello, I have a column called max_date in my data frame and I only want to keep the bigger values for the same activity. How can I do that? data frame: activity max_dt A 2013-03-05 B 2013-03-28 A 2013-03-28 C 2013-03-28 B 2013-03-01 Thank you for your help -- View this message in context:
2005 Jan 23
4
VoIP software for MAC OS older than "X"?
Hello, is there anybody reading this who has experience with VoIP (IAX or not) on Macintosh computers? If so, have you ever seen or heard of (even an experimental, i.e., never marketed) VoIP application for any of the older Mac OSs, such as 9, 8, or 7? I can't quite believe that VoIP is such a recent idea that it was invented only *after* Mac OS X had become firmly established, but so far my
2012 Nov 30
5
subset data frame by variable with missing value
Hello, I have a variable in a data frame that contains NA values. I just want to subset so that I get the obs where that variable is missing. In SAS I would do: data missing; set test; if myvalue=' '; run; How can I perform this simple task in R? Thanks in advance for your help. -- View this message in context:
2012 Oct 10
3
How to replicate SAS by group processing in R
Hello, I am trying to re-code all my programs from SAS into R. In SAS I use the following code: proc sort data=upper; by tdate stock_symbol expire strike; run; data upper1; set upper; by tdate stock_symbol expire strike; if first.expire then output; rename strike=astrike; run; on the following data set: tdate stock_symbol expiration strike 9/11/2012 C 9/16/2012
2012 Sep 18
4
Conditional operations in R
Hello, I am a newbie to R coming from SAS background. I am trying to program the following: I have a monthly data frame with 2 variables: client pct_total A 15% B 10% C 10% D 9% E 8% F 6% G 4% I need to come up w/ a monthly list of clients that make 50% or just above it every month so I can pass them to the rest of the program.
2007 Dec 09
0
David Schwartz is out of the office.
I will be out of the office starting 12/07/2007 and will not return until 12/10/2007. I will reply to your message when I return Monday, December 10th. For MSRB / TRACE / OATS or Partnerships/Scorecard issues please call the Trade Reporting Control main number: 804-344-6216. For issues requiring escalation please contact Ralph Brugueras: 804-344-6515. Thank you. The information is not
2008 Feb 22
0
David Schwartz is out of the office.
I will be out of the office starting 02/22/2008 and will not return until 02/25/2008. I will reply to your message when I return Monday, February 25th. For MSRB / TRACE / OATS issues please call the Trade Reporting Control main number: 804-344-6216. For issues requiring escalation please contact Ralph Brugueras: 804-344-6515. Thank you. ATTENTION: Please be aware that since the
2012 Oct 19
4
Creating a new by variable in a dataframe
Hello, I have a dataframe w/ 3 variables of interest: transaction,date(tdate) & time(event_tim). How could I create a 4th variable (last_trans) that would flag the last transaction of the day for each day? In SAS I use: proc sort data=all6; by tdate event_tim; run; /*Create last transaction flag per day*/ data all6; set all6; by tdate event_tim; last_trans=last.tdate; Thanks
2005 Jan 24
1
Mediatrix voip gateway 1124 and 1204 in UK setting
Hello! We are located in the UK, and we are planning to replace our old pbx with an asterisk based pbx. For outgoing calls our present pbx is connected to three PSTN lines which all have the same number. Internally, the pbx caters for quite a few extensions, and each extension can make outbound phone calls. Only very rarely does our call volume exceed three simultaneous connections (inside to