similar to: [Patch] vpopmail plaintext passwords

Displaying 20 results from an estimated 500 matches similar to: "[Patch] vpopmail plaintext passwords"

2006 Oct 16
1
LDAP Memory Leak
Hi Timo I use LDAP auth on a system with around 2000 email account. I use dual OpenLDAP servers. I haven't noticed a leak of memory. Is there any more information and I will have a look to see if I can see anything that might help. Is it only affecting certain machines or all? Regards Daniel Rowe Date: Mon, 16 Oct 2006 02:39:26 +0300 From: Timo Sirainen <tss at iki.fi> Subject:
2010 Apr 02
2
convert old configuration file with doveconf : Unknown setting
Hi, It happens when I try to convert this config (with the dovecot 2.0 beta4 release) : test-mail:/tmp# dovecot -n -c ./dovecot.old.conf # 1.2.11: ./dovecot.old.conf # OS: Linux 2.6.26-2-686-bigmem i686 Debian 5.0.4 log_path: /var/log/dovecot.log info_log_path: /var/log/dovecot_info.log protocols: imap listen: 127.0.0.1:30143 disable_plaintext_auth: no login_dir: /var/run/dovecot/login
2006 Oct 15
2
1.0.rc10 released
http://dovecot.org/releases/dovecot-1.0.rc10.tar.gz http://dovecot.org/releases/dovecot-1.0.rc10.tar.gz.sig I've finally read all the mails in the mailing list and in my INBOX. If I haven't replied to some of your mail, please resend it. Remember that since 1.0.rc9 release dovecot.index.cache files will get rebuilt in 64bit systems, and it's probably better to delete them manually so
2006 Oct 15
2
1.0.rc10 released
http://dovecot.org/releases/dovecot-1.0.rc10.tar.gz http://dovecot.org/releases/dovecot-1.0.rc10.tar.gz.sig I've finally read all the mails in the mailing list and in my INBOX. If I haven't replied to some of your mail, please resend it. Remember that since 1.0.rc9 release dovecot.index.cache files will get rebuilt in 64bit systems, and it's probably better to delete them manually so
2014 Jan 18
2
[LLVMdev] Scheduling quirks
Hello all! When I compile the following more or less stupid functions with clang++ -O3 -S test.cpp ===> int test_register(int x) { x ^= (x >> 2); x ^= (x >> 3); x = x ^ (x >> 4); int y = x; x >>= 5; x ^= y; // almost the same but explicit return x; } int test_scheduler(int x) { return ((x>>2) & 15) ^ ((x>>3) & 31); }
2009 Jul 30
3
AIX and posix_fallocate
Hi, AIX's implementation of posix_fallocate is a little bit, let me say, peculiar. Attached is a patch to "fix" (=work around) this. Without you'll see this in the logs: Jul 28 01:17:41 trevi mail:err|error dovecot: IMAP(beckerr): posix_fallocate() failed: File exists Jul 28 01:17:41 trevi mail:err|error dovecot: IMAP(beckerr): file_set_size() failed with mbox file
2006 Apr 30
1
Number of Clusters
Dear R users, I am interested in clustering in R. In SAS we have some criteria for determining the number of clusters using the PROC CLUSTER procedure, which are "CCC" cubic clustering criterion (Sarl 1981), Psuedo F (PSF), and Psuedo T square (PST). My question is do thsese criterion exists in R, I tried to search and got one hit (BIC) in Mclust, which I am aware of, any input is
2017 Dec 21
1
Unable to Join the Active Directory as a Domain Controller
Hello Garming, In the link above (sorry, it's in French), I can read how to downgrade a feature level of a 2012-R2 domain to work in 2008 R2. https://sloze.wordpress.com/2014/06/18/active-directory-diminuer-le-niveau-fonctionnel-dune-foret-etou-dun-domaine-2/ Here is the English version of the Set-ADDomainMode command: https://technet.microsoft.com/fr-fr/library/hh852281(v=wps.630).aspx
2010 Nov 12
2
Strange bug since 3.83 version
Hello, i've found a strange bug, here is my situation: - all of our computers makes a pxeboot request by default dhcp server is configured: option option-128 code 128 = string; option option-129 code 129 = text; option space PXE; option PXE.mtftp-ip code 1 = ip-address; option PXE.mtftp-cport code 2 = unsigned integer 16; option PXE.mtftp-sport code 3 = unsigned
2003 Mar 27
1
Accessing a file hangs the accessing process
Hi System: Dell PowerEdge Dual Processor O/S: Redhat 7.3 + most patches Kernel: RH compiled 2.4.18-19.7.xsmp Not sure whether this is an ext3 problem or not, but I've not seen this on other RH systems. There is a particular file on an ext3 filesystem that hangs whichever process tries to access it, i.e. an attempt to cp it will hang the cp. the process is unkillable, and a reboot is the
2012 Oct 29
0
libvirt and thin provisionned LVM
Hi there. I'm trying to use thin provisionned LVM for som eguests, and I'm having a problem. Until now, I use LVM pool with success. Here's my pool definition: <pool type='logical'> <name>data</name> <uuid>7f18e030-9d2d-805e-c65f-d12d0681b0a9</uuid> <capacity unit='bytes'>0</capacity> <allocation
2004 Sep 24
1
Audio board [HELP]
Hi Christophe, On Mon, 2003-01-06 at 23:22, Christophe Prevotaux wrote: > I have a Gateway Laptop running 4-STABLE however I can't seem to find the correct > driver for the onboard audio chip which is: > > > none0@pci0:9:0: class=0x040100 card=0x2150107b chip=0x89381102 rev=0x00 hdr=0x00 > vendor = 'Creative Labs' > device = 'EV1938 Sound'
2013 Sep 23
0
Re: Incremental Backups
Le vendredi 20 septembre 2013 à 15:31 +0200, Thomas Stein a écrit : > Hello. > > Is someone performing incremental backups via libvirt for qemu/kvm > machines? I'm still having a hard time to > find a nice procedure. I mean is it possible to make a full backup of an > image on monday a do the next days of the week > incremental backups? You can take a look at this
2012 Mar 27
1
[LLVMdev] Compiling integer mod
For the simple C program below I show the output of clang and the output of the VS compiler (I am on windows). Maybe this is obvious to you, but is it really faster to do 2 multiplications, 3 movl instructions, 2 shifts, 1 add, and 1 substract than to do 1 mov, 1 cdq, and 1 idiv? I run into this while trying to understand why my code runs slower with llvm than a comparable program on windows.
2006 Oct 12
1
Call drop and strange CDR records
Hi, I have some (5-10 per day on an average 250 calls/day) incoming calls dropped after 25 to 60 seconds. Asterisk is 1.2.10 + BriStuff 0.3.0-PRE1s on one hand (with 4 ISDN lines...) Snom 320 SIP IP Phone (release 6.2.3) on the other. With SIP Debug on, it *_looks_* like a normal call clearing, but the users are complaining, stating that no one on either end had hanged up. Doing a "sip
2007 Nov 16
2
Changing audio message to text message
Hi all, I know Asterisk is able to send a waiting message (audio) to people trying to call a busy user agent using a queue. However, I'd like to change this audio message to a text message to be able to print it on screen on the other end. Is it possible to configure Asterisk to have text message sent ? Thanks, -- Anthony Chapellier --------- MBDSYS SARL 1, centre commercial de la Tour
2007 Dec 18
1
How to automaticaly close calls when Asterisk didn't receive the bye request ?
Hi, I'd like to know if it's possible to configure Asterisk to automaticaly close calls when the BYE request hasn't been sent by any clients and the call still exists for Asterisk ? Thanks, -- Anthony Chapellier --------- MBDSYS SARL 1, centre commercial de la Tour 93120 LA COURNEUVE FRANCE E-mail : anthony at mbdsys.com Tel : +33 (0) 143 11 09 14 ou +33 (0) 148 35 20 46
2018 Feb 14
1
Samba sharing an NFS mount point
Hello, I use a Synology NAS to store data. This NAS shares its data only through the NFS protocol. In this infrastructure, there is another machine configured as a hypervisor. This hypervisor has access to data shared by NFS. This hypervisor is on the same network (VLAN) as the NAS server. Users on another VLAN would like to access data from a folder on the NFS share. The problem is that the NAS
2003 Mar 04
1
2.5.6 needs following fix on WinNTs
Hi, Here is the problem (syscall.c, function do_open) on NT, Win2K, WinXP, with stripped "/" for UNC path convention, detected in release 2.5.5, 2.5.6: int do_open(char *pathname, int flags, mode_t mode) { if (flags != O_RDONLY) { if (dry_run) return -1; CHECK_RO } #ifdef O_BINARY /* for Windows */ flags |= O_BINARY; #endif /* some systems can't handle a double / */
2002 Mar 23
2
RSYNC 2.5.4 and FreeBSD RELENG_4 Problems [HELP]
I use FreeBSD RELENG_4 with rsync version 2.5.4 protocol version 26 Copyright (C) 1996-2002 by Andrew Tridgell and others <http://rsync.samba.org/> Capabilities: 64-bit files, socketpairs, hard links, symlinks, batchfiles, IPv6, 32-bit system inums, 64-bit internal inums and when I try to transfer file I get rsync: connection unexpectedly closed (5994 bytes read so