Displaying 20 results from an estimated 5000 matches similar to: "Dovecot-2.1.14 - pop3 processes always hangs forever - a follow-up"
2013 Feb 15
1
Dovecot-2.1.14 - pop3 processes always hangs forever - another follow-up
Hello,
With the same basic configs as in my previous messages, I tried with the maildir format instead of the mbox format.
That is, in both cases ("virtual" uids/gids vs a single "real" uid/gid), doveconf -n shows:
mail_location = maildir:~/maildir
instead of:
mail_location = mbox:~/mboxes:INBOX=~/mboxes/inbox
Here too, with "virtual" uids/gids, connections thru
2013 Feb 08
0
Dovecot-2.1.14 - pop3 processes always hangs forever
Hello,
I'm currently experimenting with the 2.1.x series and am facing a behavior I can't explain; I must be doing something wrong and probably miss the obvious... ;-)
This is a very basic build on Mac OS X 10.8.2:
./configure --prefix=/_COD/dovecot-2.1.14 --sysconfdir=/_ETC --localstatedir=/_VAR --with-sqlite --with-ldap=yes
(Yes, I know, a strange layout, yet very convenient for
2013 Jul 05
1
Ambiguous behavior with prefetch database?
Hello,
Let's say dovecot.conf contains:
mail_uid = dovemailer
mail_gid = dovemailer
mail_home = /some/path/%n
mail_location = mbox:~/mboxes:INBOX=~/mboxes/inbox
and that the password database query is of the form:
password_query = \
SELECT \
passwd AS password, \
nickname AS user, \
mail_home AS userdb_home, \
mail_location AS userdb_mail, \
WHERE \
...
The database
2013 Apr 16
1
Running LMTP as a user other than the root user
Hello,
With this one in Postfix' main.cf:
virtual_transport = lmtp:unix:/_ROOT/var/run/dovecot/lmtp
and Dovecot settings reproduced at the end of this message, there is no problem for having mail delivered into a user's INBOX.
But as soon as I try the security improvement suggested in the docs:
service lmtp {
user = dovemailer
}
this is what I get in the logs:
2013 Jul 16
1
2.2.4 - Some questions about and needing help with quota-status
Help! I'm stuck. :-(
The config of my experimental setup appears at the end of this message; I'm providing hereafter some more info that may not be immediately obvious.
This is dovecot 2.2.4 with changesets 9091d0f2d971 and 2be295a0b64f.
All involved databases are sqlite ones.
passdb and userdb are devised so as to change usernames.
For example, I could have a user with addresses
2009 Aug 21
0
[LLVMdev] How to force MemoryDependenceAnalysis to run on original module
On Aug 21, 2009, at 3:04 AM, Marc Brünink wrote:
>> This isn't really possible. The issue is that MemDep doesn't just
>> "analyze your function". It is designed to be as lazy as possible,
>> which means that it only does analysis when a query is performed.
>> This
>> means that if you have MemDep->Pass1->Pass2 and Pass2 uses MemDep
2009 Aug 21
2
[LLVMdev] How to force MemoryDependenceAnalysis to run on original module
Chris Lattner schrieb:
> On Aug 21, 2009, at 3:04 AM, Marc Brünink wrote:
>>> This isn't really possible. The issue is that MemDep doesn't just
>>> "analyze your function". It is designed to be as lazy as possible,
>>> which means that it only does analysis when a query is performed. This
>>> means that if you have
2007 Dec 18
0
[LLVMdev] Another Pass Manager Assertion
On Dec 18, 2007, at 10:55 AM, John Criswell wrote:
> Dear All,
>
> The attached code (which is a contrived test case) hits the following
> assertion:
>
> test:
> /home/vadve/criswell/src/llvm22/include/llvm/PassAnalysisSupport.h:
> 226:
> AnalysisType& llvm::Pass::getAnalysisID(const llvm::PassInfo*,
> llvm::Function&) [with AnalysisType = Pass1]: Assertion
2011 May 18
0
[LLVMdev] 2.9 pass manager asserts "Unable to handle Pass that requires lower level Analysis pass"
Hi,
I am trying to write an LLVM project, using LLVM 2.9. My passes are defined
as follows, where the Pass2 requires Pass1.
namespace llvm {
class BaseClass : public ModulePass {
// Name for printing
const char* printname;
protected:
BaseClass(char id, const char* name)
: ModulePass(id),printname(name){
}
};
class Pass1 : public BaseClass {
public:
static char ID;
Pass1() :
2009 Aug 21
0
[LLVMdev] How to force MemoryDependenceAnalysis to run on original module
On Fri, Aug 21, 2009 at 10:48 AM, Marc Brünink<marc at bruenink.de> wrote:
>>> actually my problem is easier. So I still have hope that it is possible:
>>>
>>> MemDep->Pass1->Pass2
>>>
>>> Pass1 uses MemDep. Pass2 only uses Pass1. Eventually, Pass2 changes the
>>> code. Unfortunately, non-local dependencies of MemDep might point to
2009 Aug 21
2
[LLVMdev] How to force MemoryDependenceAnalysis to run on original module
Chris Lattner schrieb:
>
> On Aug 20, 2009, at 11:44 AM, Marc Brünink wrote:
>
>> Hi,
>>
>> I do have a FunctionPass that does change the code. This FunctionPass
>> requires another FunctionPass which performs all the necessary analyses.
>> This AnalysisPass again requires MemoryDependenceAnalysis.
>>
>> The problem is, that I would like
2003 Dec 17
3
[LLVMdev] pass position
Suppose, I have a Pass1 implemented as a subclass of Pass, with source code in
the directory of llvm source base( transform/analyze )
I can run that pass through opt on the bytecode emitted by gcc frontend
through opt tool. However, I want that Pass1 to be the part of the actual GCC
compiler. I want to know how I can position Pass1 among other passes
/optimizations/ code generations.
e.g if
2010 Jul 06
0
[LLVMdev] runtime assert failure when trying to obtain analysis pass info within a transformation pass
I am having problems passing analysis results to transformation
passes, so I reduced my testcase into the following bare bone:
Pass1: simple FunctionPass, counting functions
Pass2: transformation pass, for now, just trying to obtain a reference
of Pass1 using AU.getAnalysis<Pass1>() inside its runOnFunction().
When I run it, I get the following runtime error:
opt -load
2015 Feb 24
2
[LLVMdev] Accessing a custom defined llvm pass
Hello all,
I have written one pass to collect information about specific calls in an
llvm IR file and am not trying to reference the results from the first pass
in a second pass.
What is the correct way to reference an additional custom pass in LLVM? At
the moment the project is set up under the lib/Transforms directory in
source and has the current layout:
Thresholds/
include/
2007 Dec 17
1
[LLVMdev] Bug 1868: Specifying Pass Orderings
Devang Patel wrote:
>
> On Dec 17, 2007, at 2:01 PM, John Criswell wrote:
>
>> Devang Patel wrote:
>>>
>>> On Dec 17, 2007, at 1:47 PM, John Criswell wrote:
>>>
>>>> Dear Devang Patel,
>>>>
>>>> In response to your comment on bug 1868, how do I get BottomPass to
>>>> requires Pass2 before Pass1? Is it by
2024 Oct 07
1
rpcclient setdriver fails with WERR_ACCESS_DENIED
Dear Samba-experts,
I'm trying to setup automatic printer download with our
samba 4.19.4 fileserver which is a domain member of
our samba 4.18.2 AD.
printer drivers have been installed on the fileserver:
root at serv00:# rpcclient -Uprtadmin%pass1 SERV00 -c enumdrivers
[Windows x64]
Printer Driver Info 1:
Driver Name: [Kyocera TASKalfa 5052ci NAEV]
CUPS-printers have been installed
2009 May 24
2
Some questions about deliver
While investigating Dovecot's deliver with Postfix, I encountered some
behaviors making me wonder whether I really understand the purpose of
that binary. So, if you allow...
This is from Postfix' main.cf:
mailbox_command = /usr/local/dovecot/libexec/dovecot/deliver -e -n
This is my quick setup for Dovecot:
# 1.2.rc4: /usr/local/etc/dovecot.conf
# OS: Darwin 9.7.0
2009 Aug 20
0
[LLVMdev] How to force MemoryDependenceAnalysis to run on original module
On Aug 20, 2009, at 11:44 AM, Marc Brünink wrote:
> Hi,
>
> I do have a FunctionPass that does change the code. This FunctionPass
> requires another FunctionPass which performs all the necessary
> analyses.
> This AnalysisPass again requires MemoryDependenceAnalysis.
>
> The problem is, that I would like MemoryDependenceAnalysis to run on
> the
> unaltered
2012 Jun 26
0
[LLVMdev] Does anaysis group only contain passes?
On 6/25/12 8:55 PM, Thomson wrote:
> Thanks, John.
>
> This sounds reasonable that the analysis group just provides an
> interface to its implementors (pass). Then I have another question, is
> it allowed to specify multiple pass in the same analysis group in the
> command line for opt?
Yes, you can do that. Using multiple analysis passes that belong to the
same group may
2013 Jul 14
2
2.2.4 - quota-status changing the user it is running as
Hello,
I'm currently experimenting with this quota-status service configuration:
service quota-status {
client_limit = 1
executable = quota-status -p postfix
# Let's make the default explicit.
user = root
unix_listener /var/spool/postfix/private/quota-policyd {
user = postfix
}
}
The idea is to run the service as root during the preliminary tests (at worst, since