Displaying 20 results from an estimated 600 matches similar to: "dovecot expunge"
2016 Nov 16
2
dovecot pre-install issue
Hi,
Thanks for the reply. I guess RHEL choose v2.2.10
<http://dovecot.org/list/dovecot-news/2013-December/000268.html> as it
is a good release with all the things working.
My source of confusion are from
1) http://dovecot.org/oldnews.html
I have gone through each release update news. Lots of work and bug fix
after v2.2.10
2016 Nov 16
3
dovecot pre-install issue
Hello all,
I am going for a dovecot director based setup (2 director+ 2 imap), more
imap servers will be added later depending on demand/load. Presently I
have 12000+ dovecot users with Maildir quota varying from 1 GB to 20GB.
(peak hour IOPS 50000+)
I am having 2 options in choosing dovecot version.
1) Old stable release. I.e RHEL, with prebuilt binary. This will be
having less trouble in
2016 Nov 16
0
dovecot pre-install issue
> On 16 Nov 2016, at 13:32, soumitri at iitk.ac.in wrote:
>
> Hi,
>
> Thanks for the reply. I guess RHEL choose v2.2.10 <http://dovecot.org/list/dovecot-news/2013-December/000268.html> as it is a good release with all the things working.
>
> My source of confusion are from
> 1) http://dovecot.org/oldnews.html <http://dovecot.org/oldnews.html>
> I have
2016 Nov 16
0
dovecot pre-install issue
> On 16 Nov 2016, at 11:06, soumitri at iitk.ac.in wrote:
>
> Hello all,
>
> I am going for a dovecot director based setup (2 director+ 2 imap), more imap servers will be added later depending on demand/load. Presently I have 12000+ dovecot users with Maildir quota varying from 1 GB to 20GB. (peak hour IOPS 50000+)
>
> I am having 2 options in choosing dovecot version.
2017 Jan 23
2
Ox Dovecot - dovecot.fi - dovecot-ee repo access
Hi
My question is a little off topic but hoping the community has some insight or advise.
Has anyone had success in contacting OX dovecot. We previous purchased Dovecot Pro and had access to the dovecot-ee (https://yum.dovecot.fi) repository. Credentials are no longer valid and all attempts (over the months) to reach Ox gain no response.
Wondering if others are having Pro access issues or have
2019 Dec 06
1
director option
Hi,
I think option-2 below seems better or am I missing something with
director concept.
1. As director and back-end in same server (broken) not recommended, I
need minimum 4 servers (2 for director, 2 back-end IMAP). Indexes and
mail must be in NFS shared storage(not optimal), as a user may land on
any of the back-end servers (assuming no static mapping of user from
pass DB).
2) Proxy_may
2011 Jul 28
0
[LLVMdev] number of static paths
Hi, I am a student at IIT Kanpur. I am working on Path Profiling, i just
came with a need to know about the number of static paths in a
program(actually in a function) before it's actually get run. As i saw in
PathProfiling.c file in llvm\runtime\libprofile they are just storing the
path information at run time and dynamically adding entries for the new
path. But i need to know the number of
2011 Jul 28
2
[LLVMdev] number of static paths
Hi, I am a student at IIT Kanpur. I am working on Path Profiling, i just
came with a need to know about the number of static paths in a
program(actually in a function) before it's actually get run. As i saw in
PathProfiling.c file in llvm\runtime\libprofile they are just storing the
path information at run time and dynamically adding entries for the new
path. But i need to know the number of
2004 Aug 18
2
[LLVMdev] Forward of moderated message
An embedded message was scrubbed...
From: kapil at iitk.ac.in
Subject: Help regarding LLVM IR
Date: Wed, 18 Aug 2004 22:31:41 +0530 (IST)
Size: 1833
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20040818/584b1397/attachment.mht>
2009 Apr 08
3
[LLVMdev] help using indvars pass
I am trying to use the indvars pass on a simple loop but it does not seem to
have any effect
The sample code i am using is
#include <stdio.h>
int test (int p);
int main(){
int a,b=3;
for(a=7;a*a<100;++a){
if(b >3)
test(3);
b++;
}
return 1;
}
int test(int p){
return p;
}
According to documentation
2009 Mar 26
2
[LLVMdev] GSoC 2009 application
Hello,
I am a final semester Dual Degree( B.Tech. M.Tech.) student from Indian
Institute of Technology, Kanpur. I was looking forward to participate in
this year's GSoC 2009.Starting Fall 2009 i shall be pursuing a Phd in
compilers. I am having a good background in compilers. My current masters
thesis is aimed at automatic parallel code from c programs target for the
Cell Processor using
2009 May 07
3
[LLVMdev] obtaining IR for CellBE code
Hello,
I was trying to extract out the IR for some CELLBE code. However i
was not able to compile with llvm-gcc.
Has someone who has tried this shed some light on the changes required
to use llvm-gcc instead of gcc or xlc.
A simple replacement of gcc with llvm-gcc -emit-llvm -S or marking $CC
as llvm-gcc in the makefile did not work for me. I am using the
standard makefile format supplied
2009 Apr 22
2
[LLVMdev] Adding structures in a loop pass
Hello,
I wanted to do some speculative execution on a loop for which I
require some data storage structure for book keeping. The exact
structure of this storage buffer can only be determined after loop
analysis. Is there a clean way to add this new structure to the
module. Since this structure is to be used for each loop iteration I
do not want to allocate it inside the loop.
A second
2009 May 08
3
[LLVMdev] problem with analysis required
Hello,
I was trying to get the loop info in a module pass to be able to
iterate over the loops int the module itself. Since my pass requires
to make module level changes including adding new types to module
hence a looppass cannot be used here.
I am getting the following error on running opt.
opt: /root/llvm-2.4/include/llvm/PassAnalysisSupport.h:199:
AnalysisType&
2009 Apr 03
0
[LLVMdev] GSoC 2009 application
On Apr 3, 2009, at 12:52 AM, Kshitiz Garg wrote:
> Here is my formal proposal i have submitted in gsoc. Comments invited.
>
This sounds like a very interesting proposal. Many compilers clone
loops and use dynamic checks to enforce invariants in one copy of the
loop. Is this intended to be similar to that style of approach?
-Chris
>
> About me:
>
> I am a final
2009 Apr 03
2
[LLVMdev] GSoC 2009 application
Here is my formal proposal i have submitted in gsoc. Comments invited.
About me:
I am a final semester Dual Degree( B.Tech. M.Tech.) student from Indian
Institute of Technology, Kanpur. I was looking forward to participate in
this year's GSoC 2009.Starting Fall 2009 i shall be pursuing a Phd in
compilers. I am having a good background in compilers. My current masters
thesis is aimed at
2003 Jan 21
2
How to convert jpg into lss format
I would like to to know about conversion from jpg file to lss format.
I used ppmtolss16. It is giving following errors.
for .jpg file:
ppmtolss16: stdin is not a raw PPM file at ppmtolss16 line 105, <STDIN>
line 1.
for .png files:
ppmtolss16: stdin is not a raw PPM file at ppmtolss16 line 105, <STDIN>
line 1.
from .ppm file: ( I converted .jpg file in to .ppm file using irfanview)
2020 Jan 13
0
saving sent mail in sent folder
Hello,
I am getting following error in info log of dovecot.
imap(someshb): Info: Connection closed (No commands sent) in=0 out=374
This error is for some users (not all) while sending email? via
Thunderbird. The email is sent but not saved int the Sent folder.
I tried to debug the issue and getting nothing except following
Debug: Effective uid=2121, gid=4619, home=/users02/home/ppd_doaa
2020 Feb 05
2
How to distinguish between user defined function in a program and library functions
<div dir="ltr"><br>
</div><div dir="ltr">Actually I want to run some analysis pass only on the user defined functions but not on the library functions. Is there any boolean method that can tell which is a library function and which is not? </div><div class="wps_quotion">On 5 Feb 2020 5:23 a.m., David Blaikie
2006 Mar 14
0
Banned file: body.scr, .exe in mail from you
BANNED FILENAME ALERT
Your message to: dasgupta@iitk.ac.in
was blocked by our Spam Firewall. The email you sent with the following subject has NOT BEEN DELIVERED:
Subject: Good day
An attachment in that mail was of a file type that the Spam Firewall is set to block.
-------------- next part --------------
Skipped content of type message/delivery-status-------------- next part --------------
A