similar to: Dovecot with dsync

Displaying 20 results from an estimated 10000 matches similar to: "Dovecot with dsync"

2017 Jul 18
2
Dovecot imap
Hello there Larry ! No it is not a client issue... Because i have tried many clients and all the same issue ! Actually the 1st client that refreshes the new email appear all others not ! I have tried RoundCube/Outlook/Thunderbird/Android Email... etc All have the same issue ..? -----Original Message----- From: Larry Rosenman [mailto:larryrtx at gmail.com] Sent: Tuesday, July 18, 2017 8:51 PM
2017 Jul 18
2
Dovecot imap
Hello to all !!! I have some issues with some users that login to the same account through imap from many devices like: mobile,desktop/tablet !!! Issues like: 1. When a new email is arrived is not appearing to all devices... 2. New email is arriving to some other devices after a long period of time ... Generally issues like that .... Does anyone have an idea of how to solve this ..?
2017 Jul 18
0
Dovecot imap
Remember that the first client to READ the message will set \Recent, and the rest will show the mail as read. -- Larry Rosenman http://www.lerctr.org/~ler Phone: +1 214-642-9640 E-Mail: larryrtx at gmail.com US Mail: 17716 Limpia Crk, Round Rock, TX 78664-7281 On 7/18/17, 12:59 PM, "It Dept Mr IT" <it at mrit.gr> wrote: Hello there
2017 Jul 18
4
Dovecot imap
Hello there !! Yes I know .... Despite this it not shown at all ! -----Original Message----- From: Larry Rosenman [mailto:larryrtx at gmail.com] Sent: Tuesday, July 18, 2017 9:00 PM To: it at mrit.gr Cc: dovecot at dovecot.org Subject: Re: Dovecot imap Remember that the first client to READ the message will set \Recent, and the rest will show the mail as read. -- Larry Rosenman
2017 Jul 18
0
Dovecot imap
That?s going to be a client issue?.. They (the client) needs to be using IMAP IDLE or polling. -- Larry Rosenman http://www.lerctr.org/~ler Phone: +1 214-642-9640 E-Mail: larryrtx at gmail.com US Mail: 17716 Limpia Crk, Round Rock, TX 78664-7281 On 7/18/17, 12:50 PM, "dovecot on behalf of Nick Lekkas" <dovecot-bounces at dovecot.org on
2017 Jul 19
1
Dovecot imap
Hello there ! Do you see anything wrong on the config i sent ? -----Original Message----- From: Aki Tuomi [mailto:aki.tuomi at dovecot.fi] Sent: Tuesday, July 18, 2017 9:20 PM To: nlekkas at gmail.com; Larry Rosenman Cc: dovecot at dovecot.org Subject: RE: Dovecot imap Can you provide doveconf -n please? Aki > On July 18, 2017 at 9:06 PM Nick Lekkas <nlekkas at gmail.com> wrote:
2017 Feb 10
0
dovecot Digest, Vol 166, Issue 22
I have not tried it at all. Was just an suggestion. You can try something like protocol lda { namespace archive { ... } } On 10.02.2017 14:12, Nick Lekkas wrote: > > Hi Aki > > > > Thanks for your answer .... > > What version of dovecot have you tried it ? Mine is 2.2.10 > > > > > > > > > > *From:*Aki Tuomi
2017 Aug 31
0
Iterate All Dovecot Users !
Hi Thomas ! So simple.... But you save my ass ..... And yes it works ! Thanks a lot ! Really ! I appreciate it ! Thanks Nick -----Original Message----- From: Thomas Reifferscheid [mailto:thomas at reifferscheid.org] Sent: Thursday, August 31, 2017 10:49 PM To: nlekkas at gmail.com Subject: Re: Iterate All Dovecot Users ! Am 31.08.2017 um 18:18 schrieb Nick Lekkas: > Hello to all ! >
2017 Feb 09
0
dovecot Digest, Vol 166, Issue 22
Hello to all After a lot of tries using dovecot 2.2.10 on centos 7 latest ...i could not manage make dovecot dsync work ... i have tried a lot of scenarios using mysql as backend , custom user file. Using by command line the dsync it works fine Has anyone managed to use 2.2.10 ..? -----Original Message----- From: dovecot [mailto:dovecot-bounces at dovecot.org] On Behalf Of dovecot-request at
2017 Aug 31
1
Iterate All Dovecot Users !
Hello to all ! I am trying to write a script that iterate all users that are created in dovecot and postfix .... Is there any way ..? Thanks in advance for your time ! Nick __________ Information from ESET Endpoint Antivirus, version of detection engine 16007 (20170831) __________ The message was checked by ESET Endpoint Antivirus. Email message - is OK http://www.eset.com
2010 Jan 15
0
Logs problem of queue_log-mysql
Hello! I'm trying to registers events of queues in /var/log/asterisk/queue_log and Mysql database .I have configured realtime queue_log on MySQL and works well, but /var/log/asterisk/queue_log file is empty, since you're not registering events of queues. Removing extconfig.conf configurations (queue_log => mysql,general), /var/log/asterisk/queue_log works well, events logs on
2013 Jun 10
0
Fwd: DC IP address change
The server name did not change, Just the IP address and the appropriate subnet addresses. ----- Original Message ----- From: "JUAN EDUARDO DELGADILLO CHAVEZ" <juan at idec.edu.mx> To: "Saad Benateigha" <sbenateigha at geomega.com> Sent: Monday, June 10, 2013 2:13:10 PM Subject: RE: [Samba] Fwd: DC IP address change [Samba] Fwd: DC IP address change Did you
2013 Oct 07
0
Fwd: RE: [3.6.8] XP fails with error 1326
-------- Original Message -------- Subject: RE: [Samba] [3.6.8] XP fails with error 1326 Date: Mon, 7 Oct 2013 12:46:04 -0500 From: JUAN EDUARDO DELGADILLO CHAVEZ <juan at idec.edu.mx> To: gaiseric.vandal at gmail.com Re: [Samba] [3.6.8] XP fails with error 1326 Did you create the smb user and password? You must create users with smbpasswd ?a username to connect to the share
2008 Jan 25
0
Shift count warning messages
Jean-Marc, I dug into this further, and found that the warning occurred when PSHR32 had a shift greater than 15. in fixed_generic.h, PSHR32 is defined as: #define PSHR32(a,shift) (SHR32((a)+((1<<((shift))>>1)),shift)) For 16-bit compilers the "1" needs a cast: #define PSHR32(a,shift) (SHR32((a)+((EXTEND32(1)<<((shift))>>1)),shift)) This change fixed the
2008 Jan 26
1
Shift count warning messages
Hi Jim, Thanks a lot for investigating. It definitely makes sense now. I'll fix the problem now. Is there any other place where you see that same (or similar) problem? Jean-Marc Jim Crichton a ?crit : > Jean-Marc, > > I dug into this further, and found that the warning occurred when PSHR32 > had a shift greater than 15. > > in fixed_generic.h, PSHR32 is defined as: >
2008 Jan 23
0
Shift count warning messages
I looked back at my old C55 EC build, and I had the same warning in mdf.c which Mike found. The assembly code did have a valid shift, and this build did cancel echo. When I built with the SVN head, I saw the errors in kiss_fft.c also. The assembly there also has valid shifts. So, I suspect that these warnings do not indicate a real problem. It might be interesting to break down the
2008 Apr 08
1
Speex and C5510
Thanks Jim, But i didnt find this project... It's in CCS folder or on TI site ????? Thk's Em 08/04/2008, ?s 15:52, Jim Crichton escreveu: > The TI directory of the Speex source distribution contains a C5509A > project that builds and runs in TI's Code Composer Studio > simulator. This project does file I/O to files specified in the > main source file. See
2008 Apr 08
0
Speex and C5510
The TI directory of the Speex source distribution contains a C5509A project that builds and runs in TI's Code Composer Studio simulator. This project does file I/O to files specified in the main source file. See README.TI_DSP in the main directory for some tips. You should use the 1.2 beta 3 distribution. You should be able to load, build, and run this with no effort except to get the
2008 Jan 22
0
Shift count warning messages
Mike, I played briefly with the echo canceller on the C5509A back in May 2006. I got the same compiler warnings, and sent a message to the list which included this: "I got several compiler warnings for "shift out of range" in mdf.c, which I fixed by adding EXTEND32 to all of the SHL32s with 16 bit operands (st->frame_size in 6 places, st->wtmp2 in 1 place)." I sent
2009 Aug 07
2
Anyone had any luck with SIP clients on theiPhoneplatform?
That sounds like the ideal app for me too. Fring requires we register with Fring and give them user id/password pair. In our case it did not work until we put a public IP on our Asterisk. I just bought WeePhone and I'll give it a try on the iPhone. Cheers, Enrique -----Mensaje original----- De: asterisk-users-bounces at lists.digium.com [mailto:asterisk-users-bounces at lists.digium.com] En