Displaying 20 results from an estimated 600 matches similar to: "Best way to implement syntax sugar?"
2020 Jan 21
2
imap panic: file array.c: line 10 (array_idx_modifiable_i)
Hello,
I just migrated a few dovecot IMAP mailbox (Maildir format) from a Dovecot 2.1.7 (Debian 7) mailbox server to a Dovecot 2.3.4 (Debian 10) mailbox server and one particular mailbox does not work properly and generates the following error log entries:
Jan 21 09:39:21 Panic: imap(EMAIL_ADDRESS)<7741><UTsrWKKcasoAAAAAAAAAAAAAAAAAAAAB>: file array.c: line 10
2020 Jan 27
3
imap panic: file array.c: line 10 (array_idx_modifiable_i)
Hello,
Does anyone one have any idea? Aki maybe?
Regards,
Mabi
??????? Original Message ???????
On Wednesday, January 22, 2020 11:37 AM, mabi <mabi at protonmail.ch> wrote:
> Hello,
>
> Are there any chances that I could fix this issue by running a "doveadm force-rsync" (https://wiki2.dovecot.org/Tools/Doveadm/ForceResync) on this problematic mailbox?
>
> Best
2006 Jan 30
5
Action Mailer woes
Hi gang,
Im having my first stab at ActionMailer and not having any luck. Perhaps
someone could help me out.
I generated a a mailer called ItemMailer - its purpose is to take some
information that I''ve already gathered in a ToDo list form and to mail
it out to the person who is nominated for the task
In environment.rb I have;
ActionMailer::Base.server_settings = {
:address =>
2006 Feb 22
15
Fixtures and Relationships
In my daily development, I migrate back and forth between versions, and
often do: rake load_fixtures...
... in order to populate my development database with fun data.
Now, with any HABTM relationship, there are failures, as there is no way to
say "which" fixtures to load first.
Within an actual functional or unit test case, you could simply load them in
the proper order, but
2006 Mar 14
4
validates_confirmation_of has stopped working
Hi Railers,
I''m past considering myself a noob in Rails land - I think what I''m up against
here is more of a bug or an anomaly that I''m unaware of (or that has changed
in a recent version).
I had a fully working validates_confirmation_of :email_address field in my app
- was one of the first things I set up, extremely simple, been working for a
long time.
Then one
2007 Feb 01
6
Using a nonstandard foreign key
Hopefully this is an interesting question.
I have a "user" table with a field "email_address". I would like the
part of "email_address" after the ''@'' to be a foreign key to a
"companies" table populated by a companies that are clients.
Any pointers on how to do this in rails?
--~--~---------~--~----~------------~-------~--~----~
You
2006 May 19
2
Problem with joins and overlapping field names
Hi,
I have the following code:
@conversation_pages,
@conversations = paginate(:conversations,
:per_page => 20,
:joins => ''LEFT JOIN messages on
messages.conversation_id = conversations.id ''+
''LEFT JOIN email_addresses on
2006 Oct 24
1
converting from courier questions
I currently run postfix and courier on my mail servers with squirrelmail.
The problem with courier is it seems to run so slow. The webmail takes
forever to load if you have many mails. I have this set up in virtual
domains with all longin and path info in an mysql database. I just joined
the list and DID google before asking, hope this isn't a common question.
With courier it looks for a
2006 Nov 04
1
ActionMailer Sending Two text/plain Parts
Hello ~
I have a working ActionMailer Action that takes the template to use as
an argument so I have one action that handles multiple emails. The
email sends just fine, and the correct email templates are used, but
ActionMailer is throwing in its own text/plain section in addition to
the one I specify. Does anyone have any ideas on why this might be
occuring, when I am specificially specifying
2006 Apr 14
1
Validating Existing Models
I''ve got a user object which has quite a few attributes mapped to the
database. As of right now I''ve got some validations in the model like:
validates_presence_of :password, :message => "You must specify a valid
password."
validates_confirmation_of :password, :message => "Password doesn''t match
the confirmation."
validates_presence_of
2005 Dec 12
2
How to use arbitrary relationships in Activerecord
How can I ask ActiveRecord to make it''s "has_many" code to work on some
arbitrary relationship between two tables? ie neither field is a primary key
The situation is that I am writing a Postfix management application and
one of the tables to manage is the "alias" table. My primary key in the
"mailbox" table is "id", but the alias table is just
2006 Jul 27
2
Creating multiple objects from form data
I''m in the process of creating a sign up form for an online application.
The form collects account info, company info, and then info for an
administrative user.
The method looks like this:
def create
@account = Account.create!(params[:account])
@company = @account.companies.create!(params[:company])
@user = @company.users.create!(params[:user])
end
However, this inevitably fails
2006 Jan 31
4
A dumb question on extracting a value from a hash
Hi,
I have the following code fragment;
@comm_type = Communication.find_by_sql(''select id from
communication_types where upper(description) = "EMAIL"'')
Which results in
>> @comm_type
=> [#<Communication:0x39a0f60 @attributes={"id"=>"4"}>]
But when I try to test an ActiveREcord against this it doesn''t work;
2007 Jun 24
6
I only want one type of model returned from a multi_search
I am trying to use acts_as_ferret''s multi_search to search across
multiple models, but i only want it to return one type of model.
for example i have a page that lists out people. on this page it shows
email addresses and phone numbers. I want to be able to search by any
fields directly from the person model and search the fields from the
email_address and phone_number models, but I only
2008 Mar 27
6
Installing Postfix/Dovecot
I have just installed CentOS 5.1 on my home server and I am trying to
set a mail server.
I have diligently followed the instructions on the Wiki - How To on the
CentOS website (http://wiki.centos.org/HowTos/postfix). However I cannot
send internal email (I haven't yet tried externally).
Do you have any suggestions on what to check? To test it I used two
normail user: giulio and federica.
2006 Feb 21
1
Custom forms and fieldWithErrors tags
Hi,
(probably) A newbie questions:
I have a form where a user can choose an email address, but there are only
some choices for the domain, so I wrote a helper where the local part of the
email is a text field and the domains is a dropdown list, like:
Select Email: [ my_name ] @ <domain.com>
..which I defined as a helper:
def email_form(tagname, domain_list)
2008 Jan 11
5
Missing methods
We have a custom implementation of the Mother Object idea. It''s inside
of a module, basically like this:
module Factory
%w(account friendship person invitation message asset email_address
birth).each do |klass|
eval <<-EOF
def self.create_#{klass}(attributes = {})
default_attributes = valid_#{klass}_attributes
#{klass.camelize}.create!
2007 Feb 07
2
mongrel_in_a_tunnel
Hi list:
I started to make a quick GemPlugin command [ssl::start] that sets up
an stunnel before calling the normal [start] command.
so
$ mongrel_rails ssl:start
will do everything that start normally does and configure/setup an
stunnel.
The question...
Obviously this plugin will require stunnel to be installed. What do
you think is the best move:
1) nothing, just require that people
2006 Nov 01
3
active_record_base_without_table plugin - Easily use models without tables
Hi all,
Here''s another little plugin I wrote to use AR models without tables. It''s
dead simple, just extend from ActiveRecord::BaseWithoutTable instead of
ActiveRecord::Base:
class Contact < ActiveRecord::BaseWithoutTable
column :name, :string
column :email_address, :string
column :message, :text
validates_presence_of :name, :email_address, :message
end
2018 Apr 26
2
Re: how xml generated
Thanks for your reply
what i want to know is that why there are many devices in $domain.xml, actully , i choose nothing in virt-manager?
so, Do i need to look at qemuDomainDefineXMLFlags()?
hours ago, i thought it's qemuDomainCreateWithFlags.
--
Have a good day
> -----原始邮件-----
> 发件人: Michal Privoznik <mprivozn@redhat.com>
> 发送时间: 2018年4月26日 星期四
> 收件人: "李卓瑶"