help with multiple production evvironmnets & devise config

hi, i have 2 (A&B) production env files, set/loaded by passenger.

here an excerpt from A:

  config.active_record.dump_schema_after_migration = false   config.app_domain = 'fooooooo.com'   config.action_mailer.default_url_options = { host: 'https://www.fooooooo.com' }   config.action_mailer.asset_host = 'https://www.fooooooo.com' config.action_mailer.default_options = {from: 'info@fooooooo.com'}

here an excerpt from B:

  config.active_record.dump_schema_after_migration = false   config.app_domain = 'blablabla.com'   config.action_mailer.default_url_options = { host: 'https://www.blablabla.com' }   config.action_mailer.asset_host = 'https://www.blablabla.com' config.action_mailer.default_options = {from: 'info@blablabla.com'}

but when i do a password reset from within devise mailer using B, the links are still set to

i am not overidding anything anymore. all stock code

thx