search for: wdo

Displaying 3 results from an estimated 3 matches for "wdo".

Did you mean: do
2015 Jul 04
2
Trouble installing xapian on windows
...DHAVE_CONFIG_H -I. - I./common -I./include -fshow-column -Wall -W -Wredundant-decls -Wpointer-arith -Wcast-qual -Wcast-align -Wno-long-long -Wformat-security -fno-gnu-keywords -Wu ndef -Woverloaded-virtual -Wstrict-null-sentinel -Wshadow -Wstrict-overflow=1 -W logical-op -Wmissing-declarations -Wdouble-promotion -Winit-self -fvisibility=hi dden -mfpmath=sse -msse2 -mtune=generic -g -O2 -MT api/compactor.lo -MD -MP -MF $depbase.Tpo -c -o api/compactor.lo api/compactor.cc &&\ mv -f $depbase.Tpo $depbase.Plo libtool: compile: g++ -DHAVE_CONFIG_H -I. -I./common -I./include -fshow...
2008 Jun 01
1
Dovecot hard link problem
My company recently changed mail server from cyrus to dovecot. The problem is that dovecot does not support hard links for message files with same message ID. I turned on the ?maildir_copy_with_hardlinks? option in dovecot.conf, but it does not seems to have relation to this problem, am I misunderstood? Hard links are created when move or copy messages from one folder to other folder, but when
2009 Jul 21
1
Problem with INTERNALDATE when the year in localtime and GMT different
In my thought utc_offset function in src/lib/utc-offset.c returns wrong offset value when the year in localtime and GMT different. /* max offset of 24 hours */ if (ltm.tm_yday < gtm.tm_yday) offset = -24 * 60; else if (ltm.tm_yday > gtm.tm_yday) offset = 24 * 60; else offset = 0; I think this code should be modified as followings. /* max offset of 24 hours */ if ((ltm.tm_year ==