It is possible to send HTTP headers with typoscript. In your case this would be:
config.additionalHeaders = HTTP/1.0 403 Forbidden
The only problem is that the execution of any following code needs to be stopped but typoscript does not offer an exit() function or similar. So the easiest way is to use a USER_INT function:
page = PAGE
//condition
[browser = msie]
//send HTTP 403 and exit
includeLibs.user_httpheaders = fileadmin/templates/php/user_httpheaders.php
page.1 = USER_INT
page.1.userFunc = user_httpheaders->user_main
[global]
Whereas the file user_httpheaders.php contains:
<?php
class user_httpheaders {
public function user_main() {
header('HTTP/1.0 403 Forbidden');
exit;
}
}
?>