similar to: maildir file creation problem

Displaying 20 results from an estimated 130 matches similar to: "maildir file creation problem"

2008 Jun 10
5
outlook windows problem
hello, client can not connect using outlook. has any of you noticed this problem. can not connect with imap or as pop. i am using a self signed certificate.
2008 Mar 29
3
primary key?
can you use 2 pirmary keys. the standard user_id key exists but i would also like to use another key for my links. i am not sure how to implement this. also i don''t want any auto incrementing of this second primary key that i would like to use for my relationships. if there is a good db, model, relationship tutorial out there i would love to know about it.
2008 May 05
1
Passing values selected with onchange remote_function
How do i pass the value selected from a drop down selection and then extract it in rjs <% select("what", "hello", @selection, {}, {:onchange => remote_function(:url => "test", :my_variable => "hello again") } ) %> thanks. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google
2008 Dec 12
5
Source patches from Apple
Hello Dovecot developers, Apple has made and tested significant changes to Dovecot v1.1 and now is ready to contribute them back to your open source project. The changes include: Scalability and performance: allow pop/imap mail processes to handle multiple clients larger listen queues Stability and maintenance: fix to allow cross-compilation workarounds for Mac OS X bugs a couple general
2008 Jun 06
3
[LLVMdev] StmtPrinter long double support.
Hello, I'm playing with llvm/clang and I have a problem when I try to use the -ast-print options for a file that uses long double. The Basic/Targets.cpp file defined the x86 (and x86_64) long double type as APFloat::x87DoubleExtended. Then, when the AST printer try to write a long double literal value (using VisitFloatingLiteral()), it call FloatingLiteral- >getValueAsDouble()
2008 Jun 06
0
[LLVMdev] StmtPrinter long double support.
On Jun 6, 2008, at 8:51 AM, Jean-Daniel Dupas wrote: > Hello, > > > I'm playing with llvm/clang and I have a problem when I try to use > the -ast-print options for a file that uses long double. > > The Basic/Targets.cpp file defined the x86 (and x86_64) long double > type as APFloat::x87DoubleExtended. > Then, when the AST printer try to write a long double
2008 Jun 06
2
[LLVMdev] Adding DenseMap::FindAndConstruct with a default value
> Assuming the default value is not a valid entry in your map (for instance, > if you're using pointers), you can do: > > Foo& entry = DenseMap[Key] > if (entry == DefaultValue) > entry = constructNewValue(); The problem here is that the DefaultValue is undefined. However, Chris suggested that the default value, ValueT(), is not undefined but simply zero. However, on
2008 Jun 05
2
Build count limit == 5 ?
I have been running 4 builds on my CC server for a while now without a problem. Now I''ve added a 5th, and the dashboard is acting very strangely. Before I started the builder for the new project (while I was editing the config files, etc), it showed up on the dashboard as expected, with ''builder down''. However, at the top of the list of project rows was a white gap,
2008 Jun 05
2
xhr :post giving wrong number of arguments on rails 2.1?
Getting a strange error. In a story I have the following step: When "I submit a search name" do xhr :post, ''/searches'', {:search => {:given_name => "bob", :family_name => "smith"}} end I am getting: ArgumentError: wrong number of arguments (4 for 3) stories/searching_story_spec.rb:45 in "I submit a search name" But I only
2008 Jun 06
1
Making sorting case insensitive
Hello, I''ve been trying to make sorting in ferret case insensitive without any luck. I''ve been searching the mailing list, the docs and nothing. Apparently setting the type option for the sort to string should do it, but it doesn''t. Does anyone know how to achieve this? Thanks. -- Efr?n D?az http://www.efrendiaz.com
2008 Jun 06
3
GenericDirCtrl problem
I am having a problem getting any event to happen when I activate a selection on GenericDirCtrl i.e. double click on it. Could anyone help me out. thanks in advance. Joe Attachments: http://www.ruby-forum.com/attachment/2123/Random.rb -- Posted via http://www.ruby-forum.com/.
2008 Jun 06
0
[LLVMdev] Adding DenseMap::FindAndConstruct with a default value
On Fri, Jun 6, 2008 at 12:27 AM, Matthijs Kooijman <matthijs at stdin.nl> wrote: >> Assuming the default value is not a valid entry in your map (for instance, >> if you're using pointers), you can do: >> >> Foo& entry = DenseMap[Key] >> if (entry == DefaultValue) >> entry = constructNewValue(); > The problem here is that the DefaultValue
2008 Jun 06
2
[LLVMdev] [patch] add support for PIC on linux x86-64
Hello, Rafael > With this patch I was able to bootstrap gcc in linux x86-64 with > shared libraries enabled :-) Awesome! But... -ENOPATCH :( -- With best regards, Anton Korobeynikov. Faculty of Mathematics & Mechanics, Saint Petersburg State University.
2008 Jun 06
2
new to linux, question about wine..
I'm brand new to linux and want to install wine, I have Ubuntu 7.04 at the moment. I would like to know which Linux version I would need to install wine. I think I can figure it out once wine is installed, however, I can't make sense of the directions on the website. I have downloaded the newest version one wine but don't know how to actually use it or anything. Please help, It is very
2008 Jun 06
3
difference between OSS and ALSA when playing CS:S...why?
Hey, can someone explain me why CS:S is slower when I use ALSA instead of OSS? (with ALSA I've ca. 20-40 fps, with OSS I've 60-120 fps) But why?
2008 Jun 06
3
usb thumbdrive
I have a bootable usb thumbdrive now... three partions, msdos for syslinux booting, ext3 and swap. How can I grab my QEMU installed centos 4 image and put it on the ext3 /dev/sdc2 partition on my thumbdrive? THanks, Jerry
2008 Jun 05
2
CVE-2008-1105
Hello list! Just wanted to confirm whether this CVE affects the 3.0.4 version of Samba.. The samba.org website claims "This security advisory is applicable to all Samba 3.0.x releases to date" Yet the actual CVE [1] has "Versions: Samba 3.0.0 - 3.0.29 (inclusive)" The CVE suggests that the version 3.0.4 would not be affected, my confused! Thanks in advance, Derek [1]
2008 Jun 06
1
rsync daemon not answering
Hi everyone. I have a problem: I was running rsync --daemon on a Ubuntu 6.10 linux without problems. I used it to sync our company intranet from a Windows host through deltacopy. Then I migrated my system to new hardware and installed Ubuntu 7.10 on it. I run rsync --daemon with the same rsyncd.conf file and it?s not listening to any requests. I?m trying to sync the same directories from the
2008 Jun 05
0
[LLVMdev] Adding DenseMap::FindAndConstruct with a default value
Assuming the default value is not a valid entry in your map (for instance, if you're using pointers), you can do: Foo& entry = DenseMap[Key] if (entry == DefaultValue) entry = constructNewValue(); ... // Use entry --Owen On Jun 5, 2008, at 7:49 AM, Matthijs Kooijman wrote: > Hi All, > > I've been fiddling around with a DenseMap to store cached copies of > some
2008 Jun 04
2
Handling exceptions
Is there a convention for handling exceptions within BackgrounDRb workers? For example, I have a worker which does some asynchronous data processing (*not* a scheduled worker) based on some things in the database. However, if an exception is raised within that worker, then the process for that worker is killed off. Ideally I would want that worker to just silently fail and be optimistic that it