similar to: Error starting dovecot 1.0.0 /var/run/dovecot/auth-master failed: No such file or directory

Displaying 20 results from an estimated 120 matches similar to: "Error starting dovecot 1.0.0 /var/run/dovecot/auth-master failed: No such file or directory"

2013 Aug 29
1
Solved: startup failures "net_listen_unix(...) failed: Invalid argument"
I ran into this and had a bit of trouble tracking a diagnosis down, so here it is for the archives in case anyone else runs into this. A new installation of dovecot was failing to start, with these messages: $ ./sbin/dovecot Error: service(imap-urlauth): net_listen_unix(.../var/run/dovecot/token-login/imap-urlauth) failed: Invalid argument Error: service(auth):
2004 Sep 15
4
IAX to IAX connect question
Hi, I got my * working fine with FWD at office with 2 extensions, i receive calls and i can make calls thru FWD. I got also my * at home, and i connected it using auth=rsa. From my home, i can make calls using my office iax, but if i try to redirect incomming calls from FWD to my * at home, it rejects the call. I created the pub/key pairs for rsa and its working ok and i just pasted the
2008 Oct 02
2
Bug in dovecot 1.2 dict
Hi Timo, Hi *, in 1.2 the dict server (tested with sqlite backend) is somewhat broken. It bails out regularly with "Fatal: dict: Socket already exists: ..." (looks like a race condition as it doesn't fail always). We discovered that this new code in dict-server.c seems to be the problem: server->fd = net_listen_unix_unlink_stale(path, 64); if (server->fd == -1) { if
2006 Jan 12
4
has_one relationship problem
I was wondering if anyone could see the error in this littte application I have two models, User and Selection Selection is an extension of the User model so in the User model I have a has_one :selection and in Selection I have a belongs_to :user in my views, i cannot get @user.selection to work but @user works fine. http://www.rafb.net/paste/results/GSBt1e61.html Thanks, r.b
2006 Sep 15
1
Xen Installation problems
Hello Xen Users, I am facing a problem getting my installation of XEN boot up on a Red Hat Linux Guest OS. What''s happening is that the grub loader tries to install Xen but after a while it crashes and starts rebooting recursively. I have tried both the entries listed below. I am using the following entries in the grub.conf file: title Xen-bhatia 3.0 / XenLinux-bhatia 2.6.16
2008 Sep 08
3
Support for different Architectures
Dear All, I am new to FLAC. I have to port FLAC on sh4 architecture. Can somebody please let me know which architectures FLAC supports today? Also if somebody has an idea about the functionality of the code written in assembly, it would be of great help. Thanks and Regards Divyahaas Bhatia Senior Technical Leader Pace Micro Technology (India) Private Limited Bringing Technology
2007 Jun 07
1
Lost login process PID XXXXX
Dear List: We installed Dovecot v1.0.0 a couple days ago. After running the software for a couple days, the following happened: Jun 6 15:58:10 cello dovecot: POP3(sgtdohara): Disconnected: Logged out top=0/0, retr=0/0, del=0/0, size=0 Jun 6 15:58:10 cello dovecot: POP3(dorene): Disconnected: Logged out top=0/0, retr=1/4652, del=1/1, size=4635 Jun 6 15:58:10 cello dovecot: Lost login process
2018 Mar 17
3
length of 'dimnames' [2] not equal to array extent- For Correlation Plot
Hi Sarah, Thank you for your help. I tried using CR1<-as.matrix(CR1) but gives error Error in corrplot(CR1, method = "circle") : The matrix is not in [-1, 1]!. I am using a corrplot library. Please find the reproducible example: dput(head(CR1,10)) structure(c(26L, 46L, 39L, 38L, 47L, 59L, 56L, 61L, 43L, 60L, 78L, 63L, 2L, 58L, 8L, 1L, 1L, 9L, 11L, 2L, 1037500L, 46747L, 346300L,
2017 Sep 20
4
arguments imply differing number of rows
Hi Team, I using the syntax as: data.df<- data.frame( city= c(rep(c("Delhi", "Bangalore","Chandigarh"),each=5)), population= c(4000:6000,3500:4300,3000:3200) ) But i am getting the error as arguments imply differing number of rows: 15, 3003. Tried searching google but could not understand & find the solution. Thanks, Shivi [[alternative HTML version
2007 Feb 28
1
FASTTRAP_SUNWDTRACE_SIZE
Hi, What is the value of FASTTRAP_SUNWDTRACE_SIZE for PowerPC ? This macro is in file fasttrap_isa.h For Intel : /usr/src/uts/intel/sys #define FASTTRAP_SUNWDTRACE_SIZE 64 and for Sparc : /usr/src/uts/sparc/sys #define FASTTRAP_SUNWDTRACE_SIZE 128 Regards Deepak Bhatia This message posted from opensolaris.org
2014 Sep 11
1
chan_sip.c:23647 handle_request_invite: Failed to authenticate device
Hi, Why are we getting message in the asterisk [Sep 10 12:55:23] NOTICE[15043]: chan_sip.c:23647 handle_request_invite: Failed to authenticate device 601<sip:601 at 111.118.185.107>; tag=2f498fbd [Sep 10 12:55:24] NOTICE[15043]: chan_sip.c:23647 handle_request_invite: Failed to authenticate device 601<sip:601 at 111.118.185.107>;tag=209a8aa9 Regards Deepak Bhatia --------------
2018 Mar 17
0
length of 'dimnames' [2] not equal to array extent- For Correlation Plot
That does clarify for me that you're missing a step: I didn't clearly follow your description at first. corrplot expects a correlation matrix, not your original data. You need to use cor() first. That's pretty clear in the documentation. See for instance the examples: data(mtcars) M <- cor(mtcars) corrplot(M) Sarah On Sat, Mar 17, 2018 at 12:00 PM Shivi Bhatia <shivipmp82 at
2018 Oct 11
4
Struggling to get dovecot working with postfix auth
On Thursday, October 11, 2018 12:07 PM, Ralph Seichter <m16+dovecot at monksofcool.net> wrote: > On 11.10.18 11:30, Laura Smith wrote: > > > unix_listener /var/spool/postfix-authrelay/private/dovecot-auth { > > group = postfix > > mode = 0666 > > user = postfix > > } > > I suggest using "mode = 0660" instead. Makes no difference. >
2017 Sep 20
0
arguments imply differing number of rows
4000:6000 gives you 4000, 4001, ..., 6000. I suspect you want population= c(seq(4000, 6000, length=5), seq(3500, 4300, length=5), seq(3000, 3200, length=5)) Bob On 20 September 2017 at 17:07, Shivi Bhatia <shivipmp82 at gmail.com> wrote: > Hi Team, > > I using the syntax as: > > data.df<- data.frame( > city= c(rep(c("Delhi",
2006 Dec 28
0
Re: Xen-users Digest, Vol 22, Issue 145
> From: Nico Kadel-Garcia <nkadel@gmail.com> > Date: December 28, 2006 6:32:42 AM EST (CA) > To: Ian Pratt <m+Ian.Pratt@cl.cam.ac.uk> > Cc: "Bhatia, Nikhil" <bhatia@ornl.gov>, xen- > devel@lists.xensource.com, xen-users@lists.xensource.com, > ian.pratt@cl.cam.ac.uk > Subject: Re: [Xen-users] RE: [Xen-devel] Xen-3.0.3 migration problems > >
2007 Dec 30
2
auth-master permission error
On F7, I get to where I have Postfix and Dovecot installed and configured, postfix check runs fine, but when I try to start Dovecot I'm getting a permission error. Here is the log entry: Dec 29 21:54:06 grp-01-50-90 dovecot: Dovecot v1.0.7 starting up Dec 29 21:54:06 grp-01-50-90 dovecot: Generating Diffie-Hellman parameters for the first time. This may take a while.. Dec 29 21:54:06
2006 Apr 15
8
I need to send an email when something happens in my model...
but the model isn''t the right place to send mail from. That just seems like pretty bad coupling, generating emails from within the model. Or is that not a problem? On top of that, these emails need to contain links back to my site...which is a bit of a pain in ActionMailer, but I found directions on http://wiki.rubyonrails.com/rails/pages/HowtoUseUrlHelpersWithActionMailer however I
2018 Mar 17
0
length of 'dimnames' [2] not equal to array extent- For Correlation Plot
I'm assuming you are using the corrplot package. If so, your data object does need to be a matrix, not a data frame. Since it's already a data frame, your line of code: as.matrix(as.data.frame(CR1)) doesn't need the as.data.frame function, but more importantly, you didn't assign the result to anything: as.matrix() does not work in place. CR1 <- as.matrix(CR1) Now try. If
2018 Mar 17
2
length of 'dimnames' [2] not equal to array extent- For Correlation Plot
Created a new data set with 3 numeric variable to find correlation CR1<- mar%>% as_data_frame%>% select(AGE, OLD_CAR_PURCHASE_YRS, Total.Spend.With.AA) had to convert it to a data frame, code: as.matrix(as.data.frame(CR1)) Now i need to run a correlation plot for these 3 variables: corrplot(CR1, method = "circle") But i am getting this error: Error in
2004 Sep 24
0
fix and edit don't work the expected way
Hello, I am tinkering a bit with options(), namely, how to query and set them up to suit my needs. 1) The basic problem seems that the editor entry in options looks like this: > options() --------------------------------------------------------- $editor [1] "emacsclient" --------------------------------------------------------- After setting this option to /usr/bin/emacs by