Integration Guide Xura Messaging SMTP- Interface

Size: px
Start display at page:

Download "Integration Guide Xura Messaging SMTP- Interface"

Transcription

1 Integration Guide Xura Messaging SMTP- Interface Version Content is subject to change Xura Secure Communications GmbH Tel.: : asc-support@xura.com All rights reserved. This product and related documentation are protected by copyright and under licenses restricting its use, copying, distribution and compilation. No part of this product or related documentation may be reproduced in any form by any means without prior written authorisation of Xura Secure Communications GmbH.

2 TABLE OF CONTENTS 1 REVISION HISTORY INTRODUCTION Setup and Connection Data Authentication Validity checks Rejects Delivery Notifications Splitting of Overlong Messages SMTP INTERFACE DESCRIPTION SMTP Outbound Parameters EXAMPLES Simple case - using only the mandatory parameter Composed message as plain source text Authentication via CID Composed message as plain source text (CID in subject) message as plain source text (CID in header) Sample with all parameters set Composed message as plain source text Request acknowledge notification via RFC SMTP protocol Acknowledge Notification example Request disposition notifications via RFC Composed message as plain source text Notification example (success) Notification example (error) Page: 2 of 13

3 1 REVISION HISTORY Date Author Version Comment Benjamin Lux First version Benjamin Lux Added notification support Benjamin Lux Updated new notification config Benjamin Lux Added Validity period Table 1: Revision History Page: 3 of 13

4 2 INTRODUCTION The Xura Secure Communications GmbH provides a secure and highly available platform. It offers different messaging interfaces for sending and receiving messages. This document describes the Xura SMTP-Interface and provides various examples. The Xura SMTP-Interface offers an easy way to send a SMS message via to a mobile phone. This is done by sending an with specific parameters to a provided Xura domain. 2.1 Setup and Connection Data The SMTP interface supports sending of messages via (SMTP protocol) to the Xura Mailserver. The could be either send as Plain SMTP or encrypted via SMTPS or TLS. Xura provides customers the domain and a customer identification number (CID). 2.2 Authentication Due to security reasons Xura uses an IP-address white-list. Each customer must provide their IPaddress to apply for a Xura SMTP interface account. It will be only possible to send s from IPaddresses on this whitelist. Depending on the customers setup, the authentication via CID can be added. The default setup does not require an authentication via CID. There are two possibilities to authenticate via CID. First, the CID can be set in the subject, second the CID can be provided in the X-MM-CID header field. 2.3 Validity checks The SMTP interface validates each incoming by the following checks: an can only have one receipient (MSISDN) the parameters in the subject are validated against the parameter list in chapter 3.1 the content type of the must be text/plain if the is a multipart message, the first content with type text/plain will be chosen as SMS message text. the SMS message text must not be blank the charset of the body is set by the customer in the header and will be converted into a GSM 7-Bit message (recommended charsets are ISO or UTF8 ) upon request, the message text can be also encoded as an UCS2 message (e.g. for chinese letters). In this case, one message part may contain up to 70 chars IP address must be on the white-list in case of a prepaid SMS account, the will not be sent if the prepaid amout is empty Rejects If a validity check fails, the will be either rejected by the Xura Mailserver (e.g. IP address not on white-list) or a Bounce Message will be sent (e.g. MSISDN invalid). Page: 4 of 13

5 2.4 Delivery Notifications The SMTP interface supports two different kinds of delivery notifications (DLN). These notifications can be requested by setting the appropriate header fields in the (see the RFC s for further details): Acknowledge status notification - RFC 3461 Contains the acknowledgement, that the message was received and processed by the Xura Mail- Server. This notification will be issued to the sender address of the . In chapter 4.4 you can find an example for the acknowledge status notification. Message disposition notification - RFC 3798 (former RFC 2298) After sending the SMS to the recipient, Xura will issue this notification that the SMS was successfully sent to the mobile phone. This notification will be sent to the address specified in the Disposition-Notification-To header. Other receipients could be added by MindMaitcs upon request. In chapter 4.5 you can find examples for the message disposition notification. Furthermore it is possible to request the Message disposition notification by setting the notification parameter in the subject (see chapter 3.1). In this case the notification will be sent to the sender address. 2.5 Splitting of Overlong Messages Xura follows the GSM specifications for setting maximum message length. However, the actual delivery is dependent on the operator and the mobile phone involved. Longer messages will be sent with an internal sequence number. Normally, blocks of 153 characters are sent in the case of an ASCII message with more than 160 characters. Per default, the number of message parts is limited to 5. This value can be changed to values between 1 and 10. SMS messages which extends the maximum number of message parts will be cut after the maximum configured number of message parts and delivered. Page: 5 of 13

6 3 SMTP INTERFACE DESCRIPTION 3.1 SMTP Outbound Parameters The outbound parameters can be set in the subject field of the . Each parameter must be separated by & and the value will be set after =. If the customer wants to use a delimiter character ( & or = ) inside the subject, it must be marked with the escape character \ (backslash). The backslash is escaped by another backslash ( \\ ). e.g. from=abc\&123&myid=def\=\\ will be parsed to from=abc&123 and myid=def=\ Parameter Type Description Example from m Originating numeric telephone number (with complete country code so that replies are possible, max. 20 characters). or Alphanumeric sender max. 11 characters or Short code Xura cid o Customer identification, numeric value myid o Alphanumeric ID that can be set by customers (max. 128 characters) jobid o Numeric ID that can be set by customers. Range from 0 to notification o Indicates if a delivery notification is requested according to RFC : Delivery Notification Off (Default if not set) 1: Delivery Notification On validitytime o The maximum validity time of the message in minutes. If the recipient device is not available and the validity time is reached, the message will not be sent to the MSISDN. Table 2: SMTP Outbound Parameter Definition Default is seven days ( min) ID Page: 6 of 13

