Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
immerda
Puppet Modules
firewall
Commits
aba5030d
Commit
aba5030d
authored
Jan 15, 2021
by
mh
Browse files
add some mail rules
parent
8d001067
Changes
4
Hide whitespace changes
Inline
Side-by-side
manifests/rules/out/imap.pp
0 → 100644
View file @
aba5030d
# outgoing imap
class
firewall::rules::out::imap
{
include
firewall
if
$firewall::use_nftables
{
include
nftables::rules::out::imap
}
else
{
include
shorewall::rules::out::imap
}
}
manifests/rules/out/pop3.pp
0 → 100644
View file @
aba5030d
# outgoing pop3
class
firewall::rules::out::pop3
{
include
firewall
if
$firewall::use_nftables
{
include
nftables::rules::out::pop3
}
else
{
include
shorewall::rules::out::pop3
}
}
manifests/rules/out/smtp.pp
View file @
aba5030d
# outgoing smtp
class
firewall::rules::out::smtp
{
include
firewall
if
$firewall::use_nftables
{
...
...
manifests/rules/out/smtp_client.pp
0 → 100644
View file @
aba5030d
# outgoing smtp client
class
firewall::rules::out::smtp_client
{
include
firewall
if
$firewall::use_nftables
{
include
nftables::rules::out::smtp_client
}
else
{
include
shorewall::rules::out::smtps
include
shorewall::rules::out::smtp_submit
}
}
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment