Skip to content

Latest commit

 

History

History
59 lines (42 loc) · 1.07 KB

quick-start.md

File metadata and controls

59 lines (42 loc) · 1.07 KB

Quick Start

Writing Your First XMTP App

The simplest ESMTP server setup imaginable:

const xmtp = require('xmtp-core');
const app = xmtp();

app.listen(25);

Extending Your First XMTP App

Generally, an XMTP app is structured like this:

const xmtp = require('xmtp-core');
const app = xmtp();

// Settings
app.set('me', 'localhost');

// Plugins
app.plugin('auth', {
	methods: ['PLAIN', 'LOGIN'],
	async onAuth({ username, password }) {
		const user = await db.getUser(username, password);

		return user;
	}
});

// Hooks
app.hook('rcpt', async (next, rcpt) => {
	if (rcpt.host === 'mydomain.com') {
		return true;
	}

	return await next();
});

// Events
app.on('listening', server => {
	console.log(`Listening on ${server.address().address}:${server.address().port}`);
});

// Listen
app.listen(25);

Running Your First XMTP App

Make sure you run Node.js version 7.0.0 or higher with the --harmony-async-await flag. To run with a lower version of Node.js, run your app with Babel and the es2017 preset.

$ node --harmony-async-await index.js