7 4 EXAMPLES 4.1 Simple case - using only the mandatory parameter Composed TO @<will be provided by Xura>.mindmatics.com FROM testuser@company.de SUBJECT from=xura CONTENT This is a test message message as plain source text Message-ID: < @company.de> Date: Wed, 14 May :05: From: Testuser <testuser@company.de> Content-Type: text/plain; charset=iso To: @<will be provided by Xura>.mindmatics.com Subject: from=xura This is a test message. Page: 7 of 13

8 4.2 Authentication via CID Composed TO be provided by Xura>.mindmatics.com FROM SUBJECT from=xura&cid=3512 CONTENT This is a test message with authentication via CID message as plain source text (CID in subject) Message-ID: < @company.de> Date: Wed, 14 May :05: From: Testuser <testuser@company.de> Content-Type: text/plain; charset=iso To: @<will be provided by Xura>.mindmatics.com Subject: from=xura&cid=3512 This is a test message with authentication via CID in the subject message as plain source text (CID in header) Message-ID: < @company.de> Date: Wed, 14 May :05: From: Testuser <testuser@company.de> Content-Type: text/plain; charset=iso To: @<will be provided by Xura>.mindmatics.com Subject: from=xura X-MM-CID: 3512 This is a test message with authentication via CID in the header. Page: 8 of 13

9 4.3 Sample with all parameters set Composed TO be provided by Xura>.mindmatics.com FROM SUBJECT from=xura&cid=3512&myid=abc&jobid=45678&notification=1&validitytime=60 CONTENT This is a test message with all parameters set message as plain source text Message-ID: < @company.de> Date: Wed, 14 May :05: From: Testuser <testuser@company.de> Content-Type: text/plain; charset=iso To: @<will be provided by Xura>.mindmatics.com Subject: from=xura&cid=3512&myid=abc&jobid=45678&notification=1&validitytime=60 This is a test message with all parameters set. Page: 9 of 13

10 4.4 Request acknowledge notification via RFC SMTP protocol <<< 220 mindmatics.com SMTP server here >>> EHLO mindmatics.com <<< 250-mindmatics.com <<< 250-DSN <<< 250-EXPN <<< 250 SIZE >>> MAIL RET=HDRS ENVID=ABCD1234 <<< 250 sender ok >>> RCPT NOTIFY=SUCCESS,FAILURE <<< 250 recipient ok >>> DATA <<< 354 okay, send message >>> (message goes here) >>>. <<< 250 message accepted >>> QUIT <<< 221 goodbye Acknowledge Notification example Message-Id: Date: Wed, 14 May :07: From: be provided by Xura>.mindmatics.com To: Subject: Delivery Notification (success) for be provided by Xura>.mindmatics.com MIME-Version: 1.0 Content-Type: multipart/report; report-type=delivery-status; boundary=frontier --frontier Content-type: text/plain Your message (id ABCD1234) was successfully delivered to be provided by Xura>.mindmatics.com --frontier Content-type: message/delivery-status Reporting-MTA: dns; mail.mindmatics.com Original-Envelope-ID: ABCD1234 Original-Recipient: rfc822; be provided by Xura>.mindmatics.com Final-Recipient: rfc822; be provided by Xura>.mindmatics.com Action: delivered Status: Page: 10 of 13

11 4.5 Request disposition notifications via RFC Composed TO be provided by Xura>.mindmatics.com FROM SUBJECT from=xura CONTENT This is a test message with notification RFC requested message as plain source text Message-ID: < @company.de> Date: Wed, 14 May :05: From: Testuser <testuser@company.de> Content-Type: text/plain; charset=iso To: @<will be provided by Xura>.mindmatics.com Subject: from=xura Disposition-Notification-To: notification_to@company.de This is a test message with notification RFC requested. The Disposition-Notification-To header field is set in this the disposition notification (according to RFC 3798) will be sent to the address notification_to@company.de. Page: 11 of 13

12 4.5.3 Notification example (success) Message-Id: Date: Wed, 14 May :07: From: be provided by Xura>.mindmatics.com To: Subject: Message Disposition Notification MIME-Version: 1.0 Content-Type: multipart/report; report-type=disposition-notification; boundary=frontier --frontier Your message sent from ' ' was SUCCESS. From: Xura To: GUID: F9B2A53G66B1DB8A24CD6717 MyId: JobId: 0 From @<will be provided by Xura>.mindmatics.com To testuser@company.de Message-ID: @company.de Submit date: :06:20 Done date: :06:28 Message type: SMS Status: SUCCESS Detailed error: DELIVERY SUCCESS --frontier content-type: message/disposition-notification Reporting-UA: mail.mindmatics.com; Xura SMTP Interface Original-Recipient: @<will be provided by Xura>.mindmatics.com Final-Recipient: @<will be provided by Xura>.mindmatics.com Original-Message-ID: < @mindmatics.com> Disposition: automatic-action/mdn-sent-automatically; displayed --frontier-- Page: 12 of 13

13 4.5.4 Notification example (error) Message-Id: Date: Wed, 14 May :07: From: be provided by Xura>.mindmatics.com To: Subject: Message Disposition Notification MIME-Version: 1.0 Content-Type: multipart/report; report-type=disposition-notification; boundary=frontier --frontier Your message sent from ' ' was ERROR. From: Xura To: GUID: F9B2A53G66B1DB8A24CD6717 MyId: JobId: 0 From @<will be provided by Xura>.mindmatics.com To testuser@company.de Message-ID: @company.de Submit date: :06:20 Done date: :06:28 Message type: SMS Status: MESSAGE REJECTED Detailed error: ROUTING FAILURE --frontier content-type: message/disposition-notification Reporting-UA: mail.mindmatics.com; Xura SMTP Interface Original-Recipient: @<will be provided by Xura>.mindmatics.com Final-Recipient: @<will be provided by Xura>.mindmatics.com Original-Message-ID: < @mindmatics.com> Disposition: automatic-action/mdn-sent-automatically; deleted/error Error: 002 ROUTING FAILURE --frontier-- Page: 13 of 13

