Sophie

Sophie

distrib > Mandriva > 2011.0 > i586 > media > contrib-release-debug > by-pkgid > b43fe4c6e31a558117fb60e94a156953 > files > 24

esmtp-debug-1.2-2mdv2011.0.i586.rpm

/**
 * \file smtp.h
 */

#ifndef _SMTP_H
#define _SMTP_H


#include <libesmtp.h>

#include "list.h"
#include "message.h"


/** 
 * \name Identity management
 */
/*@{*/

/**
 * Identity.
 */
typedef struct {
	struct list_head list;
	
	char *address;	/**< reverse path address */

	char *host;	/**< hostname and service (port) */

	/** \name Auth extension */
	/*@{*/
	char *user;
	char *pass;
	/*@}*/

	/** \name StartTLS extension */
	/*@{*/
	enum starttls_option starttls;
	char *certificate_passphrase;
	/*@}*/

	/** \name Pre- and post-connect commands */
	/*@{*/
	char *preconnect;
	char *postconnect;
	/*@}*/

	char *qualifydomain;	/**< domain to qualify unqualified addresses with */

	char *helo;	/**< hostname to tell with helo */

	/** \name Forcing options */
	/*@{*/
	char *force_reverse_path;
	char *force_sender;
	int prohibit_msgid;
	/*@}*/
} identity_t;

/** 
 * Default identity.
 */
extern identity_t *default_identity;

/** Create a new identity */
identity_t *identity_new(void);

/** Add a new identity */
void identity_add(identity_t *identity);

/** Lookup a identity */
identity_t *identity_lookup(const char *address);

/** Initialize the identities resources */
void identities_init(void);

/** Cleanup the resources associated with the identities */
void identities_cleanup(void);

/*@}*/


/** Send a message via a SMTP server */
void smtp_send(message_t *msg, identity_t *identity);

#endif