similar to: fsck looping duplicate mdbox GUIDs

Displaying 20 results from an estimated 1000 matches similar to: "fsck looping duplicate mdbox GUIDs"

2015 Nov 05
0
replication delays
I have two dovecot instances that replicate to each other. Mail arrives into "post" and it is generally accessed via IMAP on "france". Changes (moves/expunge etc) on "france" seem to replicate back to "post" more or less immediately. But this seems to happen only for this user. (Some) other users' (e.g. me) mail generally replicates more or less
2001 Jan 22
3
Possible funny with /sbin/fsck
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Content-Type: text/plain; charset=us-ascii Howdy - we have a bunch of dual processor Compaqs with 180GB RAID partitions for email, running with ext2 for the last year or so. I thought I'd try out ext3 (on our development machine :-) to see whether it was a practical proposition for this kind of thing yet. Appears to be working so far, with a
2012 Nov 28
0
Fixed Effects using AER's Tobit function - system is singular
I have an unbalanced panel of daily, county data that is naturally bounded at zero so my intention is to use a tobit. I'm using tobit from the AER package. There is cyclicality in the data for each pattern that I would like to control for before I add my variables of interest. I run the regression: derp <- tobit(x ~ factor(Month)*factor(County), data = data0, left = 0, right = Inf) If I
2012 Apr 02
1
Bootstrapped Tobit regression - get standard error 0...
I am trying to work out a bootstrapped Tobit regression model. I get the coefficients all right, but they all have standard error zero. And I am unable to figure out why. I know the coefficients are correct because that's what I get when do a Tobit (without bootstrapping). Here's my code: # Bootstrap 95% CI for Tobit regression coefficients? library(boot) library(AER) # for the Affairs
2012 Mar 06
2
Fscking warnings
Google tells me that these "should go away" but they don't. Seems to happen continuously while a user is viewing email. Mar 7 09:29:52 server dovecot: imap(john): Warning: fscking index file /home/john/Mail/INBOX/.imap/Archive/dovecot.index Mar 7 09:29:52 server dovecot: imap(john): Warning: fscking index file /home/john/Mail/INBOX/.imap/Davies/dovecot.index Mar 7 09:29:52
2009 Apr 07
0
HELP: Use predict for Tobit Model. How to predict values in Tobit Model???
Hello, I am working on a Tobit Model for a consumer good, left censored with zero. Relation: Sales of product depend on price, promotion (dummy), Season(dummy) and store (dummy) Used standard Tobitmodel with package(AER) vor a 48 week period: tobitmodel<-tobit(SALE~Price+Promotion+Season+Store,data= datatobit) Now I want to predict the values for week 49-52. Used predict device:
2008 Aug 16
1
Pseudo R2 for Tobit Regression
Dear All: I need some guidance in calculating a goodness-of-fit statistic for a Tobit Regression model. To develop the Tobit regression, I used the tobit() method from the AER package, which is basically a simpler interface to the survreg() method. I've read about pseudo R2 and C-index and was wondering if there is a package that calculates this for me. Also, is there a reason to select
2017 Jan 30
2
dovecot mdbox never fix broken indexes
2017-01-30 11:43 GMT+03:00 Aki Tuomi <aki.tuomi at dovecot.fi>: > Hi! > > Please send these to dovecot at dovecot.org instead of us directly. Thank you. Ok, added to cc. > Also, did you try force-resync? Not help. # doveadm force-resync -u altek at altek.info \* doveadm(altek at altek.info): Warning: mdbox /srv/vmail/altek.info/altek/storage: Inconsistency in map index
2014 Jan 07
1
samba_dnsupdate: could not talk to any default name server
Every 10 minutes, my samba 4.0.9 (active directory domain controller) is logging messages like these :- 2014-01-07T14:26:09.896260+11:00 gumbo samba[5198]: /usr/sbin/samba_dnsupdate: ; Communication with 127.0.1.1#53 failed: operation canceled 2014-01-07T14:26:09.896281+11:00 gumbo samba[5198]: /usr/sbin/samba_dnsupdate: could not talk to any default name server 2014-01-07T14:26:09.917096+11:00
2018 Jan 08
0
mail delivery interrupts force-resync
Hi all, We have recently had some power failures have led to corrupt mdbox instances. Dovecot?s fsck appears to get caught in a loop when the recipient has a large amount of mail. In the example log output below, each ?rebuilding indexes? seems to be interrupted by a new IMAP connection. Later, when our folks realized the issue and blocked access to the mailbox, the index rebuild finished in
2004 Aug 25
0
Censored (Tobit) Regression method
I need to give a quick description of Tobit Regression (TR), including how it differs from ordinary least squares (OLS). I am an ecologist who knows just enough about remote sensing and statistics to be dangerous in both. Now I have found myself doing a remote sensing project where I have used TR: survreg(Surv()). As far as I can tell, no form of Censored Regression has been used in analyzing
2006 Jul 11
0
Tobit variance covariance matrix
Hi, How can I recover the variance-covariance matrix of the tobit model from the variance-covariance of the survreg? I first used to the survreg function and then I selected the variance matrix. However, the last parameter is log(scale) and not the variance of the standard deviation of the censored distribution as in the Tobit model. tobit<- survreg(Surv(y, y > 0, type ='left')~
2012 Apr 30
1
Log messages
Hello. I have been on leave for several weeks and have managed to lose all emails received since December due to a server crash. I asked about log synch error back in March and have (repeatedly) deleted all .imap files but the errors continue. # 2.1.1: /usr/etc/dovecot/dovecot.conf # OS: Linux 2.6.33.5-desktop-2mnb i686 Mandriva Linux 2010.2 mail_access_groups = mail mail_location =
2013 Apr 21
1
Using copulas with user-defined marginal functions
I am trying to make a loglikelihood function using copulas. I am trying to use mvdc to find the density function. When I run this I got the error that the pdf and cdf of my function tobit doesn't exist. Can somebody guide me where my mistake is? dtobit <- function(beta,sigma, x, y) {ifelse(y>0, dnorm(y,x%*%beta, sigma),(1-pnorm((x%*%beta)/sigma)))} ptobit <- function(beta,sigma, x,
2006 Jan 19
2
Tobit estimation?
Folks, Based on http://www.biostat.wustl.edu/archives/html/s-news/1999-06/msg00125.html I thought I should experiment with using survreg() to estimate tobit models. I start by simulating a data frame with 100 observations from a tobit model > x1 <- runif(100) > x2 <- runif(100)*3 > ystar <- 2 + 3*x1 - 4*x2 + rnorm(100)*2 > y <- ystar > censored <- ystar <= 0
2011 Mar 10
2
tobit regression model
Hi, I'm trying to fit a tobit regression model to some data. When fitting the exact same data in Stata, I have no problems at all, however R won't converge. Its not a maxiters thing, since I've tried increasing this already. I need to be able to fit the model in R since there are users of the code that don't have a Stata license. The code is: require(AER) left = 3.218476 x =
2013 Jul 14
2
constant Log synchronization error's
Hi, I am seeing constant "Log synchronization error"s in my logs. See later for an example. This is dovecot 2.2.4, pigeonhole 0.4.1, and postfix 2.10.1 (with mailbox_command = /usr/libexec/dovecot/deliver) on a Fedora 19 system. I am using packages from Atrpms so there are some patches applied - ask for details. The mailboxes have resently been moved from a i386 system. I have
2013 Sep 12
0
predict from tobit regression
Dear R experts, I am currently working on a rather simple tobit regression, where the dependet variable is left-censored (>0). I would like to apply a Tobit regression and then use the parameters of this regression to make a prediction with new data. The intention behind this is to do an extrapolation. by using the VGAM or AER package, I already succeeded in getting fitted values. However
2013 Nov 26
0
VFS shadow_copy2 with samba 4.0.9
I am trying to use shadow copy with Samba 4.0.9 on Debian 7 (wheezy), Linux kernel 3.2. Windows 7 clients on the LAN can not see Previous Verions of files stored on the server, although I believe I have set up directories with snapshots. Here are some highlights from smb.conf :- [global] server role = active directory domain controller domain logons = yes ... [Pluto] path
2005 Apr 20
2
heckit / tobit estimation
Dear All, we (Ott Toomet and I) would like to add functions for maximum likelihood (ML) estimations of generalized tobit models of type 2 and type 5 (*see below) in my R package for microeconomic analysis "micEcon". So far we have called these functions "tobit2( )" and "tobit5( )". Are these classifications well known? How are these functions called in other