blob: 48183f7446ee0727e3ec2f3b21d4d736873aa361 (
plain)
1
2
3
4
5
6
7
8
9
10
|
class shorewall::rules::smtps {
shorewall::rule {'net-me-smtps-tcp':
source => 'net',
destination => '$FW',
proto => 'tcp',
destinationport => '465',
order => 240,
action => 'ACCEPT';
}
}
|