dhaval
2007-Dec-11 10:19 UTC
How to connect to a remote database through a rails application.
Hello guys, I am trying to figure out how can I connect to a remote database and retrieve information through a rails application. I did something like this but didnt work. I am running rails application on sqlite3 database in my local machine and I am trying to connect to a remote database which is a postgresql one. I put this code in my application controller----- def myprojects ActiveRecord::Base.establish_connection( :adapter => "postgresql", :database => "database name", :host => "192.168.10.21", :port => "5432", :username => "username", :password => "password" ) end people controller code----- before_filter :myprojects @items = Item.find(:all) view code....... <% @items.each do |item| %> <li><%= item.id %></li> <% end %> But this code doesnt work and it gives me error. Can any one help? --~--~---------~--~----~------------~-------~--~----~ 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 rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
harm
2007-Dec-11 14:25 UTC
Re: How to connect to a remote database through a rails application.
Why put code overwritting AR::B in your controller? I would create a model representing the external data and use the method establish_connection :foo. Where foo is defined in your database.yml file. On Dec 11, 11:19 am, dhaval <dhaval.deshpan...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> Hello guys, > I am trying to figure out how can I connect to a > remote database and retrieve information through a rails application. > I did something like this but didnt work. > I am running rails application on sqlite3 database in my local machine > and I am trying to connect to a remote database which is a postgresql > one. > I put this code in my application controller----- > > def myprojects > ActiveRecord::Base.establish_connection( > :adapter => "postgresql", > :database => "database name", > :host => "192.168.10.21", > :port => "5432", > :username => "username", > :password => "password" > ) > > end > people controller code----- > > before_filter :myprojects > @items = Item.find(:all) > > view code....... > <% @items.each do |item| %> > <li><%= item.id %></li> > <% end %> > > But this code doesnt work and it gives me error. > > Can any one help?--~--~---------~--~----~------------~-------~--~----~ 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 rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
dhaval
2007-Dec-12 04:55 UTC
Re: How to connect to a remote database through a rails application.
do you mean something like this...... model--- establish_connection :foo database.yml---- foo: adapter: postgresql database: "database name" host: "host name" port: "post number" username: "username" password: "password" On Dec 11, 7:25 pm, harm <harmaa...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> Why put code overwritting AR::B in your controller? > I would create a model representing the external data and use the > method establish_connection :foo. Where foo is defined in your > database.yml file. > > On Dec 11, 11:19 am, dhaval <dhaval.deshpan...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: > > > Hello guys, > > I am trying to figure out how can I connect to a > > remote database and retrieve information through a rails application. > > I did something like this but didnt work. > > I am running rails application on sqlite3 database in my local machine > > and I am trying to connect to a remote database which is a postgresql > > one. > > I put this code in my application controller----- > > > def myprojects > > ActiveRecord::Base.establish_connection( > > :adapter => "postgresql", > > :database => "database name", > > :host => "192.168.10.21", > > :port => "5432", > > :username => "username", > > :password => "password" > > ) > > > end > > people controller code----- > > > before_filter :myprojects > > @items = Item.find(:all) > > > view code....... > > <% @items.each do |item| %> > > <li><%= item.id %></li> > > <% end %> > > > But this code doesnt work and it gives me error. > > > Can any one help?--~--~---------~--~----~------------~-------~--~----~ 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 rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
dhaval
2007-Dec-12 05:26 UTC
Re: How to connect to a remote database through a rails application.
I tried this way but i am getting an error something like this...... Connection refused - connect(2) On Dec 12, 9:55 am, dhaval <dhaval.deshpan...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> do you mean something like this...... > model--- > establish_connection :foo > > database.yml---- > foo: > adapter: postgresql > database: "databasename" > host: "host name" > port: "post number" > username: "username" > password: "password" > > On Dec 11, 7:25 pm, harm <harmaa...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: > > > Why put code overwritting AR::B in your controller? > > I would create a model representing the external data and use the > > method establish_connection :foo. Where foo is defined in your > >database.yml file. > > > On Dec 11, 11:19 am, dhaval <dhaval.deshpan...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: > > > > Hello guys, > > > I am trying to figure out how can Iconnectto a > > >remotedatabaseand retrieve information through a rails application. > > > I did something like this but didnt work. > > > I am running rails application on sqlite3databasein my local machine > > > and I am trying toconnectto aremotedatabasewhich is a postgresql > > > one. > > > I put this code in my application controller----- > > > > def myprojects > > > ActiveRecord::Base.establish_connection( > > > :adapter => "postgresql", > > > :database=> "databasename", > > > :host => "192.168.10.21", > > > :port => "5432", > > > :username => "username", > > > :password => "password" > > > ) > > > > end > > > people controller code----- > > > > before_filter :myprojects > > > @items = Item.find(:all) > > > > view code....... > > > <% @items.each do |item| %> > > > <li><%= item.id %></li> > > > <% end %> > > > > But this code doesnt work and it gives me error. > > > > Can any one help?--~--~---------~--~----~------------~-------~--~----~ 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 rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Ryan Bigg
2007-Dec-12 05:27 UTC
Re: How to connect to a remote database through a rails application.
For yaml you don''t need to wrap the values in strings, yaml knows what the values are because they''re after a : database.yml is the way to go. On Dec 12, 2007 3:56 PM, dhaval <dhaval.deshpandey-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> > I tried this way but i am getting an error something like this...... > > Connection refused - connect(2) > > On Dec 12, 9:55 am, dhaval <dhaval.deshpan...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: > > do you mean something like this...... > > model--- > > establish_connection :foo > > > > database.yml---- > > foo: > > adapter: postgresql > > database: "databasename" > > host: "host name" > > port: "post number" > > username: "username" > > password: "password" > > > > On Dec 11, 7:25 pm, harm <harmaa...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: > > > > > Why put code overwritting AR::B in your controller? > > > I would create a model representing the external data and use the > > > method establish_connection :foo. Where foo is defined in your > > >database.yml file. > > > > > On Dec 11, 11:19 am, dhaval <dhaval.deshpan...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: > > > > > > Hello guys, > > > > I am trying to figure out how can Iconnectto a > > > >remotedatabaseand retrieve information through a rails application. > > > > I did something like this but didnt work. > > > > I am running rails application on sqlite3databasein my local machine > > > > and I am trying toconnectto aremotedatabasewhich is a postgresql > > > > one. > > > > I put this code in my application controller----- > > > > > > def myprojects > > > > ActiveRecord::Base.establish_connection( > > > > :adapter => "postgresql", > > > > :database=> "databasename", > > > > :host => "192.168.10.21", > > > > :port => "5432", > > > > :username => "username", > > > > :password => "password" > > > > ) > > > > > > end > > > > people controller code----- > > > > > > before_filter :myprojects > > > > @items = Item.find(:all) > > > > > > view code....... > > > > <% @items.each do |item| %> > > > > <li><%= item.id %></li> > > > > <% end %> > > > > > > But this code doesnt work and it gives me error. > > > > > > Can any one help? > > >-- Ryan Bigg http://www.frozenplague.net --~--~---------~--~----~------------~-------~--~----~ 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 rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Ryan Bigg
2007-Dec-12 05:28 UTC
Re: How to connect to a remote database through a rails application.
Also, postgresql might not be listening on all interfaces. On Dec 12, 2007 3:57 PM, Ryan Bigg <radarlistener-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> For yaml you don''t need to wrap the values in strings, yaml knows what the > values are because they''re after a : > > database.yml is the way to go. > > > On Dec 12, 2007 3:56 PM, dhaval < dhaval.deshpandey-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: > > > > > I tried this way but i am getting an error something like this...... > > > > Connection refused - connect(2) > > > > On Dec 12, 9:55 am, dhaval <dhaval.deshpan...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org > wrote: > > > do you mean something like this...... > > > model--- > > > establish_connection :foo > > > > > > database.yml---- > > > foo: > > > adapter: postgresql > > > database: "databasename" > > > host: "host name" > > > port: "post number" > > > username: "username" > > > password: "password" > > > > > > On Dec 11, 7:25 pm, harm < harmaa...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: > > > > > > > Why put code overwritting AR::B in your controller? > > > > I would create a model representing the external data and use the > > > > method establish_connection :foo. Where foo is defined in your > > > >database.yml file. > > > > > > > On Dec 11, 11:19 am, dhaval <dhaval.deshpan...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: > > > > > > > > Hello guys, > > > > > I am trying to figure out how can Iconnectto a > > > > >remotedatabaseand retrieve information through a rails application. > > > > > I did something like this but didnt work. > > > > > I am running rails application on sqlite3databasein my local > > machine > > > > > and I am trying toconnectto aremotedatabasewhich is a postgresql > > > > > one. > > > > > I put this code in my application controller----- > > > > > > > > def myprojects > > > > > ActiveRecord::Base.establish_connection( > > > > > :adapter => "postgresql", > > > > > :database=> "databasename", > > > > > :host => "192.168.10.21", > > > > > :port => "5432", > > > > > :username => "username", > > > > > :password => "password" > > > > > ) > > > > > > > > end > > > > > people controller code----- > > > > > > > > before_filter :myprojects > > > > > @items = Item.find(:all) > > > > > > > > view code....... > > > > > <% @items.each do |item| %> > > > > > <li><%= item.id %></li> > > > > > <% end %> > > > > > > > > But this code doesnt work and it gives me error. > > > > > > > > Can any one help? > > > > > > > > > -- > Ryan Bigg > http://www.frozenplague.net-- Ryan Bigg http://www.frozenplague.net --~--~---------~--~----~------------~-------~--~----~ 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 rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
Venu Vallayil
2007-Dec-12 16:28 UTC
Re: How to connect to a remote database through a rails appl
dhaval wrote:> Hello guys, > I am trying to figure out how can I connect to a > remote database and retrieve information through a rails application. > I did something like this but didnt work. > I am running rails application on sqlite3 database in my local machine > and I am trying to connect to a remote database which is a postgresql > one. > I put this code in my application controller----- > > def myprojects > ActiveRecord::Base.establish_connection( > :adapter => "postgresql", > :database => "database name", > :host => "192.168.10.21", > :port => "5432", > :username => "username", > :password => "password" > ) > > end > people controller code----- > > before_filter :myprojects > @items = Item.find(:all) > > view code....... > <% @items.each do |item| %> > <li><%= item.id %></li> > <% end %> > > > But this code doesnt work and it gives me error. > > Can any one help?Try editing your database.yml file and put lines similar to the one given below. The sample assumes you are connecting to a postgress database development: adapter: postgresql database: <name of your database> username: <user name to log on to your postgres db say: postgres > password: <password> host: <give the IP address of your remote database. eg. 192.168.1.1 > -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ 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 rubyonrails-talk-unsubscribe-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---
abhijit m.
2012-Sep-13 12:53 UTC
Re: How to connect to a mysql database through a rails application.
Hello Ir, please provide chaqnges in .yml file...for Mysql...'' I have cretaed MySql datbase and now i want to connect my MySql DB on rails... -- Posted via http://www.ruby-forum.com/. -- 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-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit https://groups.google.com/groups/opt_out.
keerthi priya
2012-Sep-13 13:14 UTC
Re: Re: How to connect to a mysql database through a rails application.
when you are trying to create a app just add these line -d mysql you will get the yml according to mysql and change the username and password according to your mysql password. On Thu, Sep 13, 2012 at 6:23 PM, abhijit m. <lists-fsXkhYbjdPsEEoCn2XhGlw@public.gmane.org> wrote:> Hello Ir, please provide chaqnges in .yml file...for Mysql...'' > I have cretaed MySql datbase and now i want to connect my MySql DB on > rails... > > -- > Posted via http://www.ruby-forum.com/. > > -- > 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-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > To unsubscribe from this group, send email to > rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > For more options, visit https://groups.google.com/groups/opt_out. > > >-- 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-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit https://groups.google.com/groups/opt_out.
Colin Law
2012-Sep-13 14:26 UTC
Re: Re: How to connect to a mysql database through a rails application.
On 13 September 2012 14:14, keerthi priya <emailtokeerthipriya-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> when you are trying to create a app just add these line -d mysql you will > get the yml according to mysql and change the username and password > according to your mysql password.If you have already created the app and want to change it to mysql then create a new app as Keerhi has suggested rails new test_app -d mysql then you can look at database.yml and see what is required. Colin> > > On Thu, Sep 13, 2012 at 6:23 PM, abhijit m. <lists-fsXkhYbjdPsEEoCn2XhGlw@public.gmane.org> wrote: >> >> Hello Ir, please provide chaqnges in .yml file...for Mysql...'' >> I have cretaed MySql datbase and now i want to connect my MySql DB on >> rails... >> >> -- >> Posted via http://www.ruby-forum.com/. >> >> -- >> 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-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >> To unsubscribe from this group, send email to >> rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >> For more options, visit https://groups.google.com/groups/opt_out. >> >> > > -- > 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-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > To unsubscribe from this group, send email to > rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > For more options, visit https://groups.google.com/groups/opt_out. > >-- 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-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit https://groups.google.com/groups/opt_out.
Walter Lee Davis
2012-Sep-13 14:52 UTC
Re: How to connect to a mysql database through a rails application.
On Sep 13, 2012, at 10:26 AM, Colin Law wrote:> On 13 September 2012 14:14, keerthi priya <emailtokeerthipriya-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: >> when you are trying to create a app just add these line -d mysql you will >> get the yml according to mysql and change the username and password >> according to your mysql password. > > If you have already created the app and want to change it to mysql > then create a new app as Keerhi has suggested > rails new test_app -d mysql > then you can look at database.yml and see what is required. > > ColinAlso look at the Gemfile in the new app to see the gem changes required. Walter> >> >> >> On Thu, Sep 13, 2012 at 6:23 PM, abhijit m. <lists-fsXkhYbjdPsEEoCn2XhGlw@public.gmane.org> wrote: >>> >>> Hello Ir, please provide chaqnges in .yml file...for Mysql...'' >>> I have cretaed MySql datbase and now i want to connect my MySql DB on >>> rails... >>> >>> -- >>> Posted via http://www.ruby-forum.com/. >>> >>> -- >>> 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-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >>> To unsubscribe from this group, send email to >>> rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >>> For more options, visit https://groups.google.com/groups/opt_out. >>> >>> >> >> -- >> 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-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >> To unsubscribe from this group, send email to >> rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >> For more options, visit https://groups.google.com/groups/opt_out. >> >> > > -- > 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-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > For more options, visit https://groups.google.com/groups/opt_out. > >-- 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-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit https://groups.google.com/groups/opt_out.
abhijit m.
2012-Sep-14 04:51 UTC
Re: Re: How to connect to a mysql database through a rails application.
keerthi priya wrote in post #1075820:> when you are trying to create a app just add these line -d mysql you > will > get the yml according to mysql and change the username and password > according to your mysql password.Thanks ...changing user n apssword is not issue...but it indirectly creating databse as appname_database...and it causing error..please provide Solution.. Thanks for your help... -- Posted via http://www.ruby-forum.com/. -- 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-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit https://groups.google.com/groups/opt_out.
Colin Law
2012-Sep-14 08:10 UTC
Re: Re: Re: How to connect to a mysql database through a rails application.
On 14 September 2012 05:51, abhijit m. <lists-fsXkhYbjdPsEEoCn2XhGlw@public.gmane.org> wrote:> keerthi priya wrote in post #1075820: >> when you are trying to create a app just add these line -d mysql you >> will >> get the yml according to mysql and change the username and password >> according to your mysql password. > > Thanks ...changing user n apssword is not issue...but it indirectly > creating databse as appname_database...and it causing error..please > provide Solution.. > Thanks for your help...I think you need to try to explain the problem again, it is not clear what your issue is. It might help if you post the full error message you are getting. Also post database.yml. Colin -- 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-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit https://groups.google.com/groups/opt_out.