similar to: Clients cannot empty trash

Displaying 20 results from an estimated 900 matches similar to: "Clients cannot empty trash"

2005 Nov 17
1
Dovecot dead after upgrade of MySQL
Hi, I upgraded my MySQL installation on my FC2 machine from the 3.23 version to the newest 5.0 version. Now dovecot won't start. It gives me the error : 'dovecot dead but subsys locked'. I am using dovecot-0.99-14. Here's the output of 'ldd /usr/libexec/dovecot/dovecot-auth: --- libcrypt.so.1 => /lib/libcrypt.so.1 (0x00a6d000) libcrypto.so.4 =>
2006 Jun 23
1
Problems with Sent folder
We are using dovecot-0.99.13-3.FC3; the users use IMAP. I have had several of these today where the user cannot write to their Sent folder on the server. The users do own everything in their home dir: [root at jidmail lcrdjav]# file Sent Sent: ISO-8859 HTML document text What is up with the HTML, I am not used to seeing this in any of the IMAP folders ? -- James H. Edwards Network Systems
2004 Nov 24
3
dovecot only answers to imap connections
Hey list, Finally got up and running, and now am trying to figure out why dovecot would only accept imap connections - I have people that are happy with pop, but they can only authenticate when they use imap. Is there a conf setting for this somewhere that I am missing? -- Mitch
2004 Nov 24
1
Cannot see contents of ~/mail folder
Hi, I just installed dovecot-0.99 on my Fedora Core 2 machine. When I start the secure IMAP daemon, I am able to see my Inbox, but not the other folders in the 'mail' folder in my home directory (sent-mail, saved-messages, etc.) These folders were created when I was using pine earlier on the machine. In my dovecot.conf file, I have set: default_mail_env =
2006 Aug 22
1
Can't Start dovecot from inetd
This one has me stumped. After upgrading from dovecot-1.0-beta8 to dovecot-1.0-rc6, I can't start dovecot from /etc/rc.d/init.d/dovecot. I can start dovecot directly from the command line (/usr/sbin/dovecot). I can still use /etc/rc.d/init.d/dovecot to query the status of dovecot and shutdown dovecot, but I can't use it to start dovecot. It just says "FAILED". diff scan of
2006 Jun 16
0
check pass; user unknown in logs
I am seeing lots of these in my logs and there are often a hundered or so imap/dovecat process running. I am running RC Core3. Can anyone shead some light on how to correct this ? Jun 16 08:38:24 jidmail dovecot(pam_unix)[27653]: check pass; user unknown Jun 16 08:38:24 jidmail dovecot(pam_unix)[27653]: authentication failure; logname= uid=0 euid=0 tty= ruser= rhost= Jun 16 08:38:24 jidmail
2005 Apr 14
5
dovecot rpms, .subscriptions file, mbox to maildir
Hi, I am running dovecot 0.99-14 on a Fedora Core 2 machine. I had a few questions: 1) I wanted to upgrade to the dovecot-1.0 release. However, I am not sure if that's really required. dovecot-0.99-14 has been running very well for me for quite some time. Is there a real advantage to switching to the latest release. The reason I'm asking this is because: i) I don't have too
2006 Jul 10
1
Corrupted index & index data file
We just moved to a new box for POP/IMAP services. I rsynced /home and /var/spool/mail to the new box from the old with the archive switch. It went smoothly but I am seeing more corrupted index & index data file errors in the log than I normally do. I thought I read that Dovecot would rebuild these files after the user accessed them the second time, if corrupt. Is this correct ? Is there a
2006 Aug 11
3
OT: NIS Authentication
Ran into a major issue with my setup overnight: We have a Win2K AD domain running SFU with a master and 1 slave NIS server. Our mail server is a FC1 box that runs dovecot and a MailScanner/sendmail config. The mail server is configured as a NIS client. The problem is that we lost power overnight and all of the boxes shutdown after the UPS's ran out of battery. After the power came back on,
2017 Feb 18
2
Vector trunc code generation difference between llvm-3.9 and 4.0
Thanks Sanjay. Interestingly for me, disable-llvm-optmzns did not make a difference in the way the shift was handled. Does the initial IR generated for you show this difference when the option is passed? Best regards Saurabh On 17 February 2017 at 19:03, Sanjay Patel <spatel at rotateright.com> wrote: > I think this is caused by a front-end change (cc'ing clang-dev) because >
2009 Jul 18
4
rails 2.3.2.not working working with cgi - How to revert
Hi All, As the problem faced by many other folks that rails 2.3.2 is not working with cgi, Now I want to revert to rails 2.2.2 on my shared host (bluehost ) can anybody guide me how to revert to 2.2.2. I tried the following: 1. I installed the older rails gem "gem install rails --version 2.2.2 --include-dependencies " 2. I tried to set the PATH env to my rails 2.2.2 version and also
2017 Mar 08
2
Vector trunc code generation difference between llvm-3.9 and 4.0
The regression for the reported case should be avoided after: https://reviews.llvm.org/rL297232 https://reviews.llvm.org/rL297242 https://reviews.llvm.org/rL297280 It would still be good to understand if the clang change was intentional or if that was a side effect that can be limited. On Sat, Feb 18, 2017 at 9:11 AM, Sanjay Patel <spatel at rotateright.com> wrote: > Yes, there is an
2017 Feb 17
2
Vector trunc code generation difference between llvm-3.9 and 4.0
Correction in the C snippet: typedef signed short v8i16_t __attribute__((ext_vector_type(8))); v8i16_t foo (v8i16_t a, int n) { return a >> n; } Best regards Saurabh On 17 February 2017 at 16:21, Saurabh Verma <saurabh.verma at movidius.com> wrote: > Hello, > > We are investigating a difference in code generation for vector splat > instructions between llvm-3.9
2017 Dec 19
3
DBG_VALUE insertion for spills breaks bundles
Hi, The insertion of DBG_VALUE instructions for spills does not seem to be handling insert locations inside bundles well. If the spill instruction is part of a bundle, the new DBG_VALUE is inserted after it, but does not have the bundling flags set. This essentially means that if we start with a set of bundled instructions: MI1 [BundledSucc=true, BundledPred=false] MI2 [BundledSucc=false,
2017 Dec 22
0
DBG_VALUE insertion for spills breaks bundles
Hi again, Here is a small patch to fix this issue. Please note that since the problem results in broken bundles, it can result in invalid schedules for any VLIW back-ends using bundling to group instructions. Best regards Saurabh Verma From: Verma, Saurabh Sent: Tuesday, December 19, 2017 4:14 PM To: llvm-dev at lists.llvm.org Subject: DBG_VALUE insertion for spills breaks bundles Hi, The
2015 Dec 28
2
Getting Started
Hello, My name is Saurabh Shah and I am a second year undergraduate student at DA-IICT, Gandhinagar, India. I am new towards the open source organizations and I find your organization an appropriate one to work on. I know C language very well and eager to learn whatever the suitable project demands. So please guide me on how to get started with any specific project or solving bugs etc. Thanking
2013 Mar 19
2
Errors while using blkiotune command
Hi all, I want to limit the I/O bandwidth inside the container, so I used virsh command blkiotune. But when I enter a command: virsh # blkiotune lxcguest --weight 250 I get following errors: error: Unable to change blkio parameters error: Requested operation is not valid: blkio cgroup isn't mounted I also have blkio cgroup mounted. What can be the problem? Thanks in advance. Regards,
2012 Jan 26
1
can't delete files and directories from windows NFS client
Hi, We couldn't delete any files and directories when connecting glusterfs to windows via NFS. We could make/change files and directories. Although it has written that glusterfs can be connected with windows NFS client in the page shown below. Any ideas to workaround/fix this ?
2016 Jan 15
3
Samba installation
I am trying to install Samba on ubuntu 15.10 but constantly getting the same error while configuring: Traceback (most recent call last): File "./buildtools/bin/waf", line 75, in <module> import Scripting File "/home/saurabh/Documents/Samba/samba-4.3.4/third_party/waf/wafadmin/Scripting.py", line 146 except Utils.WafError , e: ^
2013 Jul 19
2
pinVcpu not working
Hi all, I am working with libvirt and I am trying to set cpu affinity. Now I can always use      virsh vcpupin <domain_name> <vcpu> <pcpu> to pin vcpus to pcpus. I want to do it using Python API. Now, there is function pinVcpu which is supposed to do that. But this is not working. For example I gave      dom.pinVcpu(0,1) but still my vcpu affinity is for all the pcpus. The