diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2010-08-08 18:47:21 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2010-08-08 18:47:21 -0300 |
commit | 88d3e83a8be1f7562a135c9779b303341b76c250 (patch) | |
tree | 37ab73bdb5875d525eb687893167e944c62d906e | |
parent | 14578908360176f37b847f0c9bb90d6b6a358032 (diff) | |
download | puppet-mail-88d3e83a8be1f7562a135c9779b303341b76c250.tar.gz puppet-mail-88d3e83a8be1f7562a135c9779b303341b76c250.tar.bz2 |
Escaping ERB delimiters for dovecot.conf.erb
-rw-r--r-- | templates/dovecot/dovecot.conf.erb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/dovecot/dovecot.conf.erb b/templates/dovecot/dovecot.conf.erb index 0da5182..bf23127 100644 --- a/templates/dovecot/dovecot.conf.erb +++ b/templates/dovecot/dovecot.conf.erb @@ -181,10 +181,10 @@ ssl_key_file = /etc/ssl/private/cert.pem # Space-separated list of elements we want to log. The elements which have # a non-empty variable value are joined together to form a comma-separated # string. -#login_log_format_elements = user=<%u> method=%m rip=%r lip=%l %c +#login_log_format_elements = user=<%%u> method=%m rip=%r lip=%l %c # Dont log user IPs -login_log_format_elements = user=<%u> method=%m %c +login_log_format_elements = user=<%%u> method=%m %c # Login log format. %$ contains login_log_format_elements string, %s contains # the data we want to log. |