search for: address1

Displaying 20 results from an estimated 51 matches for "address1".

Did you mean: address
2009 Apr 05
2
Prohibit removing INBOX
...omething or is it really wanted by dovecot this way? My MUA (Evolution) says: > Cannot delete folder "INBOX/test". > Because "IMAP command failed: Permission denied". It unsubscribes the folder but it not able to remove it. Logs: dovecot: 2009-04-05 13:21:22 Info: IMAP(address1 at domain1.tld): acl vfile: reading file /etc/dovecot/acls//.DEFAULT dovecot: 2009-04-05 13:21:22 Info: IMAP(address1 at domain1.tld): acl vfile: reading file /var/mail/domain1.tld/address1/mail/dovecot-acl dovecot: 2009-04-05 13:21:22 Info: IMAP(address1 at domain1.tld): acl vfile: reading f...
2015 Sep 08
3
Multiple vacation
...39;m using Dovecot 2.2.9 and I'm having problems configuring multiple vacation actions. The problem is that I'd like to have two different senders and two different messages, selecting the correct case by the recipient email address. I mean, if someone writes me to my email address "to-address1 at example.com" I'd like to answer from "from-address1 at example.com" with the message "TEST 1". If someone writes me to my email address "to-address2 at example.com" I'd like to answer from "from-address2 at example.com" with the message "...
2006 Mar 26
2
Shared Columns in an STI
I have a an STI table which acts_as_tree, that has a large number of classes/types. My common fields are: id parent_id name description with 4 more text fields, I could cover most of my classes if I could redefine the name of the field like this. text1 AS address1 text2 AS address2 text3 AS zipcode For one class and text 1 AS model_number text2 AS vendor Is there a construct that will allow me to do this? Thanks -------------- next part -------------- An HTML attachment was scrubbed... URL: http://wrath.rubyonrails.org/pipermail/rails/attachments/200603...
2015 Sep 08
0
Multiple vacation
...and I'm having problems configuring multiple > vacation actions. > The problem is that I'd like to have two different senders and two > different messages, selecting the correct case by the recipient email > address. > I mean, if someone writes me to my email address "to-address1 at example.com" > I'd like to answer from "from-address1 at example.com" with the message "TEST > 1". > If someone writes me to my email address "to-address2 at example.com" I'd like > to answer from "from-address2 at example.com" wit...
2006 Jul 14
2
RESTful thinking - Need some guidance.
...9;s geocoding service using HTTP. Here''s the code I have so far: require ''open-uri'' require ''rexml/document'' include REXML url=''http://maps.google.com/maps/geo?'' address = ''q=1600 Amphitheatre Parkway Mountin View,CA'' address1 = URI.escape(address) googleoutput = ''&output=xml'' googlekey = ''&key=mykey'' result=URI(url+address1+googleoutput+googlekey ).read doc = Document.new result r=doc.elements["/Response/Point"] @googlresult = r.attributes["coordinates"]...
2006 Jun 01
3
more questions: human_name
One more question: Is there some way to set the human_name of a column? e.g.: human_name for column address1 shouldn''t be Address1 but "Address, line 1". If not, should I make a hash with my custom names? Best regards, -- ---------------------------------------------------------------------- Yannick Majoros http://www.inma.ucl.ac.be/~majoros Informaticien UCL/INMA-MEMA 4, avenue G...
2006 Oct 13
3
Validation errors in has_one/belongs_to relationships.
...mpt to save it with invalid data. Why does qi.save! return true below? It''s like it didn''t try to save the insured object. In script/console I see: >> ins = Insured.new => #<Insured:0x37345e0 @new_record=true, @attributes={"city"=>"", "address1"=>"" , "name"=>"", "updated_at"=>nil, "address2"=>nil, "zip_code"=>"", "dba_name"=>ni l, "quote_input_id"=>nil, "created_at"=>nil, "state"=>""}&gt...
2008 Mar 19
2
Stub / Mock - A little guidance?
...Info object and copies its attributes onto the User''s attributes (Ignore the clunky design... that''s just how it has to be). The User''s instance method looks like so: class User def update_billing_info(billing_info) unless self.has_billing_address? self.bill_to_address1 = billing_info.address1 self.bill_to_address2 = billing_info.address2 self.bill_to_address3 = billing_info.address3 self.bill_to_city = billing_info.city self.bill_to_country_code = billing_info.country_code self.b...
2005 Oct 12
4
Validating 2 related models at once not working
...ress. Validation for Customer works fine but not for the Address. Class Customer < ActiveRecord::Base has_one :address validates_presence_of :login, :password, :email validates_associated :address end Class Address < ActiveRecord::Base belongs_to :customer validates_presence_of :address1, :city, :state, :zip end With the code below the validation simply doesn''t work and the address object doesn''t get saved if all the required fields are empty. def signup @customer = Customer.new(params[:customer]) @address = Address.new(params[:customer]) if @custome...
2005 Dec 01
0
problem with options_from_collection_for_select() need id not name
...arams[:geotag_id] else @geotag_id=params[:geotag][:id].blank? ? -1:params[:geotag][:id] end else @geotag_id = -1 end i use this @geotags = Geotag.find(:all, :conditions =>[''firm_id = ? and client_id = ? '', firm_id, client_id]) @geotag_options = @geotags.collect {|g| [g.address1 + ", " + g.address2 + ", " +g.floor + ", " + g.city ,g.id]} <%= select("geotag", "id", @geotag_options) %><br/> <select name="geotag[id]"> <option value="%">All</option> <option value="1&qu...
2005 Dec 19
6
how to do security??
hey, i have maded some security in my website based on http://www.chaconforcongress.com/accounts/login Here they work with users, roles and persmission, and they check it like this, user.has_permission(permission). I have extended this to: users and groups with roles and permissions. With permissions like "view records","edit records","delete records",... def
2006 Jul 19
5
Model Validation - with a twist
...okstore][:address] + " " + params[:bookstore][:city] + ", " + params[:bookstore][:state] + " " + params[:bookstore][:zipcode] address2 = ''q='' + addresscheck url=''http://maps.google.com/maps/geo?'' address = address2 address1 = URI.escape(address) googleoutput = ''&output=xml'' googlekey = ''&key=mykey'' result=URI(url+address1+googleoutput+googlekey ).read doc = Document.new(result.to_s) root = doc.root retstatus = root.elements[''/kml/Response/Stat...
2006 Nov 04
0
Check_box woes
...dress_id, {}, @address.id, nil %></dd> <dt><label for="marketing_address_id">Marketing address?:</label></dt> <dd><%= u.check_box :marketing_address_id, {}, @address.id, nil %></dd> <% end %> <dt><label for="address1">Street address:</label></dt> <dd><%= f.text_field :address1, :size => "30" %></dd> <dt><label for="address2">Street address (ctd):</label></dt> <dd><%= f.text_field :address2, :size => "30&...
2006 Jun 16
0
Strange problem with ActionMailer
...ate_root @body["signup_path"] =signup_path @body["merchant_name"] = merchant.name @body["merchant_support_email"] = merchant.signup_confirmation_from @body["name"] = affiliate.name @body["email"] = affiliate.email @body["address1"] = affiliate.address1 @body["address2"] = affiliate.address2 @body["city"] = affiliate.city @body["state"] = affiliate.state @body["zip"] = affiliate.zip @body["country"] = affiliate.country @body["phone"] = a...
2006 Jun 21
0
Possible bug in actionmailer
....template_root @body["signup_path"] =signup_path @body["merchant_name"] = merchant.name @body["merchant_support_email"] = merchant.signup_confirmation_from @body["name"] = affiliate.name @body["email"] = affiliate.email @body["address1"] = affiliate.address1 @body["address2"] = affiliate.address2 @body["city"] = affiliate.city @body["state"] = affiliate.state @body["zip"] = affiliate.zip @body["country"] = affiliate.country @body["phone"] = affilia...
2006 May 19
2
1 Form for Model containing another Model??
Hi, I can have a Person model with a "has_one :address_email" association, then do the following in my controller: @person = Person.new @person.address_email = AddressEmail.new But, when I have 1 form for "Person" in my view I can''t bind fields in the @person.address_email object with text_field or text_field_tag helpers without getting a "undefined local
2005 Dec 22
0
conditions on model
...s end end if first == false text += " ) " end end #getting the clients records depending on the given paramaters and paginate it @client_pages, @clients = paginate :client, :conditions => [''firm_id = ? and name like ? and '' + ''address1 like ? and zip like ? and city like ? and country like ? and deleted like ? ''+ text, @firm_id, "%#{@name}%", "%#{@address1}%", "%#{@zip}%", "%#{@city}%", "%#{@country}%",0] , :order_by => "name ASC", :per_page => 10 the...
2005 Dec 23
1
pagination problem
...#getting the callerid records depending on the given paramaters and paginate it @callerid_pages = Paginator.new self, CallerId.count, 10, @params[''page''] @caller_ids = CallerId.find(:all, :conditions =>["geotags.firm_id = ? ", @firm_id], :order => " geotags.address1 ASC", :include => [:geotag], :limit=>@callerid_pages.items_per_page, :offset=>@callerid_pages.current.offset) How come i get extra next and previous tags, with no records diplays when i count the next and previous tags, i get 4 pages, this could be the 32 records. How can i change th...
2009 Dec 22
1
single host with two different ports
How does one specify two different ports in the same host file? When lapops are hardwired versus when mobile on a totally different lan. address0 71.17.72.27 address1 192.168.2.27 port0 22755 port1 655
2010 Oct 06
0
Error customization problem.
...ls class User < ActiveRecord::Base has_many :addresses, :as =>:addressee, :dependent => :destroy accepts_nested_attributes_for :addresses, :allow_destroy => true end class Address < ActiveRecord::Base belongs_to :addressee, :polymorphic => true validates_presence_of :address1, :maximum => 50,:message => "Address1 cannot be blank." validates_presence_of :city,:message => "City cannot be blank." validates_presence_of :state,:message => "State cannot be blank." validates_presence_of :zipcode,:message => "Zip Code c...