Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions content/reference/components/cf-execd.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -340,6 +340,27 @@ schedule => { "Min00", "(Evening|Night).Min15", "Min30", "(Evening|Night).Min45"

**History:** Added in CFEngine 3.0.0

### smtpport

**Description:** Port that `cf-execd` should try to connect to when sending email.

**Type:** `int`

**Allowed input range:** `0,10080`

**Example:**

```cf3
body executor control
{
smtpport => "26";
}
```

**See also:** [`default:control_executor.smtpport`](/reference/special-variables/control_executor/#defaultcontrol_executorsmtpport)

**History:** Added in CFEngine 3.28.0

### smtpserver

**Description:** Name or IP of a willing smtp server for sending
Expand Down
6 changes: 6 additions & 0 deletions content/reference/special-variables/control_executor.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,12 @@ The class schedule used by cf-execd for activating cf-agent. The list should con

**See also:** [`schedule` in `body executor control`][cf-execd#schedule]

### default:control_executor.smtpport

Port that `cf-execd` should use when sending email.

**See also:** [`smtpport` in `body executor control`][cf-execd#smtpport]

### default:control_executor.smtpserver

Name or IP of a willing smtp server for sending email. This should point to a standard port 25 server without encryption. If you are running secured or encrypted email then you should run a mail relay on localhost and point this to localhost.
Expand Down
Loading