Defined Type: exim::retry

Defined in:
manifests/retry.pp

Summary

This define is used to build retry rules

Overview

Parameters:

  • order (Any) (defaults to: 1)

    Determines the order, in which retry statements are evaluated

  • error (Any) (defaults to: '*')

    Determines on which errors the rule should apply

  • retries (Any) (defaults to: [['F','4h','5m'],['G','16h','1h','1.5'],['F','4d','6h']])

    Timing information for retries Type: hash of hashes



13
14
15
16
17
18
19
20
21
22
23
# File 'manifests/retry.pp', line 13

define exim::retry (
  $order=1,
  $error='*',
  $retries=[['F','4h','5m'],['G','16h','1h','1.5'],['F','4d','6h']]
  ){
  concat::fragment { "retry-${title}":
    target  => $::exim::config_path,
    content => template("${module_name}/retry/retry.erb"),
    order   => $order + 4000,
  }
}