similar to: Dovecot sending OK while idling

Displaying 20 results from an estimated 11000 matches similar to: "Dovecot sending OK while idling"

2005 Jan 30
1
newbie help, please?
Hi, I'm trying to get a Samba (version 3.0.8pre1-0.pre1.3) to play with some WinXP boxes. I'm using WORKGROUPS, not DOMAIN. The server is running under Fedora Core 3. And I'm following the troubleshooting chapter in the O'Reilly book, Chapter 9. I cannot browse the shares from my WinXP machine. I CAN browse and access shares okay as a client on the Samba server machine. I
2014 Jun 02
11
[Bug 79518] New: nouveau causes lockup and reboot on GT215
https://bugs.freedesktop.org/show_bug.cgi?id=79518 Priority: medium Bug ID: 79518 Assignee: nouveau at lists.freedesktop.org Summary: nouveau causes lockup and reboot on GT215 QA Contact: xorg-team at lists.x.org Severity: normal Classification: Unclassified OS: Linux (All) Reporter: kilobyte at angband.pl
2018 Apr 04
2
nouveau TRAP_M2MF still there on G98
On Wed, Apr 04, 2018 at 03:48:39PM +0300, Māris Nartišs wrote: > 2018-04-03 23:00 GMT+03:00, Adam Borowski <kilobyte at angband.pl>: > > In commit da5e45e619b3f101420c38b3006a9ae4f3ad19b0 > > > > yet it is still reproducible for me on 4.16-rc7 and 4.16.0, which already > > have your fix. I don't know about earlier versions -- my newer card went > > into
2004 Jan 07
5
Client for P800/P900
Hi Guys, is there a client which can be used on the SonyEricsson P800/P900...? IAX would be cool, but i take anything that can connect (via bluetooth) to an asterisk-server ;-). The phone is Symbian, and can also execute java-stuff... Greez Andreas _________________________________________________________________ Find your perfect match @ http://personals.xtramsn.co.nz with XtraMSN
2019 Apr 04
1
[PATCH v4 5/5] xfs: disable map_sync for async flush
On Thu, Apr 04, 2019 at 02:12:30AM -0400, Pankaj Gupta wrote: > > All this ad hoc IS_DAX conditional logic is getting pretty nasty. > > > > xfs_file_mmap( > > .... > > { > > struct inode *inode = file_inode(filp); > > > > if (vma->vm_flags & VM_SYNC) { > > if (!IS_DAX(inode)) > > return -EOPNOTSUPP; > > if
2019 Apr 04
1
[PATCH v4 5/5] xfs: disable map_sync for async flush
On Thu, Apr 04, 2019 at 02:12:30AM -0400, Pankaj Gupta wrote: > > All this ad hoc IS_DAX conditional logic is getting pretty nasty. > > > > xfs_file_mmap( > > .... > > { > > struct inode *inode = file_inode(filp); > > > > if (vma->vm_flags & VM_SYNC) { > > if (!IS_DAX(inode)) > > return -EOPNOTSUPP; > > if
2017 Apr 02
1
[PATCH] drm/nouveau: enable interrupts on cards with 32 intr lines
The code attempts to enable them, but hits an undefined behaviour by shifting by the entire register's width: int lines = 32; u32 mask = (1 << lines) - 1; // 00000000 on x86 u32 mask = (1 << lines) - 1; // ffffffff on arm (32) u32 mask = (1 << lines) - 1; // 00000000 on arm64 u32 mask = (1ULL << lines) - 1; // ffffffff everywhere
2009 Jan 27
0
[LLVMdev] RFC: -fwritable-strings Change
On Tue, Jan 27, 2009 at 1:00 PM, Bill Wendling <isanbard at gmail.com> wrote: > Even with C code, we place a null string in a writable > section, which isn't correct. You could say that, but it's not really wrong... say you had a 10 kilobyte struct that was all null. If you put it into a data section, it takes up 10k in the executable (unless Darwin has some unusual data
2018 Nov 03
5
reading old dump backups from 2009
I have and old dump format backup done under fedora 7 which is stored on disk and has an sha256sum file that indicates there are no data errors in the backup file.? When I try to read the file with restore under CentOS 6,? I get the following error: cat /etc/redhat-release CentOS release 6.10 (Final) restore tvf u1_l0_04-29-09_md1.dump Verify tape and initialize maps Input is from a local
2007 Dec 09
2
How to logoff a session with dovecot?
I use dovecot to push email to my SE P1i and it works very well. :) However, I have two email accounts set up on the phone, one using my domain for GPRS and public WiFi and one using my WLAN address for use at home, the idea being I don't want to pay for GPRS data at home. The trouble is the GPRS account remains logged on and I get the mail in both inboxes. There is no option in the email
2004 Nov 18
1
jitter buffer
Hi Farhan, It is interesting that GPRS is 9.6 kps, as per GPRS standard it should be 115kps ? if it is 9.6kps is true then I would use speex codec on GPRS for my project, since in some country they charge GPRS on flat rate rather than expensive airtime. Thanks for your work ! Regards Danny -----Original Message----- From: speex-dev-bounces@xiph.org [mailto:speex-dev-bounces@xiph.org] On
2004 Dec 08
7
SIP Client for Symbian
Skipped content of type multipart/alternative-------------- next part -------------- No virus found in this outgoing message. Checked by AVG Anti-Virus. Version: 7.0.289 / Virus Database: 265.4.7 - Release Date: 07/12/04
2011 Jun 23
0
[LLVMdev] Instr Description Problem of MCore Backend
Hello > Finally, I don't know how to describe following instructions in > MCoreInstrInfo.td, because of its variable ins/outs. Or what other files > should I use to finish this description? Do you need the isel support for them? If yes, then you should custom isel them. iirc ARM and SystemZ backends have similar instructions, while only the first one supports full isel for them. In
2011 Jun 23
2
[LLVMdev] Instr Description Problem of MCore Backend
Hi, all: Now I'm working on writing a backend for Moto MCore, but I don't know how to describe some instructions. First, I've already written MCoreRegisterInfo.td like these: class MCoreReg<bits<4> num, string name> : Register<name> { let Namespace = "MCore"; field bits<4> Num = num; } def R0 : MCoreReg< 0, "R0">,
2016 Nov 17
2
UB in MemoryBufferMMapFile
Chris Lattner <clattner at apple.com> writes: > On Nov 16, 2016, at 9:46 PM, Justin Bogner via llvm-dev > <llvm-dev at lists.llvm.org> wrote: >> In MemoryBuffer::init, we have an assert that reads the memory at >> `BufEnd`, which is one past the end of some memory region: >> >> from lib/Support/MemoryBuffer.cpp:45: >>> void
2008 Feb 27
6
[LLVMdev] ABI for i128 on x86-32?
Hello, Does anyone know of any precedent for handling i128 in the calling convention on x86-32? I'm trying to write a testcase that returns an i128 value, and LLVM currently has only two 32-bit GPRs designated for returning integer values on x86-32. Dan
2014 Aug 27
0
syslinux efi configuration file name proposal
Hello Ady, On Wed, Aug 27, 2014 at 10:52:25AM +0300, Ady wrote: > > Hello Ady & list, > > > > On Wed, Aug 27, 2014 at 08:17:51AM +0300, Ady wrote: > > > > Hello Ady, > > > > > > > > On Fri, Aug 01, 2014 at 08:35:27PM +0300, Ady wrote: > > > > > Goal: To have one USB drive capable of booting UEFI IA32 and UEFI X64 >
2012 Jul 07
5
Feature request
Hi, I am implementig Dovecot as a part of my new e-mail server, which is aimed to be replacement for proprietary software I've been using sofar. Appreciating all Dovecot rich features, I lack just one. And this is the ability to customize the "quota exceeded, message rejected" message. I know I can set it's default content using quota_exceeded_message parameter, but i would
2006 May 22
2
FW: WiFi / GSM VoIP Handsets..
Well I think we all need to look at something like this first. We will be one of the first people in Europe who will be selling this. If anyone is interested do drop me an email. Picture of the phone can be found here. http://cyber-telecom.net/wifi-gsm.jpg GSM / VoIP Over WiFi Dual-Mode Phone CYBER-TELECOM released the world first commercial GSM/VoIP Over WiFi dual-mode smart phone, in
2007 Nov 01
3
Video Call
Hi.. Iam new with asterisk PBX, and i have read about asterisk video call.: my question: 1. Is imposible to establish system video call (from Phone with GPRS/3G enabled to Computer Running Softphone like X-Lite) over Asterisk Gateway.. 2. If posible what requirement (Hardware and Software on my Asterisk,PC or My Phone) Thanks Joko Pitoyo -------------- next part -------------- An HTML