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