search for: poel

Displaying 6 results from an estimated 6 matches for "poel".

Did you mean: noel
2023 Jan 19
2
Why does doveadm always run doveconf?
On 18/01/2023 22:01, Bert Van de Poel wrote: > I was quite surprised to find that doveadm requires > quite broad privileges (in my case root privileges) to function > properly. This is, I think, a "feature" that was introduced in 2.3. It can make life difficult. There's a message somewhere on the mailing li...
2002 Aug 12
0
Unable to open new log file /usr/local/samba/var/log.smbd: Too many open files
...gain. In my attempt to reproduce the problem I wrote a small windows application that opens many files. Even when it had opened 3200 files there was no problem. So there is no problem opening lots of files simultaneously. I really don't have a clue anymore. Who can help? Regards, Simon Poels -------------- next part -------------- HTML attachment scrubbed and removed
2010 Jun 23
3
Custom default form builder in Rails 3
Hello everyone, I am trying to set a default custom form builder. I have defined my form builder class in "lib/mymodule/mybuilder.rb" as: module Mymodule class Mybuilder < ActionView::Helpers::FormBuilder ...... end end Then I am trying to use this custom class in application.rb as config.action_view.default_form_builder = Mymodule::Mybuilder. But I get "Uninitialized
2023 Jan 18
1
Why does doveadm always run doveconf?
Dear fellow Dovecot users, I've recently been aiding in the fixing up of the old dovecot_stats_ munin plugin. Currently, it still parses the output of doveadm oldstats, as it is quite an old script. Regardless of any feelings we may all have about oldstats, I was quite surprised to find that doveadm requires quite broad privileges (in my case root privileges) to function properly. It
2010 Sep 09
0
Rails3: jquery-rails gem sets 'config.action_view.javascript_expansions' but cannot be overriden in 'config/application.rb'
Hello, I''ve created a new Rails3 app and I''m using jQuery instead of prototype. Gemfile: gem ''jquery-rails'' in my config/application.rb I want do the following: config/application.rb if Rails.env.production? config.action_view.javascript_expansions[:defaults] = %w(jquery.min rails application) else
2010 Jun 24
0
Rails3: render_to_string of a .html.erb when request is a json request raises MissingTemplate error
I''ve the following situation (which actually works in Rails 2.3.8 and this is a result of the migration of our app to rails3): I have a partial which is rendered a few times (imagine tr''s in a table). On the clientside there''s a script that does a json request for a specific row (jQuery + ajax dataType: ''json'' and type: ''POST'') In