Displaying 20 results from an estimated 10000 matches similar to: "Mikel's Mail OpenSSL::SSL::VERIFY_NONE"
2009 Dec 10
1
ActionMail Charset for email body
Hi Guys,
I succeeded in sending email with content-type big5. However, the
content of the email is still utf-8!
I''ve tried to call the
t(:my_sentence).encode(''big5'')
or my content, but there is
"invalid byte sequence in UTF-8"
errors in a lot of places starting from actionmailer/lib/utils.rb
(text.to_s.gsub(/\r\n?/, "\n"))
and it stop me from
2009 Oct 31
3
1.9 Compat and merging mail gem into ActionMailer
Hi all of both RoR Core and TMail.
You may know me better as the maintainer of TMail.
However, TMail has been a bit difficult to get working with Ruby 1.9,
so in the light of that, I sat down over the past few months and wrote
myself an all encompasing mail gem. Mail passes all of its hundreds
of specs equally well in Ruby 1.8.6, 1.8.7 and 1.9.1. Mail reads
every email in the TMail test suite
2009 Dec 30
3
Mail now in ActionMailer
OK everyone, so we finally have Mail merged into ActionMailer replacing out
TMail
This is for the 3.0 release, and not part of the 2.x tree.
I am the TMail maintainer and I decided this year to write a ruby email
handler, the Mail gem is my solution to this.
Mail takes a very object oriented approach to email. It conforms to RFCs as
closely as practical and parses the 0.5gb Trec and 2.5Gb
2009 Dec 30
3
Mail now in ActionMailer
OK everyone, so we finally have Mail merged into ActionMailer replacing out
TMail
This is for the 3.0 release, and not part of the 2.x tree.
I am the TMail maintainer and I decided this year to write a ruby email
handler, the Mail gem is my solution to this.
Mail takes a very object oriented approach to email. It conforms to RFCs as
closely as practical and parses the 0.5gb Trec and 2.5Gb
2013 Aug 29
4
Weird behaviour using ssl connection (OpenSSL::SSL::SSLError)
Hi guys
when I execute the piece of code bellow on RoR console it works fine:
url = URI.parse("https://us1.api.mailchimp.com/2.0/helper/ping")
request = Net::HTTP::Post.new(url.path)
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
http.verify_mode = OpenSSL::SSL::VERIFY_NONE
request.body = "{\"apikey\": \"myapikey\"}"
response = http.start
2008 Dec 07
3
Cannot get tlsmail working; Want Gmail as SMTP
This is killing me, folks. I have reviewed numerous examples and tried
two different approaches to try and use Gmail (Google Apps account) as
my application''s SMTP. Every time, both on my slicehost server and local
dev machine (both Ubuntu Linux), my logs show no errors and I see a copy
of the mail in my logs. Yet I never received a test email. I''ve tried
both the
2008 Apr 11
7
Net::SMTPAuthenticationError
Hey guys,
I want to send an email via ROR and I have put this code at the very end
in the config/environment.rb file-
ActionMailer::Base.delivery_method = :smtp
ActionMailer::Base.perform_deliveries = true
ActionMailer::Base.logger = nil
ActionMailer::Base.raise_delivery_errors = true
ActionMailer::Base.smtp_settings = {
:address => "[my smtp server]",
:port => 25,
:domain
2006 Jul 05
1
TMail + Receing mail and extract attachments
Hi guys,
I have a hard time with action mailer and TMail, I always get the
following error...
My code:
<<
pop = Net::POP3.new(''pop.mydomain.com'')
pop.start(''xxx'', ''xxxxx'') # (1)
if pop.mails.empty?
puts ''No mail.''
else
i = 0
pop.each_mail do |m| # or "pop.mails.each
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,
2009 Jan 20
2
Do I need an SSL certificate to use ActionMailer 2.2.2?
Hi guys - I''m sorry to post about this issue again but after several
days I still cannot get ActionMailer working and I''ve been through
every tutorial/forum looking for the answer.
I know ActionMailer now requires SSL validation, does that mean I need
to purchase an SSL certificate before I can send emails?
If not, is there anyone out there who can help me set up my mailer to
2007 Mar 28
0
mail sending problem with ActionMailer
hi friends,
i have written settings in environment.rb as follews and have created
necessary models and views for sending mail but mails are not sent.
please help me.
environment.rb coding
~~~~~~~~~~~~~~~~~~~~~
ActionMailer::Base.delivery_method = :smtp
config.action_mailer.raise_delivery_errors = true
config.action_mailer.perform_deliveries = true
ActionMailer::Base.default_charset =
2006 Jan 08
2
EOF ERROR occurs when sending mail by ROR
I meet an EOF ERROR when I try to send a mail by Mailer class. This is
my error information. Could you please kindly tell me the reason for it
and how to deal with it. Thank you.
-------------------------------
EOFError in Order#confirm
End of file reached
RAILS_ROOT: ./script/../config/../
Application Trace | Framework Trace | Full Trace
c:/ruby/lib/ruby/1.8/net/protocol.rb:197:in
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
2005 Mar 02
2
form action in mail (actionmailer)
Hi everyone. : )
I meet problem when use form tag in actionmailer. (content-type is text/html, surely)
I want to use form action in actionmailer''s view (.rhtml) for some reason.
1. I use start_form_tag helper method as normally, but how I can ?
I did <%= start_form_tag :action => "http://myhostname/mycontroller/myaction" %> or
<%= start_form_tag :action =>
2007 Jun 16
1
BackgrounDRB and Sqlite3 / Autotest / Memory_test_fix Issues
Hello all.
I am using BackgrounDRB with "great happiness and joy", however, I am
running into one problem in that when I am running my tests with
autotest using Sqlite3 3.3.17 I am getting
"ActiveRecord::StatementInvalid" exception inside of the
sqlite_adapter.rb:360 which is checking for an empty structure.
I thought it might be the version of Sqlite, so I upgraded to 3.3.17
2008 Feb 19
2
sending mail [not the ActionMailer way?]
Hi folks,
I''ve recently stepped away from PHP web dev and I''m trying out ROR now.
I like it so far. But there''s something I cannot figure out on my own.
Searching on the API of ROR and Google about the possibilities of
sending emails with ROR only gave me the ActionMailer way of sending
mails. What I want to do is to send a mail where the body is submitted
by a user.
2005 Dec 30
1
does ActionMailer support SSL (TLS) smtp (like gmail)?
Hi
does ActionMailer support SSL (TLS) smtp (like gmail)?
has anyone got it to work with a gmail account?
thanks,
Szczepan
_______________________________________________
Rails mailing list
Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org
http://lists.rubyonrails.org/mailman/listinfo/rails
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
2006 Aug 29
0
Problem using Apple Mail with Dovecot (fwd)
---------- Forwarded message ----------
From: Bruce Arthur <barthur at apple.com>
To: dovecot at dovecot.org
Cc: Bruce Arthur <barthur at apple.com>
Date: Tue, 29 Aug 2006 09:04:35 -0700
Subject: Problem using Apple Mail with Dovecot
Server Configuration:
dovecot-1.0.rc6
Built with: ./configure --prefix=/usr/local
OS: FreeBSD 4.10-STABLE i386 running on ufs
Client configuration
Mac
2006 Jul 21
3
ActionMailer doesn''t send any mail
I''ve configured actionmailer following the documentation, adding to
environment.rb everything for using my mail account on yahoo using
deliver_* methods to send a mail.
I can see the mail in development.log and everything seems fine, but
no mails so far.
Is there a place where can I see what the server answered, or
something to look at to solve the problem ? I have no clue,