As it seems it's not possible to insert PHP code as in settings.yml, but maybe there is a way to at least access sfConfig vars somehow?
Further to Maerlyn's answer, I tried this:
sfConfig::set('orgID', 23435);
test:
url: /test/:orgID
param: { module: default, action: index, orgID: %APP_orgID% }
I expected that url_for('@test) will generate an URI like that /test/23435 but I only get /test. This doesn't appear to work, any ideas why?