I''m developing on my laptop and then syncing with a development server. The development server (a FreeBSD box) is properly sending out emails in the third step of our application''s sign-up form; however, on my laptop, I''m getting the following error: Errno::ECONNREFUSED in Signup#signup_step_three Connection refused - connect(2) app/controllers/signup_controller.rb:123:in `signup_step_three'' ./script/server:48 I tried changing "mailserver=-YES-" in my hostconfig file, rebooted, but I''m getting the same result. Using gmail''s smtp server doesn''t seem to be an option either--the SSL encryption doesn''t seem to be supported by actionmailer. Does anyone have any pointers as to how to fix this for OS X? Duane Johnson (canadaduane) _______________________________________________ Rails mailing list Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org http://lists.rubyonrails.org/mailman/listinfo/rails
> I''m developing on my laptop and then syncing with a development server. The > development server (a FreeBSD box) is properly sending out emails in the > third step of our application''s sign-up form; however, on my laptop, I''m > getting the following error: > > Errno::ECONNREFUSED in Signup#signup_step_three > Connection refused - connect(2) > > app/controllers/signup_controller.rb:123:in > `signup_step_three'' > ./script/server:48 > > I tried changing "mailserver=-YES-" in my hostconfig file, rebooted, but I''m > getting the same result. Using gmail''s smtp server doesn''t seem to be an > option either--the SSL encryption doesn''t seem to be supported by > actionmailer. Does anyone have any pointers as to how to fix this for OS X?Postfix Enabler works great for me. Just $10: http://www.cutedgesystems.com/software/PostfixEnabler/ -- rick http://techno-weenie.net
At a command prompt: sudo postfix start And you should be good to go. - Jamis On Jun 9, 2005, at 1:27 PM, Duane Johnson wrote:> I''m developing on my laptop and then syncing with a development > server. The development server (a FreeBSD box) is properly sending > out emails in the third step of our application''s sign-up form; > however, on my laptop, I''m getting the following error: > > Errno::ECONNREFUSED in Signup#signup_step_three > > Connection refused - connect(2) > > app/controllers/signup_controller.rb:123:in `signup_step_three'' > ./script/server:48 > > I tried changing "mailserver=-YES-" in my hostconfig file, > rebooted, but I''m getting the same result. Using gmail''s smtp > server doesn''t seem to be an option either--the SSL encryption > doesn''t seem to be supported by actionmailer. Does anyone have any > pointers as to how to fix this for OS X? > > Duane Johnson > (canadaduane) > > > _______________________________________________ > Rails mailing list > Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org > http://lists.rubyonrails.org/mailman/listinfo/rails >