From: Tom Hughes Date: Mon, 24 Mar 2014 22:43:53 +0000 (+0000) Subject: Configure two mailboxes for civicrm X-Git-Url: https://git.openstreetmap.org/chef.git/commitdiff_plain/368b16382fa5378336e88b511baa35d522ff1bfa?hp=4c35cca55478f6c0f76b2620a8beb22e18fb2278 Configure two mailboxes for civicrm --- diff --git a/roles/crm.rb b/roles/crm.rb index 35776f050..032bc40a3 100644 --- a/roles/crm.rb +++ b/roles/crm.rb @@ -6,11 +6,20 @@ default_attributes( :exim => { :local_domains => [ "crm.osmfoundation.org" ], :routes => { - :crm => { - :comment => "crm.osmfoundation.org", + :crm_return => { + :comment => "return@crm.osmfoundation.org", :domains => [ "crm.osmfoundation.org" ], - :maildir => "/var/mail/crm", - :user => "wordpress", + :local_parts => [ "return" ], + :maildir => "/var/mail/crm-return", + :user => "www-data", + :group => "mail" + }, + :crm_mail => { + :comment => "mail@crm.osmfoundation.org", + :domains => [ "crm.osmfoundation.org" ], + :local_parts => [ "mail" ], + :maildir => "/var/mail/crm-mail", + :user => "www-data", :group => "mail" } }