Displaying 20 results from an estimated 10000 matches similar to: "Index corruption with 2.2.12 when moving a message"
2017 Jun 29
3
NOTIFY broken in 2.2.31?
Hi,
I just updated my Dovecot to the new build in Fedora 26, which is based
on 2.2.31. After I did that, Evolution (3.24.3) is no longer receiving
notifications about new mail in folders other than inbox (the same
version of Evo that worked fine against Dovecot 2.2.30.2). The only
folder that still gets notifications is inbox.
I see there have been changes to NOTIFY code in this release. What
2017 Jun 30
0
NOTIFY broken in 2.2.31?
On 29 Jun 2017, at 13.27, Bojan Smojver <bojan at rexursive.com> wrote:
>
> Hi,
>
> I just updated my Dovecot to the new build in Fedora 26, which is based
> on 2.2.31. After I did that, Evolution (3.24.3) is no longer receiving
> notifications about new mail in folders other than inbox (the same
> version of Evo that worked fine against Dovecot 2.2.30.2). The only
2014 Sep 20
0
Tripp-Lite USB constantlly disconnecting.
On Sep 19, 2014, at 7:48 PM, Shade Alabsa <shade34321 at gmail.com> wrote:
> So I was wondering does NUT do anything which would cause the USB to disconnect?
Not intentionally, no. The reconnection code is meant to clean up after these disconnection events, but it is something that isn't expected all that frequently.
> I didn't think so and I couldn't find anything yet
2014 Sep 22
1
Tripp-Lite USB constantlly disconnecting.
I am experiencing the same kind of disconnects, stale data on Eaton brand
UPS (Nova AVR). It keeps doing it probably due to Windows to detect it as
a new hardware, until Eaton software is installed. With Eaton Linux IPP
http://pqsoftware.eaton.com/explore/eng/ipp/default.htm?lang=en
this does not happen. Think what? It disables it somehow. But as soon as
you remove this proprietary driver, its
2014 Jul 07
0
[Bug 80865] [NVE7] Hard hang (GPC0/TPC0/MP trap: MULTIPLE_WARP_ERRORS MEM_OUT_OF_BOUNDS)
https://bugs.freedesktop.org/show_bug.cgi?id=80865
--- Comment #6 from tethys at gmail.com ---
localhost:~# rpm -qa | fgrep mesa
mesa-libGL-10.1.5-1.20140607.fc20.i686
mesa-libglapi-10.1.5-1.20140607.fc20.x86_64
mesa-filesystem-10.1.5-1.20140607.fc20.x86_64
mesa-libglapi-10.1.5-1.20140607.fc20.i686
mesa-libGLU-9.0.0-5.fc20.x86_64
mesa-libgbm-10.1.5-1.20140607.fc20.x86_64
2006 Feb 02
3
What is best way to show only records belonging to logged user?
Hi all,
What is best way to show only records belonging to logged user? I
understand that it is better to handle this in model and not controller.
I am thinking of intercepting find methods in model and add clause
something like "WHERE id_user = #{user_id}". I would like to hear if you
would do it likewise and if yes is it better to hack find_by_sql() or
find() method?
thanks in
2006 Jun 12
2
Pdf::Witer question
Does anyone knows how to embed Type1 font with PDF::Writer? I read
manual, tried everything but nothing seems to work (The font ''FontName''
contains a bad /BBox error on PDF).
any help or hint would be really appreciated,
Bojan Mihelac
--
Bojan Mihelac
Informatika Mihelac, Bojan Mihelac s.p. | www.informatikamihelac.com
-> tools, scripts, tricks from our code lab:
2006 Jun 20
1
Possible to check if form field is required?
Hi list,
is it possible to check if form field will be required when form is
submitted (through validates_presence_of or some other validates_*
method)? I could do this manually but it doesn''t seems to me very DRY.
For example, I would like to be able to dynamically add asterisk with
some helper method if city is required here:
City*: <%= text_field
2014 Oct 16
8
[Bug 85086] New: read/write faults leave machine unsuable
https://bugs.freedesktop.org/show_bug.cgi?id=85086
Bug ID: 85086
Summary: read/write faults leave machine unsuable
Product: xorg
Version: unspecified
Hardware: Other
OS: All
Status: NEW
Severity: normal
Priority: medium
Component: Driver/nouveau
Assignee: nouveau at
2006 Jul 21
1
Capistrano before and after tasks
I try to extend db:test:copy_structure task to poulate test database
with some existing data everytime i run it.
It seems that "after_" task is not called as should be:
> namespace :db do
> namespace :test do
> task :after_clone_structure do
> puts "after_clone_structure_to_test"
> end
> end
> end
Anyone know what I am doing wrong?
2006 Feb 02
0
What is best way to show only records belonging to loggeduser?
When I do this, I store the after a successful login. user''s id in
session. My controller actions pass that id into the find method
@tasks = Task.find_all_by_user_id(session[:user_id])
The session would have to be hacked in order for that to be broken. It''s
been secure enough for me.
-----Original Message-----
From: rails-bounces@lists.rubyonrails.org
2014 Sep 17
0
Compiling R on Fedora with threaded openblas
Dear List,
I am trying to build R on Fedora against a threaded openblas installed from
Fedora's yum repos, or alternatively swap out libRblas.so with a threaded
openblas built locally.
I have installed
$ yum list installed | grep openblas
openblas.x86_64 0.2.11-1.fc20 @updates
openblas-devel.x86_64 0.2.11-1.fc20 @updates
2014 Jun 15
2
Re: Fedora 19/20 new install :Unable to create vcpu cgroup
Hi
I have reinstall Fedora 20 from distrib. I have run yum update and yum
upgrade.
Running kernel is : 3.14.7-200.fc20.x86_64
Installed Libvirt packages are:
libvirt-client-1.1.3.5-2.fc20.x86_64
libvirt-daemon-1.1.3.5-2.fc20.x86_64
libvirt-daemon-config-network-1.1.3.5-2.fc20.x86_64
libvirt-daemon-driver-interface-1.1.3.5-2.fc20.x86_64
libvirt-daemon-driver-network-1.1.3.5-2.fc20.x86_64
2006 Jan 30
1
how to get column_for_attribute?
Hi all,
In the code below I don''t understand:
1. Why I have to prepend overriden method content_columns with "self."
to get it working?
2. Why column_for_attribute method is not working (no such method?) even
if SomeTable is subclass of ActiveRecord::Base which have public
column_for_attribute method?
> class SomeTable < ActiveRecord::Base
>
> def
2014 Sep 22
0
Tripp-Lite USB constantlly disconnecting.
Charles,
So I installed a minimal CentOS 6.5 installation on the Fedora box this
morning and I got the same issue.
Below are the kernel versions used.
CentOS 6.5 Minimal -
[root at nemo tmp]# uname -a
Linux nemo 2.6.32-431.el6.x86_64 #1 SMP Fri Nov 22 03:15:09 UTC 2013 x86_64
x86_64 x86_64 GNU/Linux
[root at nemo tmp]# rpm -qa | grep nut
nut-2.6.5-2.el6.x86_64
nut-client-2.6.5-2.el6.x86_64
2006 Jul 12
1
Is it possible to reload all ActiveRecord objects
Hi all,
I wander if it is possible to force reload of all ActiveRecord object''s
of some class that are already loaded, something like Book.reload_all? I
know that I am able to reload specific objects with reload method but I
would like to reload all that are currently in memory.
thanks in advance,
Bojan
--
Bojan Mihelac
Informatika Mihelac, Bojan Mihelac s.p. |
2006 Jun 29
2
Shared or VPS/dedicated hosting
Hi, I was wander if anyone can tell based on self expirience what would
be limitations for rails app regard shared hosting. For example on
PHP/MySql db driven app on shared hosting can handle 1000 users a day
without problems. I know there are many factors involved but would like
to hear your thoughts, when would you upgrade and if you would deploy
rails app on shared hosting at all.
thanks
2014 May 22
1
R 3.1 breaks RStudio in Fedora 20?
Hi All
I just installed R 3.1 on fedora 20 after removing rstudio
# rpm -q R
R-3.1.0-5.fc20.x86_64
after I removed rstudio (I don't use it that much but need it for teaching)
I tried to reinstall rstudio but its missing libRblas.so and libRlapack.so
dependencies
I'm guessed it would be OK to force it because lapack-devel and blas-devel
are installed so I tried
# rpm -ivh --no-deps
2006 Jul 26
7
RHTML in database?
Hi,
is it possible to store RHTML templates or partials in database?
thanks,
Bojan Mihelac
--
Bojan Mihelac
Informatika Mihelac, Bojan Mihelac s.p. | www.informatikamihelac.com
-> tools, scripts, tricks from our code lab: http://source.mihelac.org
2006 Jun 02
3
Advice, why value_before_type_cast in FormHelper?
I am wondering why is in creating text fields with form_helper used
value_before_type_cast instead of attribute value for field value?
I set rails enviroment so date fields are in european format
(dd.mm.yyyy) and would like to have same format in forms, but because of
value_before_type_cast is called, form fields are filled with
''yyyy-mm-dd'' or timestamp integer, etc.