search for: 9ikio1igcm

Displaying 9 results from an estimated 9 matches for "9ikio1igcm".

2006 Mar 05
5
DreamHost and ActionMailer
I''m getting ready to sign up with DreamHost, but my application is missing the ActionMailer features. First, can anyone provide some real code to send an email upon comment submission? Second, is it easy to setup ActionMailer on a DreamHost server? Thanks! -- Posted via http://www.ruby-forum.com/.
2008 Mar 13
0
mail problem and rails 2.0.2
...'' Please go through the following code if you can figure out something wrong. Do i need to change something for rails 2.0.2? My mailer model is as follows: class UserMailer < ActionMailer::Base def send_mail(person,textarea,subject) recipients person.email1 from "abc-9IKiO1iGCm/QT0dZR+AlfA@public.gmane.org" subject subject body textarea content_type "text/html" end end In the develeopment.rb i have the smtp settings as . . . # Check error if the mailer can''t send config.action_mailer.raise_delivery_errors = true #set delivery...
2008 Sep 04
1
actionmailer sends from commandline but not from web
...quot; ActionMailer::Base.delivery_method = :smtp ActionMailer::Base.smtp_settings = { :address => "smtp.domain.com", :port => "25", :domain => "domain.com" } class Emailer < ActionMailer::Base def test() recipients "me-9IKiO1iGCm/QT0dZR+AlfA@public.gmane.org" from "you-9IKiO1iGCm/QT0dZR+AlfA@public.gmane.org" subject "subject" body "body" end end Emailer.deliver_test() ------------------------- I''m running Apache 2.2, and this is what my ruby.conf fi...
2011 Dec 05
2
How to bypass a create record after validation wo error ?
I have a specific signup process to handle, and I am turning around the solution wo finding a clear validation ... a visitor fill in a User Registration form ( email /pwd /pwd confirmation ) I wrote a UserValidator class to check the uniqueness of the email field # if no user registered w this email, then no error , can proceed to create User.where(:email => self.email).empty? # no
2007 Jan 06
6
Exception notifier not working
I installed the exception notifier via: /script/plugin install -x exception_notification It resides in the vendor/exception_notification directory (as advertised). I''ve configured environment.rb with the following: ExceptionNotifier.exception_recipients = %w(blakemiller-uBzjpPW2m0pBDgjK7y7TUQ@public.gmane.org) ExceptionNotifier.sender_address = %("Application Error"
2007 Mar 13
1
imap and character enconding
...king the first steps. For instance, if I want to read my INBOX folder and list the messages: ------------------------------------------- CONTROLLER => def list_inbox imap = Net::IMAP.new(''xxx.xxx.xxx.xxx'') imap.authenticate(''LOGIN'', ''username-9IKiO1iGCm/QT0dZR+AlfA@public.gmane.org'', ''password'') imap.select(''INBOX'') @emails = [] imap.search(["ALL"]).each do |i| @emails << imap.fetch(i, "ENVELOPE")[0].attr["ENVELOPE"] end imap.disconnect end...
2009 Feb 10
0
ActionMailer getaddrinfo: Name or service not known..
...39;'s an error negotiating with the mail server. Here are the settings I''m using for SMTP delivery: config.action_mailer.smtp_settings = { :domain => ''domain.com'', :address => ''mail.domain.com'', :port => 25, :user_name => ''user-9IKiO1iGCm/QT0dZR+AlfA@public.gmane.org'', :password => ''passwd'', :authentication => :login } I''ve attempted setting domain to localhost/127.0.0.1 as google prescribes, but I''m still experiencing the issue. So I did a telnet session with the SMTP service and...
2007 Dec 11
1
501 Syntax: HELO hostname - Mail problem
Hello... I am encountering a problem sending emails from Windows using an extermal smtp server. When attempting to send out the email, the following error is returned: 501 Syntax: HELO hostname I have checked the format of the emails, and they are ok. It seems it''s choking right at the begging of the connection to the smtp server, when my computer needs to identify itself by sending
2010 Sep 09
4
Capistrano Deploy with SVN over SSH - Network connection closed unexpectedly
Hello all, i changed today from my local repository to a repository on a server. The repository now lies on the same server where my application is going to be deployed. Everything went fine create my repository on the server and checked out my working copy. After some changes on the code i wanted to deploy my application but it failed. The error is: "svn: Network connection closed