Lines 24-28
config.action_view.cache_template_loading = true
Link Here
|
24 |
# Disable delivery errors, bad email addresses will be ignored |
24 |
# Disable delivery errors, bad email addresses will be ignored |
25 |
# config.action_mailer.raise_delivery_errors = false |
25 |
# config.action_mailer.raise_delivery_errors = false |
26 |
|
26 |
|
|
|
27 |
# We care about email errors |
28 |
config.action_mailer.raise_delivery_errors = true |
29 |
config.action_mailer.delivery_method = :sendmail |
30 |
bounce_address = 'recruiters@gentoo.org' |
31 |
config.action_mailer.sendmail_settings = { |
32 |
:location => '/usr/sbin/sendmail', |
33 |
:arguments => '-i -t -f '+bounce_address, |
34 |
} |
35 |
|
36 |
# Real hosting location |
37 |
config.action_mailer.default_url_options = { :host => 'recruiting.gentoo.org' } |
38 |
|
27 |
# Enable threaded mode |
39 |
# Enable threaded mode |
28 |
# config.threadsafe! |
40 |
# config.threadsafe! |
29 |
- |
|
|