Integration Guide Xura Messaging HTTP-Interface

Integration Guide Xura Messaging HTTP-Interface Integration Guide Xura Messaging HTTP-Interface Version 2.1.5 Content is subject to change Xura Secure Communications GmbH Tel.: +49 89 201 727 0 e-mail.: asc-support@xura.com All rights reserved. This

More information

Forthnet Mobile Platform - groupsms http interface v1.0 1 / 9

Forthnet Mobile Platform - groupsms http interface v1.0 1 / 9 Table of Contents Introduction... 2 Requirements... 2 Connecting to Forthnet Mobile Platform... 2 Message submission... 3 Client Request... 3 Parameters... 4 Parameter user... 4 Parameter pass... 4 Parameter

More information

SAP AG. Fax via SMTP Partner Requirements

SAP AG. Fax via SMTP Partner Requirements SAP AG 14 December 2011 Table of contents: 1 Introduction... 3 2 Formats... 4 2.1 SMTP... 4 2.2 Mail Header... 4 2.3 MIME Content... 4 2.3.1 Outbound Fax - Sending from SAP to SF gateway... 4 2.3.2 Inbound

More information

Network Working Group. Category: Standards Track January 1996

Network Working Group. Category: Standards Track January 1996 Network Working Group K. Moore Request for Comments: 1891 University of Tennessee Category: Standards Track January 1996 Status of this Memo SMTP Service Extension for Delivery Status Notifications This

More information

Internet Technology. 03r. Application layer protocols: . Paul Krzyzanowski. Rutgers University. Spring 2016

Internet Technology. 03r. Application layer protocols:  . Paul Krzyzanowski. Rutgers University. Spring 2016 Internet Technology 03r. Application layer protocols: email Paul Krzyzanowski Rutgers University Spring 2016 1 Email: SMTP (Simple Mail Transfer Protocol) 2 Simple Mail Transfer Protocol (SMTP) Protocol

More information

CLX MSISDN Lookup Interface Description

CLX MSISDN Lookup Interface Description CLX MSISDN Lookup Interface Description VERSION 2.1.0 CONTENT IS SUBJECT TO CHANGE TEL.: +49 89 201 727 0 E-MAIL: SUPPORT-DE@CLXCOMMUNICATIONS.COM All rights reserved. This product and related documentation

More information

SMS Outbound. SMTP interface - v1.1

SMS Outbound. SMTP interface - v1.1 SMS Outbound SMTP interface - v1.1 Table of contents 1. Version history... 5 2. Conventions... 5 3. Introduction... 6 4. Gateway connection... 7 4.1 E-mail message format... 7 4.2 Header section... 7 4.3

More information

SMS Submit Interface description HTTP Version 1.5

SMS Submit Interface description HTTP Version 1.5 SMS Submit Interface description HTTP Version 1.5 This document is intended for application developers with knowledge about the HTTP protocol. Document history Version Description 1.5 Spelling error corrected

More information

SMTP Extension for Alternate Recipient Delivery Option (draft-melnikov-smtp-altrecip-on-error-00.txt)

SMTP Extension for Alternate Recipient Delivery Option (draft-melnikov-smtp-altrecip-on-error-00.txt) SMTP Extension for Alternate Recipient Delivery Option (draft-melnikov-smtp-altrecip-on-error-00.txt) Alexey Melnikov IETF 80, Prague Overview Simple case: send an email message

More information

Electronic mail, usually called , consists of simple text messages a piece of text sent to a recipient via the internet.

Electronic mail, usually called  , consists of simple text messages a piece of text sent to a recipient via the internet. 1 Electronic Mail Electronic mail, usually called e-mail, consists of simple text messages a piece of text sent to a recipient via the internet. E-mail Clients To read e-mail, we use an e-mail client,

More information

CIT 470: Advanced Network and System Administration. Topics. Mail Policies.

CIT 470: Advanced Network and System Administration. Topics. Mail Policies. CIT 470: Advanced Network and System Administration E-mail CIT 470: Advanced Network and System Administration Slide #1 Topics 1. Mail Policies 2. Anatomy of a Mail Message 3. Components of an E-mail System

More information

Electronic Mail. Prof. Indranil Sen Gupta. Professor, Dept. of Computer Science & Engineering Indian Institute of Technology Kharagpur

Electronic Mail. Prof. Indranil Sen Gupta. Professor, Dept. of Computer Science & Engineering Indian Institute of Technology Kharagpur Electronic Mail Prof. Indranil Sen Gupta Professor, Dept. of Computer Science & Engineering Indian Institute of Technology Kharagpur 1 Introduction Most heavily used application on the Internet. Simple

More information

SMS Outbound. HTTP interface - v1.1

SMS Outbound. HTTP interface - v1.1 SMS Outbound HTTP interface - v1.1 Table of contents 1. Version history... 5 2. Conventions... 5 3. Introduction... 6 4. Application Programming Interface (API)... 7 5. Gateway connection... 9 5.1 Main

More information

System: Basic Functionality

System: Basic Functionality E-mail System: Basic Functionality E-mail systems support five basic functions: Composition: Creating messages Transfer: Moving messages from the originator to the recipient E-mail transfer is a connection-oriented

More information

ESMTP Support for Cisco IOS Firewall

ESMTP Support for Cisco IOS Firewall ESMTP Support for Cisco IOS Firewall Finding Feature Information ESMTP Support for Cisco IOS Firewall Last Updated: June 14, 2011 The ESMTP Support for Cisco IOS Firewall feature enhances the Cisco IOS

More information

The Application Layer: & SMTP

The Application Layer:  & SMTP The Application Layer: email & SMTP Smith College, CSC 249 Feb 1, 2018 4-1 Chapter 2: Application layer q 2.1 Principles of network applications q 2.2 Web and HTTP q 2.3 FTP q 2.4 Electronic Mail v SMTP,

