Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions manifests/server.pp
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@
$smtp_tls_note_starttls_offer = false,
$smtp_tls_mandatory_ciphers = undef,
$smtpd_tls_ask_ccert = false,
$smtpd_command_args = [],
$tls_append_default_CA = false,
$smtp_sasl_tls = false,
$smtp_use_tls = false,
Expand Down
6 changes: 6 additions & 0 deletions templates/master.cf-el5.erb
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ smtp inet n - n - - smtpd
<% @smtp_content_filter.each do |content_filter| -%>
-o content_filter=<%= content_filter %>
<% end -%>
<% @smtpd_command_args.each do |command_arg| -%>
-o <%= command_arg %>
<% end -%>
<% if @submission -%>
submission inet n - n - - smtpd
-o smtpd_enforce_tls=<%= @submission_smtpd_enforce_tls %>
Expand All @@ -24,6 +27,9 @@ smtps inet n - n - - smtpd
<% @smtp_content_filter.each do |content_filter| -%>
-o content_filter=<%= content_filter %>
<% end -%>
<% @smtpd_command_args.each do |command_arg| -%>
-o <%= command_arg %>
<% end -%>
<% end -%>
#628 inet n - n - - qmqpd
pickup fifo n - n 60 1 pickup
Expand Down
6 changes: 6 additions & 0 deletions templates/master.cf.erb
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ smtpd pass - - n - - smtpd
<% @smtp_content_filter.each do |content_filter| -%>
-o content_filter=<%= content_filter %>
<% end -%>
<% @smtpd_command_args.each do |command_arg| -%>
-o <%= command_arg %>
<% end -%>
<% if @submission -%>
submission inet n - n - - smtpd
-o smtpd_tls_security_level=<%= @submission_smtpd_tls_security_level %>
Expand All @@ -35,6 +38,9 @@ smtps inet n - n - - smtpd
<% @smtps_content_filter.each do |content_filter| -%>
-o content_filter=<%= content_filter %>
<% end -%>
<% @smtpd_command_args.each do |command_arg| -%>
-o <%= command_arg %>
<% end -%>
<% end -%>
#628 inet n - n - - qmqpd
pickup fifo n - n 60 1 pickup
Expand Down