I'm just tryng the last commit 4eee7
but when I signup I get a Errno::ECONNREFUSED ( see
http://gist.github.com/339197
)
I tryed to add a config/initializers/smtp_gmail.rb file like this:
ActionMailer::Base.default_url_options[:host] = "IP-address-of-
myserver:3000"
ActionMailer::Base.smtp_settings = {
:address => "smtp.gmail.com",
:port => "587",
:authentication => :plain,
:enable_starttls_auto => true,
:user_name => "[email protected]",
:password => "my-passwd"
}
but this time I get a Net::SMTPFatalError :
Net::SMTPFatalError (555 5.5.2 Syntax error. 5sm1171283yxg.46):
/usr/lib/ruby/1.8/net/smtp.rb:930:in `check_response'
...
vendor/plugins/community_engine/app/models/user.rb:330:in
`deliver_signup_notification'
vendor/plugins/community_engine/app/controllers/users_controller.rb:
110:in `create'
...
...
Rendering /var/rails/communityengine/public/500.html (500 Internal
Server Error)
Both of them are on vendor/plugins/community_engine/app/models/user
line 330 and vendor/plugins/community_engine/app/controllers/
users_controller.rb line 110 but I cannot figure out what's wrong.
Any idea?
Thanks in advance
Luca
--
You received this message because you are subscribed to the Google Groups
"CommunityEngine" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/communityengine?hl=en.