similar to: runtime smtp settings

Displaying 20 results from an estimated 100000 matches similar to: "runtime smtp settings"

2008 Apr 01
2
Rails Mail ISSUE
Hi, I have the following configuration in the development.rb defined for sending mail thorugh rails. The same works on a local machine but it does not work on the server. I get a timeout error : execution expired. Can anyone tell me whats wrong. config.action_mailer.delivery_method = :smtp #these options are only needed if you choose smtp delivery config.action_mailer.smtp_settings = {
2007 Jun 10
1
SMTP settings for sending email?
I know there have been several posts about sending emails via ActionMailer, so I''m not trying to add to them. I understand the process of sending emails on the RoR side of things, but I have no real knowledge of SMTP settings. When I configure my "environment.rb" file, I don''t know what information to input. I understand the port number, user_name, password, and
2009 Jan 08
4
SMTP settings for action mailer
with rails 2.2.2 action mailer requires a valid ssl certificate i have a question about routing my smtp settings for my postfix are now ActionMailer::Base.smtp_settings = { :address => "smtp.mydomain.com", :port => 25, :domain => "mydomain.com", :authentication => :plain, :user_name => "mydomain_mailer-3Q2Tfjf0mexWk0Htik3J/w@public.gmane.org",
2008 Nov 29
2
SMTP Mailer is KILLING me
Folks, the first person to figure this one out will make my day. Let''s just say I''ve tried everything for the past few hours, and I''ve become frustrated to the point of forum-posting. So...ready? Here goes... I keep getting this error: "553 This SMTP server requires authorisation. The password you''ve entered is incorrect" ->
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
2007 Jun 11
1
ActionMailer + ISP SMTP
Hi I''m new here, and pretty much new on the rails. I''m trying to set up my application to send emails (needed for salted hash login) but i keep getting errors. i''m sure port 25 is not blocked since i''m able to send mails through PHP scripts. my smtp settings in config/enviroment.rb are: # Include your app''s configuration here:
2008 Mar 31
2
Hosted SMTP Server Recommendation?
Can anyone with a deployed Rails app recommend a reliable hosted SMTP server that they use? I know that Gmail will let me send up to 500 emails/day, but I have an app that will need to send thousands of (legitimate, non-spam) email per day. I''ve heard that it isn''t terribly difficult to set up my own mail server, but we''re a small company, and as such, we need as small
2006 Dec 28
1
ActionMailer/SMTP: Net::SMTPSyntaxError when message body contains only a 'dot'
FYI: I don''t think this is a very well know. It seems that, on some operating systems, ActionMailer/SMTP crashes when it sends an email with only a ''.'' (aka a ''dot'' or a ''period''). Specifically, you get Net::SMTPSyntaxError (502 Error: command not implemented): Environment Details: $ uname -a Linux private1 2.6.15-26-server #1 SMP
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
2009 Apr 13
5
Ruby 1.8.7 + Rails 2.3.2 + TLS = Where's the documentation?
After spending a few hours reading dozens of blogs and tutorials I am still stumped. Numerous sites mention ruby 1.8.7 and rails 2.3 supporting TLS out of the box. However, I can not find any documentation on setting this up to send emails correctly. Furthermore, after attempting to send emails using Gmail and TLS i get the following error: 530 5.7.0 Must issue a STARTTLS command first.
2007 Dec 28
11
LIKE clause in rails
Hello, I am trying to achieve a search functionality in the following manner i have an table called people which has first_name,last_name,etc... After the user form to search people is submitted i get the params hash as params[:persons]={"first_name"=> "%John%","last_name"=>"%Stevens%"} NOTE : I have changed the params hash to include the %. Now
2008 Nov 21
1
mongrel problems
Hi, I am using mongrel on win2k. after i start mongrel only one engine handles all the request so the requests are served serially. How can i run multiple instances of mongrel so that requests are directed to the mongrel instance which is not busy. Another thing is that sometimes if the request takes long then mongrel does not time out the request.(i am using mongrel on windows) . As a result
2008 Jun 04
2
div and loop help
Hello, I want to display a effect.slidedown in a table. I have a table called contactnotes. <table> <%@contactnotes.each do |contact|%> <tr> <td><%= link_to(@person.first_name, "#", html_options={:onclick => "Effect.SlideDown(''show_details_of_contact_note''); return false;"})%></td> </tr> ... <tr> <div
2008 Apr 09
2
how to use actionmailer use gmail smtp????
how to use actionmailer use gmail???? --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this group, send email to
2013 Jun 24
0
NTLM Authentication for Postfix SMTP clients
I'm trying to get NTLM authentication working with Dovecot to authenticate Postfix SMTP clients. I can authenticate postfix smtp clients using the plain text login mechanism through winbind. However, using the NTLM mechanism gives me an error in my maillog that says: "dovecot: auth: winbind(?,10.20.2.0): user not authenticated: NT_STATUS_UNSUCCESSFUL". At this point,
2020 Oct 15
2
how to set smtp-client -> submission_relay_host for IPv4 only?
In dovecot conf, for submission relay, I've config'd submission_relay_host = lan.example.com submission_relay_port = 465 hostname -- not IP -- must be used, to inform relay for cert verification match. Here, host lan.example.com lan.example.com has address 10.0.1.47 lan.example.com has IPv6 address fd80:25:01::47 The receiving smtp relay listens only on IPv4 -- no
2013 Jun 21
0
Getting NTLM authentication for Postfix SMTP clients to work
I'm trying to get NTLM authentication working with Dovecot to authenticate Postfix SMTP clients. I can authenticate postfix smtp clients using the plain text login mechanism through winbind. However, using the NTLM mechanism gives me an error in my maillog that says: "dovecot: auth: winbind(?,10.20.2.0): user not authenticated: NT_STATUS_UNSUCCESSFUL". At this point, I'm
2006 Nov 27
2
changing activerecord associations at runtime
Is there any way to change the associations of a model at runtime, like before running a specific query? Chris --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org To unsubscribe from this
2013 Jun 14
2
Testing SMTP AUTH
Ive configured Postfix to use Dovecot for SMTP AUTH. I tried to test it but when I send the AUTH LOGIN command I get a response saying that AUTH method is not supported/implemented. How to test then? -- A -- Aj.
2020 Oct 16
0
how to set smtp-client -> submission_relay_host for IPv4 only?
> On 16/10/2020 00:52 PGNet Dev <pgnet.dev at gmail.com> wrote: > > > On 10/15/20 2:02 PM, jeremy ardley wrote: > >> how/where do I configure (just) the dovecot smtp-client -> submission_relay_host to only connect IPv4? > > > > It appears your host has A and AAAA records in your DNS. The clients will try IPV6 first if they see an AAAA record. > >