More information

Fortinet.Certdumps.FCESP.v by.Zocki.81q. Exam Code: FCESP. Exam Name: Fortinet Certified Security Professional

Fortinet.Certdumps.FCESP.v by.Zocki.81q. Exam Code: FCESP. Exam Name: Fortinet Certified  Security Professional Fortinet.Certdumps.FCESP.v2014-03-05.by.Zocki.81q Number: FCESP Passing Score: 600 Time Limit: 105 min File Version: 18.5 http://www.gratisexam.com/ Exam Code: FCESP Exam Name: Fortinet Certified Email

More information

Internet Electronic Mail

Internet Electronic Mail Internet Electronic Mail Antonio Carzaniga Faculty of Informatics University of Lugano March 9, 2010 Outline General concepts Transport protocol: SMTP Basic message format MIME format A Postal Service

More information

All requests must be authenticated using the login and password you use to access your account.

All requests must be authenticated using the login and password you use to access your account. The REST API expects all text to be encoded as UTF-8, it is best to test by sending a message with a pound sign ( ) to confirm it is working as expected. If you are having issues sending as plain text,

More information

Enable Continuity for all users on all domains on the account to comply with business continuity regulations.

Enable  Continuity for all users on all domains on the account to comply with business continuity regulations. If you make setting changes, allow a few minutes for the changes to take effect. Important If your organization is using LDAP Authentication and your LDAP server goes offline, the Barracuda Email Security

More information

Electronic Mail. Electronic Mailboxes

Electronic Mail. Electronic Mailboxes Electronic Mail E-mail belongs to the Application Layer Has been around since the early 80 s Enables new forms of interaction Fast Automatic processing (sorting, reply) Can carry other content Electronic

More information

eservices -processing

eservices  -processing eservices email-processing 9/17/2018 email-processing attachment-mngt autobot-agent-login-name autowar-detect-period autowar-max-reply-count autowar-scan-all-threads-ofcontact bcc-address cc-userdata-limit

More information

SMTP. George Porter CSE 124 February 12, 2015

SMTP. George Porter CSE 124 February 12, 2015 SMTP George Porter CSE 124 February 12, 2015 Homework 2 out Announcements Project 2 checkpoint due Tuesday Traditional Applications Two of the most popular The World Wide Web and Email. Broadly speaking,

More information

LINK Mobility SMS REST API MT and Delivery Reports Version 1.3; Last updated September 21, 2017

LINK Mobility SMS REST API MT and Delivery Reports Version 1.3; Last updated September 21, 2017 LINK Mobility SMS REST API MT and Delivery Reports Version 1.3; Last updated September 21, 2017 For help, contact support@linkmobility.com The most up-to-date version of this document is available at http://www.linkmobility.com/developers/

More information

SMTP Simple Mail Transfer Protocol

SMTP Simple Mail Transfer Protocol SMTP Simple Mail Transfer Protocol What is SMTP? SMTP stands for Simple Mail Transfer Protocol. This protocol allows transmitting electronic mail over the Internet or any other network. The protocol itself

More information

API Documentation. Release Version 1 Beta

API Documentation. Release Version 1 Beta API Documentation Release Version 1 Beta Document Version Control Version Date Updated Comment 0.1 April 1, 2016 Initialize document 1 Release version PROMOTEXTER V3 BETA - API Documentation 1 Table of

More information

BUSINESSMAIL X.400 WEB INTERFACE SMTP MTA V2.9

BUSINESSMAIL X.400 WEB INTERFACE SMTP MTA V2.9 V2.9 User information (1) In addition to X.400 MTA (P1 Connection) the MailGate service now also supports a SMTP MTA (Message- Gate SMTP) to bind an X.400 Domain to worldwide X.400 network. While using

More information

Response: Note: Please define Dynamic Value in ##Field## The following are the parameters used: For Unicode Message:

Response: Note: Please define Dynamic Value in ##Field## The following are the parameters used: For Unicode Message: For Unicode Message: Promotional Unicode Message API http://cloud.smsindiahub.in/vendorsms/pushsms.aspx?user=youruserid&password=yourpassword& msisdn=919898xxxxxx&sid=senderid&msg=पर षण स द श &fl=0&dc=8

More information

. SMTP, POP, and IMAP

. SMTP, POP, and IMAP E-Mail SMTP, POP, and IMAP Scope How Email Appears to Work How Email Really Works Mail User Agent (MUA) Message Format Mail Delivery Agent (MDA)/ Mail Transfer Agent (MTA) Firewalls, Spam and Virus Filters

More information

Application: Electronic Mail

Application: Electronic Mail Content Application: Electronic Mail Linda Wu Email system model protocol MIME extensions Mail access protocols (CMPT 471 2003-3) Reference: chapter 27 Notes-19 CMPT 471 2003-3 2 Email System Model Client-

More information

Integrating with Cellsynt's SMS gateway via HTTP interface (technical documentation)

Integrating with Cellsynt's SMS gateway via HTTP interface (technical documentation) Integrating with Cellsynt's SMS gateway via HTTP interface (technical documentation) Integrating with Cellsynt's SMS gateway via HTTP interface (technical documentation) Table of Contents Part I Introduction

More information

Operation Manual for OutboxSMS-Lite

Operation Manual for OutboxSMS-Lite Operation Manual for OutboxSMS-Lite Copyright 2006-2016 Felltech Limited. All rights reserved The use and copying of this product is subject to a license agreement. Any other use is prohibited. No part

More information

The Application Layer: SMTP, FTP

The Application Layer: SMTP, FTP The Application Layer: SMTP, FTP CS 352, Lecture 5 http://www.cs.rutgers.edu/~sn624/352-s19 Srinivas Narayana 1 Recap: Application-layer protocols DNS: lookup a (machine-readable) address using a (humanreadable)

