Hello,
Need help with this redirect with cisco instructions need to do this example in a live working mikrotik and don’t want to mess it up.

! This ACL matches SMTP packets originating from the customer subnet,
! and terminating on the Internet.
ip access-list ex OutboundSMTPList
permit tcp 192.168.0.0 0.0.0.255 any eq 25
! This ACL matches SMTP packets returning from the Internet.
ip access-list ex ReturningSMTPList
permit tcp any eq 25 192.168.0.0 0.0.0.255
! We attach an outbound route-map to the customer network-facing interface,
! and a returning route-map to the Internet-facing interface.
route-map OutboundSMTPRoute per 10
match ip add OutboundSMTPList
set ip next-hop 192.168.1.30
route-map ReturningSMTPRoute per 10
match ip add ReturningSMTPList
set ip next-hop 192.168.1.30
! Finally, we bind the outbound SMTP route to the customer interface,
! and the returning SMTP route to the Internet interface.
int f1/0
ip policy route-map OutboundSMTPRoute
int f1/1
ip policy route-map ReturningSMTPRoute
please help me translate.