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?
> 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?ActionMailer::Base.raise_delivery_errors = false ...get that into the environment you''re working with and those errors will be kept quiet. -- David Heinemeier Hansson, http://www.basecamphq.com/ -- Web-based Project Management http://www.rubyonrails.org/ -- Web-application framework for Ruby http://macromates.com/ -- TextMate: Code and markup editor (OS X) http://www.loudthinking.com/ -- Broadcasting Brain
Thanks. A lot easier than I thought it was going to be. On Dec 24, 2004, at 12:44 PM, David Heinemeier Hansson wrote:>> 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? > > ActionMailer::Base.raise_delivery_errors = false > > ...get that into the environment you''re working with and those errors > will be kept quiet. > -- > David Heinemeier Hansson, > http://www.basecamphq.com/ -- Web-based Project Management > http://www.rubyonrails.org/ -- Web-application framework for Ruby > http://macromates.com/ -- TextMate: Code and markup editor (OS X) > http://www.loudthinking.com/ -- Broadcasting Brain > > _______________________________________________ > Rails mailing list > Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org > http://lists.rubyonrails.org/mailman/listinfo/rails >