More information

NSE6_FML exam.14q

NSE6_FML exam.14q NSE6_FML-5.3.8.exam.14q Number: NSE6_FML-5.3.8 Passing Score: 800 Time Limit: 120 min NSE6_FML-5.3.8 FortiMail 5.3.8 Specialist Exam A QUESTION 1 Examine the nslookup output shown in the exhibit; then

More information

Electronic Mail Paradigm

Electronic Mail Paradigm Electronic Mail Paradigm E-mail uses the client-server model. E-mail was designed as an electronic extension of the old paper office memo. - A quick and easy means of low-overhead written communication.

More information

ECE 435 Network Engineering Lecture 6

ECE 435 Network Engineering Lecture 6 ECE 435 Network Engineering Lecture 6 Vince Weaver http://web.eece.maine.edu/~vweaver vincent.weaver@maine.edu 20 September 2018 HW#2 was due. Announcements HW#3 will be posted a bit different. Encryption

More information

CompSci 356: Computer Network Architectures. Lecture 23: Application Layer Protocols Chapter 9.1. Xiaowei Yang

CompSci 356: Computer Network Architectures. Lecture 23: Application Layer Protocols Chapter 9.1. Xiaowei Yang CompSci 356: Computer Network Architectures Lecture 23: Application Layer Protocols Chapter 9.1 Xiaowei Yang xwy@cs.duke.edu The Internet Architecture Application layer Transport layer / Layer 4 Network

More information

Symantec ST Symantec Messaging Gateway Download Full Version :

Symantec ST Symantec Messaging Gateway Download Full Version : Symantec ST0-199 Symantec Messaging Gateway 10.0 Download Full Version : https://killexams.com/pass4sure/exam-detail/st0-199 QUESTION: 111 When configuring DKIM signing, how should the domain key generated

More information

FIPA Agent Message Transport Protocol for HTTP Specification

FIPA Agent Message Transport Protocol for HTTP Specification 1 2 3 4 5 6 FOUNDATION FOR INTELLIGENT PHYSICAL AGENTS FIPA Agent Message Transport Protocol for HTTP Specification 7 8 Document title FIPA Agent Message Transport Protocol for HTTP Specification Document

More information

Objectives CINS/F1-01

Objectives CINS/F1-01 Email Security (1) Objectives Understand how e-mail systems operate over networks. Classify the threats to the security of e-mail. Study how S/MIME and PGP can be used to add security to e-mail systems.

More information

Applications & Application-Layer Protocols: FTP and (SMTP & POP)

Applications & Application-Layer Protocols: FTP and  (SMTP & POP) COMP 431 Internet Services & Protocols Applications & Application-Layer Protocols: FTP and E ( & POP) Jasleen Kaur February 7, 2019 Application-Layer Protocols Outline Example client/ systems and their

More information

Network Applications Electronic Mail

Network Applications Electronic Mail Network Applications Electronic Mail The OSI way to do this is specified in X.400 (84 & 88) Overall Architecture UA P3 UA MS P7 P1 MTS At the core of the X.400 Message Handling System (MHS) is the Message

More information

Network Working Group. January An Extensible Message Format for Delivery Status Notifications

Network Working Group. January An Extensible Message Format for Delivery Status Notifications Network Working Group Request for Comments: 3464 Obsoletes: 1894 Category: Standards Track K. Moore University of Tennessee G. Vaudreuil Lucent Technologies January 2003 An Extensible Message Format for

More information

Chapter 2 Application Layer

Chapter 2 Application Layer Chapter 2 Application Layer A note on the use of these ppt slides: We re making these slides freely available to all (faculty, students, readers). They re in PowerPoint form so you see the animations;

More information

Quriiri HTTP MT API. Quriiri HTTP MT API v , doc version This document describes the Quriiri HTTP MT API version 1 (v1).

Quriiri HTTP MT API. Quriiri HTTP MT API v , doc version This document describes the Quriiri HTTP MT API version 1 (v1). Quriiri HTTP MT API This document describes the Quriiri HTTP MT API version 1 (v1). Sending messages Request types Security Request parameters Request examples JSON POST GET Response JSON response example

More information

Outline. EEC-484/584 Computer Networks. Slow Start Algorithm. Internet Congestion Control Algorithm

Outline. EEC-484/584 Computer Networks. Slow Start Algorithm. Internet Congestion Control Algorithm EEC-484/584 Computer Networks Lecture 19 wenbing@ieee.org (Lecture nodes are based on materials supplied by Dr. Louise Moser at UCSB and Prentice-Hall) Outline TCP slow start and congestion avoidance The

More information

How Internet Works

How Internet  Works How Internet Email Works Everything you never wanted to know about email but were afraid to ask... Dave O'Neill So, you use email...... but do you know how it works? If

More information

Electronic Mail (SMTP)

Electronic Mail (SMTP) Electronic Mail (SMTP) Nowadays email is more popular than the paper letters called snail-mails. It is a form of network communication. Some of the other forms of network communication being voice-over-internet,

More information

Transactional- Interface Specification

Transactional- Interface Specification Transactional-Email Interface Specification MailSolution - Version 2.1 Experian Deutschland GmbH Kaistr. 2 40221 Düsseldorf Tel: +49 (0) 211 220 424 0 Support: +49 (0) 211 220 424 60 Fax: +49 (0) 211 220

More information

Content Filters. Overview of Content Filters. How Content Filters Work. This chapter contains the following sections:

Content Filters. Overview of Content Filters. How Content Filters Work. This chapter contains the following sections: This chapter contains the following sections: Overview of, page 1 How Work, page 1 Content Filter Conditions, page 2 Content Filter Actions, page 9 How to Filter Messages Based on Content, page 17 Overview

More information

Internet Engineering Task Force (IETF) Request for Comments: ISSN: October 2012

