"ip nat inside source static 192.168.1.99 93.152.115.15"
with this static statement, all traffic including ipsec, will be natted and forwarded to 192.168.1.99.
instead of configuring static nat, static pat should be used.
e.g.
ip nat inside source static tcp 192.168.1.99 9100 93.152.115.15 9100
port 9100 is the default port for most printers. further, you may manipulate the port in order to achieve a slightly higher level of security.
e.g.
ip nat inside source static tcp 192.168.1.99 9100 93.152.115.15 9200
with this static pat statement, user from internet needs to configure the printer with port 9200. in other words, it may prevent a certain level of port scanning from intruders since port 9200 is not a common port to be scanned.