similar to: Renaming IMAP folders does not affect children

Displaying 20 results from an estimated 300 matches similar to: "Renaming IMAP folders does not affect children"

2010 May 25
1
Convert Plugin dovecot2.0
There is a convert plugin for dovecot2.0 ? I did not find it in src or when i tried to load it! Thanks []'sf.rique
2011 Apr 02
4
help
Dear R Help group I need to run a command line script from within R session. I am not clear how i can acheive this. I tried shell and system function, but i am missing something critical.can someone provide help? My intention is to create a pdf file of a plot in R and then attach existing files from my system as attachment into the newly created pdf file. Any help would be greatly appreciated..
2010 Feb 02
2
Question about mbox_snarf and dovecot2.0
Hello, I'm running revision 10622:de9d6dae7fe5 on AIX 5.3 with some local mods for our inbox hash function. I'm having a problem doing a "select inbox" when I use the mbox_snarf plugin. When I run truss on the process I see the following stat calls: 614528: kread(9, " 1 s e l e c t i n b".., 4096) = 15 614528: statx("/gpfs/inbox/14/tstem38",
2011 Apr 19
5
Running mailfront under dovecot2.x service supervision
Hello, I'm trying to run mailfront SMTP (http://untroubled.org/mailfront/) under Dovecot 2.x process/service supervision My intention was to utilize the fact that dovecot2.x seems to have some kind of generic process/service supervision as well as builtin ssl support. But I cannot get the most simple generic service setup (without ssl) to work. Currently running dovecot 2.0.11 on FreeBSD
2012 May 17
1
Valid config for lda_mailbox_autosubscribe with dovecot 1.2?
Hi, Due to some reasons I've to support both dovecot 1.2 and dovecot 2.x, and I just found that the -s parameter I used to autosubscribe to sieve folders doesn't exist anymore in dovecot 2.x The problem arises because (AFAIK) in postfix's master.cf you can only specify one configuration, and I used to have this: dovecot unix - n n - - pipe
2010 Dec 10
2
dovecot 2.0 revision 12532:e030df616faf: problem with Snarf plugin
this command fails when the snarf plugin is enabled. 5 status inbox (UIDNEXT MESSAGES) with the error: Dec 10 13:57:57 tr27n12.aset.psu.edu dovecot: imap(tstem38): Panic: file index-transaction.c: line 71: assertion failed: (box->opened) If it isn't easy to reproduce, I'll spit out the config. thanks, Jonathan -------------- next part -------------- A non-text attachment was
2010 Nov 10
1
dovecot2.0+ldap auth problems
I'm using a config from dovecot 1.2 adapted to 2.0 After update config, and restart dovecot service: If I do a doveadm user user1 then it is found correctly. If I do a doveadm auth user1 then it is ask for the password user, and it's running correctly. But if I tray to login by telnet using IMAP then I get: . login user1 pass1 Connection closed by foreign host. I can see at logs
2006 Mar 25
2
acts_as_tree wierdness with children.count and children.size
i am making a category tree and i iterate over the category using my counter_cache however it would show a different number than what was actually being represetned in the tree. Here is an example cat.children = [cat2, cat3] puts cat.children.size 2 puts cat.children_count 2 cat4.parent_id = cat.id cat4.save puts cat.children.size
2006 Jul 20
9
Including children''s children?
a has many b''s b has many c''s results = A.find params[:id], :include => :b How do you also make sure the b''s include the c''s? Thanks for your help. Thank You, Ben Johnson E: bjohnson@contuitive.com O: 800-341-6826 M: 817-229-4258 -------------- next part -------------- An HTML attachment was scrubbed... URL:
2006 Aug 11
0
serializing / deserializing active records with children
What is the best approach to serialize / deserialize full blown active record objects with multiple child objects (one-to-many relations). YAML::load(), YAML::dump() almost work :) -> loaded object has children (I see them in breakpoint session: "puts parent"), but when I am accessing children (e.g: "puts parent.emails") array becomes cleared - I guess rails are trying to
2006 Jul 17
1
Updating multiple children from one page
Hello, I have a model called invoice and one called lineitem. An invoice has_many lineitems, and an lineitem belongs to an invoice. I have a model method that calculates the price of a lineitem, and one that calculates all lineitems in an invoice. I want to have an edit page that lists all the invoices lineitems and their calculated prices, with a text field for a person to change the
2006 Jun 03
2
Parent listing children.
My database is set up as Categories > Things associated by category_id and has_many and belongs_to. How would I go about listing all the categories and under each Category is it''s children? Is there an easy rails way to do this - preferably without using acts as tree? Any help is appreciated - thanks! -- Posted via http://www.ruby-forum.com/.
2006 Jun 12
2
Getting 1 from children of has_many, Noob question...
The ''Agile Web'' book says that you can iterate over a list of children as so: order.line-items.each do |li| etc... This is fine when you need then all consecuitvely, but I need to pull the first one for the top of the page and still list all at the bottom. So, the question is: How do I reference the first item (child) directly? Thanks Lance F. Squire -- Posted via
2006 Jun 22
1
Active Record question, orphaned children
I have a Deck object and a Card object with their corresponding tables. (You know a deck of cards.) When I destory a Deck it leaves orphaned cards in the database. Is there a way to set up the objects with ActiveRecord so that when a parent object is destoryed the child objects are destroyed as well? My code below. class Deck < ActiveRecord::Base has_many :cards end class Card <
2006 May 30
0
Order parents when displaying children question
Hi, I want to show a series of links belonging to a specific category. The links will be shown grouped by category, but how can I alter the order of the categories? I have a field in my database called position with the order in which they should appear. MODELS: class Category < ActiveRecord::Base has_many :links validates_uniqueness_of :category, :message => "already
2006 Apr 15
0
parent.children not updated (has_many)
Hi guys! class Parent < ActiveRecord::Base has_many :children end class Child < ActiveRecord::Base belongs_to :parent end I do: parent = Parent.find(1, :include => :children) parent.children.find(3).update_attribute(''name'', ''Tom'') (or parent.children.find(3).name = ''Tom'') parent.children.find(3).name => ''old
2006 Apr 26
3
q: master/child where children are added with ajax
Say my user creates an Article and an Article has_many :links. The edit form for article contains an "add link" link_to_remote that brings up an edit line for links for further reading. The problem is that there is that the Article is not yet saved, so it''s unclear how to accumulate or remove these items. I''m sure others have implemented similar things. Hints? Thanks
2006 Feb 24
0
preloading children of child rows
I am working on a rails app to serve as the admin app for an existing java webapp. For this reason, I am constrained by the current database structure, which does not by any means conform to the ideal rails defaults. Anyway, I have the following models: class Provider... belongs_to: login class Login... has_and_belongs_to_many :demographics class Demograpics... ... Everyone has a
2006 Jan 25
0
acts_as_tree validation on parent.children.create
Validation does not appear to execute on a call to "parent.children.create". Anyone know if this is intentional, or am I doing something wacky? Thanks. -Theo
2006 Jan 31
2
How can I overwrite the parent.children.push(child) Method?
Hi all I want to overwrite the push method (which is an alias of <<, the same as concat) of collections, and there I want to test if :uniq is set to true in the relationship. If so, the method should check if the passed object is already related to the parent, or not (only then it will be added). But I just can''t find the original code of this method, so I could overwrite