diff options
author | Guilhem Moulin <guilhem@fripost.org> | 2014-04-17 02:27:51 +0200 |
---|---|---|
committer | Guilhem Moulin <guilhem@fripost.org> | 2015-06-07 02:51:46 +0200 |
commit | 3d4b17515fc21dbb218873b23ff9272ca9474e8e (patch) | |
tree | 4d7122f7a4371b460b28596fd168bfd6b520e890 | |
parent | c2bfdc087c0e5934c3b6836683da20afdb59998b (diff) |
typo
-rw-r--r-- | roles/webmail/tasks/roundcube.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/roles/webmail/tasks/roundcube.yml b/roles/webmail/tasks/roundcube.yml index 2d8a8b9..8e48208 100644 --- a/roles/webmail/tasks/roundcube.yml +++ b/roles/webmail/tasks/roundcube.yml @@ -15,7 +15,7 @@ - name: Configure Roundcube lineinfile: dest=/etc/roundcube/main.inc.php - "regexp=^\s*\$rcmail_config\['{{ item.var }}']\s*=" + "regexp=^\\s*\\$rcmail_config\\['{{ item.var }}'\\]\\s*=" "line=$rcmail_config['{{ item.var }}'] = {{ item.value }};" owner=root group=www-data mode=0640 @@ -28,8 +28,8 @@ - { var: imap_cache, value: "null" } - { var: message_cache, value: "null" } # SMTP - - { var: smtp_server, value: "localhost" } - - { var: smtp_port, value: "2580" } + - { var: smtp_server, value: "'localhost'" } + - { var: smtp_port, value: "2580" } # System - { var: force_https, value: "TRUE" } - { var: login_autocomplete, value: "2" } |