Internet Engineering Task Force (IETF) Request for Comments: ISSN: October 2012 Internet Engineering Task Force (IETF) Request for Comments: 6758 Category: Informational ISSN: 2070-1721 A. Melnikov Isode Ltd K. Carlberg G11 October 2012 Tunneling of SMTP Message Transfer Priorities

More information

is still the most used Internet app. According to some studies around 85% of Internet users still use for communication.

is still the most used Internet app. According to some studies around 85% of Internet users still use  for communication. 1 E-mail is still the most used Internet app. According to some studies around 85% of Internet users still use e-mail for communication. Electronic mail is a method to exchange digital messages from a

More information

Quick help quide to GSM PDU mode structure

Quick help quide to GSM PDU mode structure 1 (6) Quick help quide to GSM 07.05 PDU mode structure AT+CMGS Send Message Sends a message from the DTE to the network (SMS-SUBMIT): AT+CMGS=PDU The length of the actual

More information

Network Working Group. Obsoletes: 1569 October 1994 Category: Informational

Network Working Group. Obsoletes: 1569 October 1994 Category: Informational Network Working Group M. Rose Request for Comments: 1703 Dover Beach Consulting, Inc. Obsoletes: 1569 October 1994 Category: Informational Status of this Memo Principles of Operation for the TPC.INT Subdomain:

More information

Network Working Group Request for Comments: 1844 Obsoletes: 1820 August 1995 Category: Informational

Network Working Group Request for Comments: 1844 Obsoletes: 1820 August 1995 Category: Informational Network Working Group E. Huizer Request for Comments: 1844 SURFnet bv Obsoletes: 1820 August 1995 Category: Informational Status of this Memo Multimedia E-mail (MIME) User Agent checklist This memo provides

More information

Personal Dashboard User Guide

Personal Dashboard User Guide Version 8.1 800-782-3762 www.edgewave.com 2001 2011 EdgeWave. All rights reserved. The Red Condor and EdgeWave logos and brands are trademarks of EdgeWave. All other trademarks and registered trademarks

More information

Specification Change Document

Specification Change Document Specification Change Document WAP-209_102-MMSEncapsulation-20010928-a Version 28-Sep-2001 for Wireless Application Protocol WAP-209-MMSEncapsulation-20010601-a MMS Encapsulation Protocol Version 01-June-2001

More information

Internet Engineering Task Force (IETF) Request for Comments: 6522 STD: 73 January 2012 Obsoletes: 3462 Category: Standards Track ISSN:

Internet Engineering Task Force (IETF) Request for Comments: 6522 STD: 73 January 2012 Obsoletes: 3462 Category: Standards Track ISSN: Internet Engineering Task Force (IETF) M. Kucherawy, Ed. Request for Comments: 6522 Cloudmark STD: 73 January 2012 Obsoletes: 3462 Category: Standards Track ISSN: 2070-1721 Abstract The Multipart/Report

More information

DNS and SMTP. James Walden CIT 485: Advanced Cybersecurity. James WaldenCIT 485: Advanced Cybersecurity DNS and SMTP 1 / 31

DNS and SMTP. James Walden CIT 485: Advanced Cybersecurity. James WaldenCIT 485: Advanced Cybersecurity DNS and SMTP 1 / 31 DNS and SMTP James Walden CIT 485: Advanced Cybersecurity James WaldenCIT 485: Advanced Cybersecurity DNS and SMTP 1 / 31 Table of contents 1. DNS 2. DNS Protocol Packets 3. DNS Caching 4. DNS Cache Poisoning

More information

HTTP API. https://www.smsn.gr. Table of Contents

HTTP API. https://www.smsn.gr. Table of Contents HTTP API https://www.smsn.gr Table of Contents Send SMS...2 Query SMS...3 Multiple Query SMS...4 Credits...5 Save Contact...5 Delete Contact...7 Delete Message...8 Email: sales@smsn.gr, Τηλ: 211 800 4200,

More information

Electronic Mail

Electronic Mail Email Electronic Mail Electronic mail paradigm Most heavily used application on any network Electronic version of paper-based office memo Quick, low-overhead written communication Dates back to time-sharing

More information

Network Working Group. Updates: 1894 June 2000 Category: Standards Track

Network Working Group. Updates: 1894 June 2000 Category: Standards Track Network Working Group D. Newman Request for Comments: 2852 Sun Microsystems Updates: 1894 June 2000 Category: Standards Track Status of this Memo Deliver By SMTP Service Extension This document specifies

More information

RECOMMENDATION TO GISB EXECUTIVE COMMITTEE

RECOMMENDATION TO GISB EXECUTIVE COMMITTEE RECOMMENDATION TO GISB EXECUTIVE COMMITTEE Requester: Group 8760 Request No.: R99035 1. Recommended Action: Effect of EC Vote to Accept Recommended Action: Accept as requested X Change to Existing Practice

More information

Debian/GNU Linux Mailing

Debian/GNU Linux Mailing Debian/GNU Linux Mailing Overview of the Mailing Károly Erdei October 15, 2014 Károly Erdei Debian/GNU Linux Mailing 1/67 Agenda 1 Mailing 2 Protocols 3 SPAM 4 Antispam 5 Thunderbird 6 TB-Preferences 7

More information

Lecture 6: Application Layer Web proxies, , and SMTP

Lecture 6: Application Layer Web proxies,  , and SMTP Lecture 6: Application Layer Web proxies, Email, and SMTP COMP 332, Spring 2018 Victoria Manfredi Acknowledgements: materials adapted from Computer Networking: A Top Down Approach 7 th edition: 1996-2016,

More information

Cisco Encryption

Cisco  Encryption This chapter contains the following sections: Overview of, page 1 How to Encrypt Messages with a Local Key Server, page 2 Encrypting Messages using the Email Security Appliance, page 3 Determining Which

More information

October 4, 2000 Expires in six months. SMTP Service Extension for Secure SMTP over TLS. Status of this Memo

