]> git.openstreetmap.org Git - chef.git/blob - roles/crm.rb
Fix current rubocop offences
[chef.git] / roles / crm.rb
1 name "crm"
2 description "Role applied to CRM server"
3
4 default_attributes(
5   :exim => {
6     :local_domains => ["join.osmfoundation.org"],
7     :routes => {
8       :join_return => {
9         :comment => "return@join.osmfoundation.org",
10         :domains => ["join.osmfoundation.org"],
11         :local_parts => ["return"],
12         :maildir => "/var/mail/crm-return",
13         :user => "www-data",
14         :group => "mail"
15       },
16       :join_mail => {
17         :comment => "mail@join.osmfoundation.org",
18         :domains => ["join.osmfoundation.org"],
19         :local_parts => ["mail"],
20         :maildir => "/var/mail/crm-mail",
21         :user => "www-data",
22         :group => "mail"
23       }
24     },
25     :trusted_users => ["www-data"]
26   }
27 )
28
29 run_list(
30   "recipe[civicrm]"
31 )