Skip to content
Snippets Groups Projects
Commit de6c111a authored by Raphaël Pinson's avatar Raphaël Pinson
Browse files

Fix unscoped variables in templates/master.cf.common.erb

parent 6b995331
No related branches found
No related tags found
No related merge requests found
...@@ -98,7 +98,16 @@ describe 'postfix' do ...@@ -98,7 +98,16 @@ describe 'postfix' do
it { it {
should contain_file('/etc/postfix/master.cf').without('seltype').with_content( should contain_file('/etc/postfix/master.cf').without('seltype').with_content(
/smtp inet n - - - - smtpd/ /smtp inet n - - - - smtpd/
) } ).with_content(
/amavis unix/
).with_content(
/dovecot.*\n.* user=bar:bar /
).with_content(
/schleuder/
).with_content(
/sympa/
)
}
it { should contain_file('/etc/postfix/main.cf').without('seltype') } it { should contain_file('/etc/postfix/main.cf').without('seltype') }
it { should contain_postfix__config('myorigin') } it { should contain_postfix__config('myorigin') }
......
<% if has_variable?("postfix_use_amavisd") and postfix_use_amavisd == 'yes' %> <% if scope.lookupvar('postfix::use_amavisd') == 'yes' %>
amavis unix - - - - 2 smtp amavis unix - - - - 2 smtp
-o smtp_data_done_timeout=1200 -o smtp_data_done_timeout=1200
-o smtp_send_xforward_command=yes -o smtp_send_xforward_command=yes
...@@ -17,15 +17,15 @@ amavis unix - - - - 2 smtp ...@@ -17,15 +17,15 @@ amavis unix - - - - 2 smtp
-o receive_override_options=no_unknown_recipient_checks,no_header_body_checks -o receive_override_options=no_unknown_recipient_checks,no_header_body_checks
-o smtpd_bind_address=127.0.0.1 -o smtpd_bind_address=127.0.0.1
<% end -%> <% end -%>
<% if has_variable?("postfix_use_dovecot_lda") and postfix_use_dovecot_lda == 'yes' %> <% if scope.lookupvar('postfix::use_dovecot_lda') == 'yes' %>
dovecot unix - n n - - pipe dovecot unix - n n - - pipe
flags=DRhu user=<%= postfix_mail_user %>:<%= postfix_mail_user %> argv=/usr/lib/dovecot/deliver -d ${recipient} flags=DRhu user=<%= scope.lookupvar('postfix::mail_user') %>:<%= scope.lookupvar('postfix::mail_user') %> argv=/usr/lib/dovecot/deliver -d ${recipient}
<% end -%> <% end -%>
<% if has_variable?("postfix_use_schleuder") and postfix_use_schleuder == 'yes' %> <% if scope.lookupvar('postfix::use_schleuder') == 'yes' %>
schleuder unix - n n - - pipe schleuder unix - n n - - pipe
flags=DRhu user=schleuder argv=/usr/bin/schleuder ${user} flags=DRhu user=schleuder argv=/usr/bin/schleuder ${user}
<% end -%> <% end -%>
<% if has_variable?("postfix_use_sympa") and postfix_use_sympa == 'yes' %> <% if scope.lookupvar('postfix::use_sympa') == 'yes' %>
sympa unix - n n - - pipe sympa unix - n n - - pipe
flags=R user=sympa argv=/usr/lib/sympa/bin/queue ${recipient} flags=R user=sympa argv=/usr/lib/sympa/bin/queue ${recipient}
sympabounce unix - n n - - pipe sympabounce unix - n n - - pipe
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment