Displaying 20 results from an estimated 6000 matches similar to: "Debian packages for Dovecot 1.0.1xx (sarge)"
2007 Dec 12
1
dovecot 1.1beta11 auth problems
Hi everybody,
I've problems running Dovecot 1.1beta11 using vpopmail userdb/passdb
(Dovecot 1.08 however works just fine).
It looks like as if the auth process gets killed somehow...
Any ideas what might be wrong?
Dec 12 20:02:32 vs247165 dovecot: Dovecot v1.1.beta11 starting up
Dec 12 20:02:32 vs247165 dovecot: Generating Diffie-Hellman parameters
for the first time. This may take a
2007 Jun 06
1
bug in passdb-vpopmail.c
Hi there,
i've tried to compile dovecot-latest.tar.gz (currently dovecot-20070522) with
vpopmail support and spotted the following bug (patch is also attached):
--- dovecot-20070522/src/auth/passdb-vpopmail.c.orig 2007-05-20
23:11:36.000000000 +0200
+++ dovecot-20070522/src/auth/passdb-vpopmail.c 2007-06-06 09:02:01.968750000
+0200
@@ -66,7 +66,7 @@
password =
2007 Jun 05
1
[Debian] Packages available for 1.0.0
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
They aren't thoroughly tested, but I've been running on them for a
little while and they seem stable. This is based on the latest RC from
backports.org and is built for sarge.
deb http://debian.delink.net/ sarge-delink main
Enjoy,
- --
http://www.delink.net/
Ok, so he's got a cellphone in one hand and latte in the other, I know
what
2007 Jun 29
1
Debian packages
Hi there,
anyone interested in Debian Dovecot 1.0.1 packages?
I have created a package for etch/stable...
Could do that for sarge/oldstable as well.
Greets,
Maurice.
2007 Sep 27
12
/etc/passwd
I would like to write up brief tutorial/documentation on how to manage /etc/passwd using puppet.
While this may seem pretty straight forward to some...the documentation is not.
We have been able to create a manifest that defines all of our users "virtually" and are able to "realize" users and add them to the system(s) running puppetd.
Is there a way to simply realize all users
2006 May 11
1
kernel names
Hi
I am pretty new to this, and this may be an easy one, but I have not
found the answer in the docs.
The kernels produced from a build seem to have the same name for both
the dom0 and domU instances.
I get one kernel named vmlnuz-2.16.6-xen
Is this expected?
Although the dom0 boots, I ma having a crappy time getting a virtualized
OS to boot and am trying to see if this is the
2006 Oct 04
2
Whatever happened to rc8?
It sounded like there was going to be one, so that some of the fixes
that didn't make it into rc7 could be easily tested before releasing 1.0?
--
Best regards,
Charles
2006 Oct 24
3
"Real" users AND Virtual users
Dear all,
How can I use dovecot for both "real" users and virtual users?
I could configure dovecot for real users, by using these lines
in /etc/dovecot.conf:
default_mail_env = maildir:%h/Maildir
auth default {
passdb pam {
}
userdb passwd {
}
}
To accept virtual users, I used these lines:
default_mail_env = maildir:/usr/local/virtual/%u/
auth default {
passdb sql {
2017 Mar 14
2
Distributing llc and opt with own package?
> On Mar 14, 2017, at 3:02 AM, Mehdi Amini <mehdi.amini at apple.com> wrote:
>
>>
>> On Mar 11, 2017, at 4:30 PM, Moritz Angermann via llvm-dev <llvm-dev at lists.llvm.org> wrote:
>>
>> Hi Matthias,
>>
>> what I’m observing right now is that replacing opt+llc with an clang invocation, and
>> subsequently fewer intermediate files,
2017 Mar 12
3
Distributing llc and opt with own package?
Hi Matthias,
what I’m observing right now is that replacing opt+llc with an clang invocation, and
subsequently fewer intermediate files, increases the consumed time with -O0 by 200%.
We used to always run opt with -mem2reg -globalopt, and I believe those are not part
of -O0 (is there an easy way to list all passes that -OX flags to clang imply for the
optimizer and code gen?).
Could the IR imply
2017 Mar 07
2
[BUG Report] -dead_strip, strips prefix data unconditionally on macOS
I suspect that the format isn't important if you do that, but I wouldn't
recommend it, at least because inlining (and other inter-procedural
optimizations) are not expected to work correctly if you produce IR like
that.
Peter
On Mon, Mar 6, 2017 at 6:44 PM, Moritz Angermann <moritz.angermann at gmail.com
> wrote:
> Peter,
>
> thanks again! Yes, we only need to refer to
2017 Jul 17
2
Updated Xen packages for XSA 216..225
Salvatore Bonaccorso writes ("Re: Updated Xen packages for XSA 216..225"):
> On Tue, Jul 11, 2017 at 11:34:38PM +0200, Moritz Muehlenhoff wrote:
> > On Mon, Jul 03, 2017 at 12:33:54PM +0100, Ian Jackson wrote:
> > > Moritz M?hlenhoff writes ("Re: Updated Xen packages for XSA 216..225"):
> > > > Sorry for the late reply, was on vacation for a week.
2017 Sep 04
3
Updated Xen packages for XSA 216..225
On Mon, Aug 07, 2017 at 01:15:56PM +0200, Moritz Muehlenhoff wrote:
> On Mon, Jul 17, 2017 at 03:58:20PM +0100, Ian Jackson wrote:
> > Salvatore Bonaccorso writes ("Re: Updated Xen packages for XSA 216..225"):
> > > On Tue, Jul 11, 2017 at 11:34:38PM +0200, Moritz Muehlenhoff wrote:
> > > > On Mon, Jul 03, 2017 at 12:33:54PM +0100, Ian Jackson wrote:
>
2004 Aug 08
2
System Reqirements HELP
want to get from SIP to ISDN or from SIP to SIP.
I only have a ADSL connection that means 786kb/s downstream and 128kb/s
upstream so i can max handle 2 sip calls at once.
I want to have 25 Accounts because of the different numbers for the
different phones.
Good, i wanted to buy a ready built pc from ebay but now i think i will
built a 19" rack case so i will built in a 1 - 1,5ghz intel
2017 Mar 11
2
Distributing llc and opt with own package?
Hi Matthias,
I’m trying to see if I can make do with the clang interface only.
How do I pass flags to opt or llc? Say I want to enable/disable tbaa,
which could be done with `--enable-tbaa=true/false` or `-mem2reg` or
`-globalopt`? Would the `-llvm` switch be, what I’m looking for or the
`-Xclang`, or something else entirely?
Cheers,
Moritz
> On Mar 11, 2017, at 2:26 AM, Matthias Braun
2017 Jul 11
2
Updated Xen packages for XSA 216..225
On Mon, Jul 03, 2017 at 12:33:54PM +0100, Ian Jackson wrote:
> Moritz M?hlenhoff writes ("Re: Updated Xen packages for XSA 216..225"):
> > Sorry for the late reply, was on vacation for a week. What's the status
> > of jessie? Most of the XSAs seem to affect oldstable as well.
>
> Sorry, I forgot about them...
>
> I will see what I can do.
Did you look
2002 Aug 22
2
NT4 WINS Server forgets samba servers
Hi,
I do not know whether this is a samba problem or an NT feature, but it
seems only to occur with samba boxes, so it could be samba's fault:
The NT PDC (moritz) runs also the WINS server. It regularly forgets the
IP addresses of our samba servers:
# nmblookup -U moritz -R hni-gate
querying hni-gate on 131.234.166.19
name_query failed to find name hni-gate
I then just have to stop and
2014 Dec 12
2
Fwd: Fwd: Fwd: Fwd: Fwd: Fwd: Fwd: Fwd: 26.
Anna Crepes: Traubenzucker
+ Feldsalat spezielles Dressing (bringt selbst mit?)
-------- Weitergeleitete Nachricht --------
Betreff: Fwd: Fwd: Fwd: Fwd: Fwd: Fwd: Fwd: 26.
Datum: Thu, 11 Dec 2014 15:34:39 +0100
Von: Markus <universe at truemetal.org>
An: universe at truemetal.org
Geschenke Moritz: dunkle Schokolade.
Geschenke Anna: normale Schokolade.
-------- Weitergeleitete
2017 Mar 07
4
[BUG Report] -dead_strip, strips prefix data unconditionally on macOS
Firstly, do you need "main.dsp" defined as an external symbol, or can all
external references go via "main"? If the answer is the latter, that will
make the solution simpler.
If only the latter, you will need to make a change to LLVM here:
http://llvm-cs.pcc.me.uk/lib/CodeGen/AsmPrinter/AsmPrinter.cpp#650
Basically you would need to add a hook to the TargetLoweringObjectFile
2017 Mar 07
2
[BUG Report] -dead_strip, strips prefix data unconditionally on macOS
On Mon, Mar 6, 2017 at 5:54 PM, Moritz Angermann <moritz.angermann at gmail.com
> wrote:
> Hi Peter,
>
> I’ve just experimented with this a bit:
>
> Say we would end up with the following assembly:
>
> .section __TEXT,__text
> .globl _main
>
> .long 1
> _main:
> inc %eax
> ret
>
> .globl _main.dsp
> .alt_entry _main.dsp