October 4, 2000 Expires in six months. SMTP Service Extension for Secure SMTP over TLS. Status of this Memo Internet Draft draft-hoffman-rfc2487bis-04.txt October 4, 2000 Expires in six months Paul Hoffman Internet Mail Consortium Status of this Memo SMTP Service Extension for Secure SMTP over TLS This document

More information

PCCW mobile SMS Web Access 2.0 User Guide

PCCW mobile SMS Web Access 2.0 User Guide PCCW mobile SMS Web Access 2.0 User Guide Version 2.1.2 11 March 2011 Version: 2.1.2 Table of Content 1 Introduction... 4 2 General... 5 2.1 Getting started... 5 2.2 Login/Logout... 5 2.3 Switch between

More information

Chapter 20 SMTP. Slides from TCP/IP - Forouzan. User Agent (UA) Addressing Delayed Delivery Aliases Mail Transfer Agent (MTA) MIME POP.

Chapter 20 SMTP. Slides from TCP/IP - Forouzan. User Agent (UA) Addressing Delayed Delivery Aliases Mail Transfer Agent (MTA) MIME POP. Chapter 20 SMTP User Agent () Addressing Delayed Delivery Aliases Mail Transfer Agent () MIME POP 20-1 Figure 20-1 SMTP concept User User SMTP client TCP ephemeral port SMTP server TCP well-known port

More information

What is ? TCP/IP Standard Applications for Electronic Mail. Agenda. History

What is  ? TCP/IP Standard Applications for Electronic Mail. Agenda. History What is E-Mail? TCP/IP Standard Applications for Electronic Mail Email, SMTP, POP, IMAP, MIME E-Mail (or "email") is the most widely used Internet application Note: email was one of TCP/IP's keys to success:

More information

Installation & Configuration Guide Version 1.4

Installation & Configuration Guide Version 1.4 TekSMTP Installation & Configuration Guide Version 1.4 Document Revision 1.7 https://www.kaplansoft.com/ TekSMTP is built by Yasin KAPLAN Read Readme.txt for last minute changes and updates which can be

More information

Internet and Intranet Protocols and Applications

Internet and Intranet Protocols and Applications Internet and Intranet Protocols and Applications Lecture 4: General Characteristics of Internet Protocols; the Email Protocol February 10, 2004 Arthur Goldberg Computer Science Department New York University

More information

SMS-Bulk Gateway HTTP interface

SMS-Bulk Gateway HTTP interface SMS-Bulk Gateway HTTP interface Release 3.0.0 2001-2017 SmsItaly.Com 1 1 Introduction 1.1 Summary Only authorized users can submit SMS messages for delivery by one of the following methods: - Internet

More information

Simple Network Management Protocol (SNMP)

Simple Network Management Protocol (SNMP) Announcements Project #5 extended until Dec. 10 Reading: 7.3, start 7.4 Midterm #2 last day to request re-grades Th in class HW#2 (due Tuesday Dec. 7) 1 Simple Network Management Protocol (SNMP) Managed

More information

Application Inspection and Control for SMTP

Application Inspection and Control for SMTP Application Inspection and Control for SMTP First Published: July 11, 2008 Last Updated: July 11, 2008 The Application Inspection for SMTP feature provides an intense provisioning mechanism that can be

More information

Symantec ST0-250 Exam

Symantec ST0-250 Exam Volume: 126 Questions Question No: 1 What is the recommended minimum hard-drive size for a virtual instance of Symantec Messaging Gateway 10.5? A. 80 GB B. 90 GB C. 160 GB D. 180 GB Answer: B Question

More information

Mail agents. Introduction to Internet Mail. Message format (1) Message format (2)

Mail agents. Introduction to Internet Mail. Message format (1) Message format (2) Introduction to Internet Mail Noah Sematimba Based on Materials by Philip Hazel. Mail agents MUA = Mail User Agent Interacts directly with the end user Pine, MH, Elm, mutt, mail, Eudora, Marcel, Mailstrom,

More information

Managing Spam. To access the spam settings in admin panel: 1. Login to the admin panel by entering valid login credentials.

Managing Spam. To access the spam settings in admin panel: 1. Login to the admin panel by entering valid login credentials. Email Defense Admin Panel Managing Spam The admin panel enables you to configure spam settings for messages. Tuning your spam settings can help you reduce the number of spam messages that get through to

More information

Network Working Group. Category: Experimental September Internationalized Delivery Status and Disposition Notifications

Network Working Group. Category: Experimental September Internationalized Delivery Status and Disposition Notifications Network Working Group Request for Comments: 5337 Updates: 3461, 3464, 3798 Category: Experimental C. Newman Sun Microsystems A. Melnikov, Ed. Isode Ltd September 2008 Internationalized Delivery Status

More information

Ciphermail Webmail Messenger Administration Guide

Ciphermail Webmail Messenger Administration Guide CIPHERMAIL EMAIL ENCRYPTION Ciphermail Webmail Messenger Administration Guide October 27, 2017, Rev: 8630 Copyright 2013-2017, ciphermail.com. CONTENTS CONTENTS Contents 1 Introduction 4 2 Admin login

More information

Configuring Gmail (G Suite) with Cisco Cloud Security

Configuring Gmail (G Suite) with Cisco Cloud  Security Configuring Gmail (G Suite) with Cisco Cloud Email Security This document covers the steps required to integrate Cisco Cloud Email Security with Google G Suite for inbound and outbound email delivery.

More information

Front Gateway Product Description for the connection between the SMS gateway and customer

Front Gateway Product Description for the connection between the SMS gateway and customer Front Gateway Product Description for the connection between the SMS gateway and customer Applies to: SMS Gateway Standard SMS Gateway Proff SMS Gateway PSK Development Manual v.2.22 2017-05-05 Side 1

More information

cellip CELLIPS SMS INTERFACE DESCRIPTION HTTP GET INNEHÅLLSFÖRTECKNING

