Displaying 20 results from an estimated 51 matches for "raise_delivery_error".
Did you mean:
raise_delivery_errors
2013 Nov 13
2
Cannot receive from specified address Unauthenticated senders not allowed
...131111011431/lib/tasks/env_setup.rake:116:in
`block (2 levels) in <top (required)>''
Tasks: TOP => maintenance:last_2_days_orders
(See full trace by running task with --trace)
My production.rb is:
config.action_mailer.delivery_method = :smtp
config.action_mailer.raise_delivery_errors = true
config.force_ssl = false
config.i18n.fallbacks = true
config.active_support.deprecation = :notify
config.action_mailer.default_url_options = {:host =>''xyz.com''}
config.action_mailer.smtp_settings = {
:address => ''smtp.sendgri...
2009 Dec 05
7
ActionMailer dont function with JRuby?
I have application that i send email normal with native ruby.
But when i execute the sample application with jruby, it dont send email and
dont get error.
What can be wrong?
--
Atenciosamente,
Paulo Coutinho.
Blog: www.prsolucoes.com/blog
Site: www.prsolucoes.com
Msn: paulo-QE/7f1ia5mR0ubjbjo6WXg@public.gmane.org
--
You received this message because you are subscribed to the Google Groups
2006 Oct 31
3
ActionMailer how to check mail sent
OS X 10.4.8
I am sending an email via Actionmailer
settings are written correctly in environment.rb
ActionMailer::Base.delivery_method = :smtp
ActionMailer::Base.raise_delivery_errors = :true
ActionMailer::Base.perform_deliveries = :true
ActionMailer::Base.default_charset = "utf-8"
ActionMailer::Base.server_settings = {
:address => "mail.mydomain.com",
:port => 25,
:domain => "mydomain.com",
:user_name => "myusername",...
2008 May 03
2
backgroundrb / actionmailer / sendmail
...sender:
:send_review_emails:
:trigger_args:
:start: <%= Time.now + 30.seconds %>
:end: <%= Time.now + 10.years %>
:repeat_interval: <%= 20.seconds %>
environment.rb configuration:
ActionMailer::Base.delivery_method = :sendmail
ActionMailer::Base.raise_delivery_errors = true
ActionMailer::Base.default_content_type = ''text/html''
Now, when doing the request from rails itself, no problem, I get the email
instantly. Here''s the controller code:
class MiscellanyController < ApplicationController
def test_email
mail = Notifier.cr...
2006 Mar 14
2
ActionMailer not working correctly
...= {
:address => "mail.mydomain.com",
:port => 25,
:domain => ''mydomain.com'',
:user_name => "blah",
:password => "password",
:authentication => :login
}
ActionMailer::Base.perform_deliveries = true
ActionMailer::Base.raise_delivery_errors = true
ActionMailer::Base.default_charset = "utf-8"
And the error from production.log:
Net::SMTPAuthenticationError (535 Error: authentication failed):
/usr/lib/ruby/1.8/net/smtp.rb:586:in ''auth login''
I''ve checked the user/pass and they are correct.
--...
2004 Dec 24
2
Net::STMP FatalError
I have a module that sends email to the members that have subscribed to
my site.
When it runs through and sends them all emails, it crashes with certain
emails with:
550 <email-x+rxnKfQbAxWk0Htik3J/w@public.gmane.org>: Recipient address rejected: User unknown in
virtual alias table
This is on the other end right? And even so, is there a way to suppress
it?
2009 Mar 17
1
ActionMailer works for gmail/yahoo, but not for other email addresses...HELP!
...ver through the
command line using
mail -s and that worked. Why doesn''t it work through my rails app?
here are my configuration settings (mostly default)
# Disable delivery errors, bad email addresses will be ignored
config.action_mailer.delivery_method = :smtp
config.action_mailer.raise_delivery_errors = true
config.action_mailer.perform_deliveries = true
config.action_mailer.default_charset = "utf-8"
config.action_mailer.smtp_settings = {
:address => "localhost",
:port => 25,
:domain => "my-app.com"
}
help please!
thanks
Tony
--~--~--...
2008 Oct 24
2
Verify that an email is sent?
Hi all
I''m trying to get my actionmailer to work. I''ve set the following params
in my environment.rb:
config.action_mailer.smtp_settings = {
:address => "mail.???.ch",
:port => 25,
:domain => "???.ch",
:authentication => :login,
:user_name => "???",
:password => "???"
}
2006 Mar 14
1
ActionMailer Error - Please Help!
...tings = {
:address => "mail.mydomain.com",
:domain => "mail.mydomain.com",
:port => 25,
:authentication => :login,
:user_name => "myuname",
:password => "mypwd" }
ActionMailer::Base.perform_deliveries = true
ActionMailer::Base.raise_delivery_errors = true
ActionMailer::Base.default_charset = "utf-8"
#model - notifier.rb
class Notifier < ActionMailer::Base
def comment_alert(post)
# Email header info MUST be added here
@recipients = "me@somewhere.com"
@from = "ryan@mydomain.com"
@subject = "New Co...
2010 Mar 04
5
has anybody made actionmailer work with rails 2.3.5?
Hi,
I have wasted few days and I''m not getting anywhere. I was trying to
follow tutorial on Rails Guides and this one:
http://www.tutorialspoint.com/ruby-on-rails/rails-send-email.htm .
All I need is to be able to send some text, nothing fancy. Why in
Rails it has to be so difficult? Why it can''t be so simple as in PHP?
Can anybody point me to some good simple tutorial,
2006 Apr 27
11
Action Mailer Error!!!
What does this mean?
Bad file descriptor - connect(2)
--
Posted via http://www.ruby-forum.com/.
2008 Apr 20
10
Actionmailer not working [no errors]
hi,
I have a little problem with actionmailer 2.0.2
The problem is that I am trying to send mails and development.log says
that everything is ok but I can''t find any mails in my mailbox.
I checked my sendmail with PHP function "mail()" - works nice.
/var/log/mail.log don''t drop any lines when sending mails with
actionmailer.
So in conclusion no errors and no way to
2009 Feb 26
1
Line breaks removed from ActionMailer template
...omes:
Line oneline two
Looking at development.log, it shows that the line breaks are there.
Indeed, of course my template has line breaks in it, separating lines
and paragraphs.
I''m on OS X 10.5.6, using sendmail. Settings inside config/
environments/develpment.rb:
config.action_mailer.raise_delivery_errors = true
config.action_mailer.delivery_method = :sendmail
config.action_mailer.sendmail_settings = { :location => ''/usr/sbin/
sendmail'', :arguments => ''-i -t''}
config.action_mailer.perform_deliveries = true
I''m writing the template in TextMate and...
2006 Jan 24
9
ActionMailer: Mail isn''t delivered
Hi all
I used the search for this, but I got an Application Error, so sorry for
the newbie question.
I have tried to send an e-mail using ActionMailer. I have to following
config (environment.rb):
ActionMailer::Base.server_settings = {
:address => "mail.psyguide.org",
:port => 25,
:domain => "mail.psyguide.org",
#:authentication => :login,
#:user_name
2007 Mar 24
6
Rails Development Log
Hi,
I am using Ruby+Rails with Mongrel.
Is there any way to disable logging so that everytime I start rails
(mongrel_rails start), it doesn''t automatically start logging info to
development.log
Thanks!
--
Posted via http://www.ruby-forum.com/.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby on
2012 Feb 14
6
SMTP problem.
...particular and I don''t understand how to fix it.
Once I create the user I get the following error message:
Net::SMTPAuthenticationError (535-5.7.1 Username and Password not
accepted.
How do I set a username and password?
I have the following in my development.rb:
config.action_mailer.raise_delivery_errors = false
# config.action_mailer.delivery_method = :smtp
config.action_mailer.smtp_settings = {
:address => "smtphost.aber.ac.uk",
:port => 25,
:domain => "Christopher-PC"
}
ADMIN_EMAIL="...
2005 Nov 14
6
ActionMailer - Sent but no mail?
Hi,
I am attempting to use ActionMailer to send out an email (SMTP) and am having an issue. The log files show that the email is sent, but the email is not making it to my inbox.
I have followed the documentation both on the Wiki and in the AWD book. I''m not sure which setting I have incorrect and need some pointers.
:authentication - should this be set to true, or
2009 Apr 13
5
Ruby 1.8.7 + Rails 2.3.2 + TLS = Where's the documentation?
...do_start''
/usr/local/lib/ruby/1.8/net/smtp.rb:525:in `start''
Can anyone point me in the right direction?!
Thanks in advance!
I have the following configuration in my
config/environments/development.rb:
# Don''t care if the mailer can''t send
config.action_mailer.raise_delivery_errors = true
# set delivery method to :smtp, :sendmail or :test
config.action_mailer.delivery_method = :smtp
# these options are only needed if you choose smtp delivery
config.action_mailer.smtp_settings = {
:address => ''smtp.gmail.com'',
:enable_starttls_auto => true...
2009 Jul 28
6
how to set smpt server for our rails applicaion
hi i am using technoweenie-restful-authentication plug-in for
authentication in my application. i want to send a activation link to
the user''s mail-id.
for that i need to set the smpt server for our rails application, for
that i added the follwing code in config/environment.rb file
ActionMailer::Base.delivery_method:smpt
ActionMailer::Base.smpt_settings = {
:address =>
2006 Aug 15
0
ActionMailer
...= :smtp
ActionMailer::Base.server_settings = {
:address => "auth.smtp.1and1.co.uk",
:port => 25,
:user_name => "myusername",
:password => "mypassword",
:authentication => :login
}
ActionMailer::Base.perform_deliveries = true
ActionMailer::Base.raise_delivery_errors = true
ActionMailer::Base.default_charset = "utf-8"
ActionMailer::Base.default_content_type = "text/html" # default:
"text/plain"
ActionMailer::Base.default_mime_version = "1.0"
ActionMailer::Base.default_implicit_parts_order = [ "text/html",
"...