SMTPSERVER

From HSYCO
Revision as of 18:07, 25 January 2016 by Ulde (talk | contribs) (→‎Options)
Jump to navigation Jump to search

The SMTP I/O Server implements a very basic Simple Mail Transfer Protocol (SMTP) server based on a subset of the RFC 821 standard. The SMTP I/O Server is not intended to be used as an ordinary SMTP server in the open Internet, but as an internal server, inside a protected network and not accessible from unknown clients, for SMTP-based M2M communication, or for testing purposes.

HSYCO Configuration

Add an SMTP I/O Server in the I/O Servers section of the Settings and set its parameters:

Communication

n/a

High Availability

  • Shutdown when inactive: defaults to false.

Options

ID Default Values Description
port 25 1...65535 the SMTP port number. The server listens on the specified port of all available network interfaces.

Datapoints

ID Value R/W Description
connection online R connection established
offline R HSYCO can't connect to the Arteco Open Connector server
event value W send an event notification
io.<s>.<p> 0 R pin <p> of server <s> successfully set to 0
W set pin <p> of server <s> to 0
1 R pin pin <p> of server <s> successfully set to 1
W set pin <p> of server <s> to 1

You can send simple events, with only a text description, by writing a plain text message to the event datapoint, for example:

init : io connector.event = "this is the description of an event sent to Open Connector wevery time the events code is updated"

You can also sent any custom XML section data compatibile with the Open Connector protocol specification, by simply passing the full XML string of all relevant sections in the value, including empty sections, after the plain text description. For example, the following function cound be used to send an event with custom XML data:

function OCURLEventDataBlock(text, icon, label, datablock, url) {
	ioSet('connector.event', text + '<cameras />' + datablock +
		'<io /><web><web-device id="10"><icon id="' + icon + '" /><label>' + label + '</label><target><url>' +
		url + '</url></target></web-device></web>');
}

Release Notes

3.5.1

  • initial release


ARTECO is a registered trademark of Arteco Srl.