cellip CELLIPS SMS INTERFACE DESCRIPTION HTTP GET INNEHÅLLSFÖRTECKNING INNEHÅLLSFÖRTECKNING Innehållsförteckning... 1 1 Introduction... 2 1.1 Scope... 2 2 HTTP Get interface... 2 2.1 Mobile Terminated Messages... 2 2.1.1 Usage... 2 2.1.2 Parameters... 2 2.1.3 Codes... 4 2.1.4

More information

Application-layer Protocols and Internet Services

Application-layer Protocols and Internet Services Application-layer Protocols and Internet Services Computer Networks Lecture 8 http://goo.gl/pze5o8 Terminal Emulation 2 Purpose of Telnet Service Supports remote terminal connected via network connection

More information

Basics BUPT/QMUL

Basics BUPT/QMUL Email Basics BUPT/QMUL 2017-05-08 Agenda Brief introduction to email Components of email system Email Standards Summary 2 Brief Introduction To Email 3 What is Email? Electronic Mail (email, e-mail) Provides

More information

Basics BUPT/QMUL

Basics BUPT/QMUL Email Basics BUPT/QMUL 2014-04-28 Agenda Brief introduction to email Components of email system Email Standards Summary 2 Brief Introduction To Email 3 What is Email? Electronic Mail (email, e-mail) Provides

More information

Version SurfControl RiskFilter - Administrator's Guide

Version SurfControl RiskFilter -  Administrator's Guide Version 5.2.4 SurfControl RiskFilter - E-mail Administrator's Guide CONTENTS Notices...i FINDING YOUR WAY AROUND...1 How RiskFilter works...2 Managing your messages with RiskFilter...2 Load balancing with

More information

Header- A Forensic Key to Examine an

Header- A Forensic Key to Examine an E-Mail Header- A Forensic Key to Examine an E-Mail Swapnil Gupta 1, Kopal Gupta 2, Dr. Anu Singla 3 1,2,3 Institute of Forensic Science & Criminology, Bundelkhand University, Jhansi (U.P.), India ---------------------------------------------------------------------***---------------------------------------------------------------------

More information

Comprehensive Setup Guide for TLS on ESA

Comprehensive Setup Guide for TLS on ESA Comprehensive Setup Guide for TLS on ESA Contents Introduction Prerequisites Requirements Components Used Background Information Functional Overview and Requirements Bring Your Own Certificate Update a

More information

anti-spam techniques beyond Bayesian filters

anti-spam techniques beyond Bayesian filters anti-spam techniques beyond Bayesian filters Plain Old SMTP protocol overview Grey-Listing save resources on receiver side Authentication of Senders Sender ID Framework DomainKeys signingbased IP-based

More information

Error Codes have 3 Digits

Error Codes have 3 Digits The top portion covers bounce back messages. The x.x.x The xxx Examples of real Error messages with an explaination. (the email client errors coming in the future) The 2nd half covers email connection

More information

Network Working Group. Obsoletes: 1342 September 1993 Category: Standards Track

Network Working Group. Obsoletes: 1342 September 1993 Category: Standards Track Network Working Group K. Moore Request for Comments: 1522 University of Tennessee Obsoletes: 1342 September 1993 Category: Standards Track MIME (Multipurpose Internet Mail Extensions) Part Two: Message

More information

SMS API User Guide. Document Reference: October Version: 6

SMS API User Guide. Document Reference: October Version: 6 SMS API User Guide Document Reference: 8297 October 2016 Version: 6 Version Date Author Changes Number 1 Apr 2015 John Lindsay 2 Sep 2015 Sam Smith Branding updated USSD section added Postman updated 3

More information

Application Layer Services Omer F. Rana. Networks and Data Communications 1

Application Layer Services Omer F. Rana. Networks and Data Communications 1 Application Layer Services Omer F. Rana Networks and Data Communications 1 Application Layer Protocols Distinction between Network Application and an Application-Layer Protocol an Application-layer Protocol

More information

Request for Comments: 2476 Category: Standards Track MCI December 1998

Request for Comments: 2476 Category: Standards Track MCI December 1998 Network Working Group Request for Comments: 2476 Category: Standards Track R. Gellens QUALCOMM J. Klensin MCI December 1998 Message Submission Status of this Memo This document specifies an Internet standards

More information

Who s Marcus? mail() 2008 Marcus Bointon

Who s Marcus? mail() 2008 Marcus Bointon 1 Who s Marcus? Programming since 1982 Years of multimedia production for CD-ROM In PHP since 2001 Technical Director of Synchromedia Ltd Sole architect and coder of Smartmessages.net Delivering around

More information

Computer Network 1 1

Computer Network 1 1 Computer Network 1 1 Chapter 10: Application Layer Advanced Principal Concepts Samples and Techniques Foundation Summary Question and Answer 2 Outline Application Layer There is a need for support protocols,

More information

CSC 4900 Computer Networks:

CSC 4900 Computer Networks: CSC 4900 Computer Networks: Email Professor Henry Carter Fall 2017 Villanova University Department of Computing Sciences Review Last week we talked about design principles, and the application protocols

More information

Cloud SMS API Guide. Version 5.1

Cloud SMS API Guide. Version 5.1 Cloud SMS API Guide Version 5.1 Cloud API Guide v5.1 Page 1 of 18 Table of Content 1 Overview 1 2 MACH Push Messaging 2 3 MT API Details 3 3.1 Send Message 3 3.2 Send Long Concatenated Messages 8 4 MO

More information

SOAP API. The correct URL has been hidden. Please contact your account manager for the full URL information.

SOAP API. The correct URL has been hidden. Please contact your account manager for the full URL information. SMS Help Guides TNZ Group Limited sales@tnz.co.nz +64 9 9293000 +64 9 522 8839 SOAP API SOAP is a simple way of sending SMS/TXT messages via the internet. It is a great solution for integration into existing

More information