Displaying 20 results from an estimated 2000 matches similar to: "userdb/autdb via ldaps"
2005 Oct 27
2
Problems with dual ldap auth
Hi,
I can't seem to figure this out. Is it impossible to use two different
ldap auth? It works if I use one ldap and one pam, but I do need to use
ldap for both. This is from my config:
auth default {
mechanisms = plain
passdb ldap {
args = /etc/dovecot/ldap-virtual.conf
}
passdb ldap {
args = /etc/dovecot/dovecot-ldap.conf
}
userdb ldap {
args =
2006 Mar 14
1
Losing messages
Hi,
I have been running dovecot cvs happily for.. well.. very, very long
now. Don't remember when I switched from 0.99, but it was back in the
test-days, long before the alpha's. Anyway, it seems to have been
working very well all the time. But recently three of my clients have
claimed to have lost mail when moving from Thunderbird. I even
experienced it myself once. I'm using
2005 Dec 31
1
Questions regarding quota
Hi,
I have some trouble trying to test the quota plugin.
First off all, it says in the wiki: "Dovecot 1.0 supports quota using a
quota plugin. It's currently discussed in Dovecot LDA page and it
supports only very simple quota calculation which is suitable only for
mboxes. Maildir++ quota support will come later."
Does that mean that it won't work at all with Maildir++, or
2006 Mar 06
1
Filesystem quota
Hi,
I've seen you commited a lot of quota work tonight. I'm still unable to
get the filesystem quota working, and I wonder if it's just me that is
stupid, or if theres a bug somewhere.
I enable quota and imap_quota plugins, I set fs in my ldap-base for
quota, and logons. I then get this:
dovecot: imap(ingvild): fs quota add storage dir = /home/ingvild/Maildir
dovecot: imap(ingvild):
2005 Dec 21
1
mailbox from ldap and indexes
Hi,
because of quota, I would like to have indexes on another filesystem
then user's maildir. This I can do with "default_mail_env= maildir:/%
h/Maildir:INDEX=/var/indexes/%u" or something. But when I get the users
mailbox location from ldap, there is no way to set the index? I guess I
can make the ldap entry contain the INDEX as well, but I would like to
use the ldap entry in the
2006 Jun 20
1
Question about acls
Hi,
Is it possible to have a maildir-folder with an acl letter "i", but not
"r"? I mean, the folder always seems empty for the user, but he can copy
mail there? (which of course might be readable for another user..)
Regards,
Stian
2009 Jul 25
1
Dovecot 1.2, quota and LDAP
Hi!
I'm in the progress of upgrading from Dovecot 1.0.15 to 1.2.1. This has
gone pretty smooth. I just have one question to check wether I have
understood the documentation right.
I have both system users and virtual users. That's easy to do when using
LDAP for userdb. The system users use filesystems quota, the virtual
users use maildir quota. I achieved this using the following in
2005 Dec 31
0
Bug with userdb prefetch
Hi,
when I'm (trying) to use userdb prefetch with ldap, it works fine for
system users, but for virtual users without their own uid and gid, it
won't work. I get in the log:
Dec 31 01:34:47 buick dovecot: auth(default): prefetch(oddrun,127.0.0.1): userdb_uid not returned
Dec 31 01:34:47 buick dovecot: auth(default): prefetch(oddrun,127.0.0.1): userdb_gid not returned
Which means that
2007 Apr 28
6
Determine how many documents a term occurs in
Is there a fast way to determine how many documents a term occurs in,
besides iterating through every document with TermDocEnum?
--
Best regards,
Stian Gryt?yr
2010 Jan 22
2
[LLVMdev] Compiling LLVM under vista with msdev 2008 gives a few errors
Hi,
I just started with LLVM so I'm not sure who's responsible for
portability. Anyways, I found the following problems trying to compile
llvm rev 94074 with the solution generated using cmake 2.8 (including
the clang front end) on 32bit vista:
lib/system
Errno.cpp : had to add "#undef HAVE_STRERROR_R"
raw_ostream.cpp: had to add "#undef HAVE_UNISTD_H"
2010 Oct 19
3
[LLVMdev] pass case sensitive information to a llvm target backend
Hi,
we use the llvm to lower c++ code to c code which can be run through our
abstract interpretation framework
(based on CIL). Along with the c code we emit some structured text files
that contain the "lost" information
(class hierarchy, private/public attributes etc). In order to output
this information in a sensible way we need to pass unix paths and some
more case sensitive
2010 Jan 22
0
[LLVMdev] Compiling LLVM under vista with msdev 2008 gives a few errors
Hi,
i had the same troubles on Vista and on Win7...
cmake fails on some tests (you should see this in the log) due to m$ UAC (or
whatever the name is) and uses not-so-sane default values.
You have to start a visual c-command prompt (to make sure it gets the right
paths) with administrator privileges (!) , than cmake works fine and you get
a correct config.h.
best regards,
Thomas
2010/1/22
2005 Mar 15
6
New Beta version of Rake for Rails Users ... Fix for Ruby 1.8.2 unit test bug
I have a new version of Rake that I''m (almost) ready to release. But before I
make an official release, I would like some Rails folk to give it it try ...
Why?
Because it contains a workaround for the notorious Ruby 1.8.2 test/unit bug.
Using this version of rails, it should be possible to unit test a rails app
without patching the Ruby 1.8.2 test/unit library.
Where to get it?
2005 Mar 13
7
[Bug 998] --without-opensc is not respected
http://bugzilla.mindrot.org/show_bug.cgi?id=998
Summary: --without-opensc is not respected
Product: Portable OpenSSH
Version: -current
Platform: All
OS/Version: Linux
Status: NEW
Severity: minor
Priority: P2
Component: Build system
AssignedTo: openssh-bugs at mindrot.org
ReportedBy: stian
2007 Mar 18
3
authenticating with LDAP and SSL
I managed to configure Dovecot to use a local OpenLDAP server to
authenticate clients, without using SSL. However, I would rather that
LDAP is accessed using SSL, but I cannot get Dovecot to connect. All
that I did was change "uris" to "ldaps://localhost", and this appears in
the maillog:
Mar 18 12:53:00 server dovecot: Dovecot v1.0.rc15 starting up
Mar 18 12:53:01 server
2008 Nov 24
3
multiple plots in R
Hi, I just try to draw multiple plots in one page using R, I used par
command. For example I have 7 plots, but instead of arranging them in
the default way
plot1 plot2 plot3
plot4 plot5 plot6
plot7
I want them in this order
plot1 plot2 plot3
plot4 plot5 plot6
plot7
Could somebody tell me how to do this, please? Thanks so many.
Suyan
2004 Nov 18
5
Torrent support in IPP2P
Hello, I guess a few of you know about the iptables-p2p project at the
http://sourceforge.net/projects/iptables-p2p site. This suite has an
excellent filter of which I use today and its running very smoothly.
The main reason why I use this is because I desperately need to block
torrents. IPP2P does not do this at this time (it seems to me in the doc
at least). Is it maybe some way we could merge
2010 Oct 19
0
[LLVMdev] pass case sensitive information to a llvm target backend
Hi Alex,
That sounds like the sort of information that should be extractable from the debug information metadata. Once you're in LLVM IR, things like class names and source types are not guaranteed to be preserved in a reverse-mappable sort of way (from IR names to source names) in the IR itself. The debug information, however, is intended to do exactly that.
-Jim
On Oct 19, 2010, at 12:52
2005 Mar 09
8
How to set ''Return-Path'' in ActionMailer to avoid SPF failure?
I was wondering if there was any way to set the ''Return-Path'' of an
email when using ActionMailer. Without the ability to set the
''Return-Path'' of an email, it is impossible to avoid being labeled as
''spam'' by many SMTP gateways if trying to send mail on another''s
behalf. SPF doesn''t care about the
2010 Jan 27
3
[LLVMdev] llc generated assembly does not work with gcc 3.4.4
The ll file:
; ModuleID = 't.bc'
target datalayout =
"e-p:32:32:32-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-f80:128:128-v64:64:64-v128:128:128-a0:0:64-f80:32:32-n8:16:32"
target triple = "i686-pc-win32"
@.str = private constant [13 x i8] c"hello world\0A\00" ; <[13 x i8]*>
[#uses=1]
define i32 @main(i32 %argc, i8** %argv)