1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141
|
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/* camel-transport.c : Abstract class for an email transport */
/*
*
* Author :
* Dan Winship <danw@ximian.com>
*
* Copyright 2000 Ximian, Inc. (www.ximian.com)
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of version 2 of the GNU Lesser General Public
* License as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
* USA
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include "camel-address.h"
#include "camel-mime-message.h"
#include "camel-private.h"
#include "camel-transport.h"
static CamelServiceClass *parent_class = NULL;
/* Returns the class for a CamelTransport */
#define CT_CLASS(so) CAMEL_TRANSPORT_CLASS (CAMEL_OBJECT_GET_CLASS(so))
static int transport_setv (CamelObject *object, CamelException *ex, CamelArgV *args);
static int transport_getv (CamelObject *object, CamelException *ex, CamelArgGetV *args);
static void
camel_transport_class_init (CamelTransportClass *camel_transport_class)
{
CamelObjectClass *camel_object_class = CAMEL_OBJECT_CLASS (camel_transport_class);
parent_class = CAMEL_SERVICE_CLASS (camel_type_get_global_classfuncs (camel_service_get_type ()));
/* virtual method overload */
camel_object_class->setv = transport_setv;
camel_object_class->getv = transport_getv;
}
static void
camel_transport_init (gpointer object, gpointer klass)
{
CamelTransport *xport = object;
xport->priv = g_malloc0 (sizeof (struct _CamelTransportPrivate));
xport->priv->send_lock = g_mutex_new ();
}
static void
camel_transport_finalize (CamelObject *object)
{
CamelTransport *xport = CAMEL_TRANSPORT (object);
g_mutex_free (xport->priv->send_lock);
g_free (xport->priv);
}
CamelType
camel_transport_get_type (void)
{
static CamelType type = CAMEL_INVALID_TYPE;
if (type == CAMEL_INVALID_TYPE) {
type = camel_type_register (CAMEL_SERVICE_TYPE,
"CamelTransport",
sizeof (CamelTransport),
sizeof (CamelTransportClass),
(CamelObjectClassInitFunc) camel_transport_class_init,
NULL,
(CamelObjectInitFunc) camel_transport_init,
(CamelObjectFinalizeFunc) camel_transport_finalize);
}
return type;
}
static int
transport_setv (CamelObject *object, CamelException *ex, CamelArgV *args)
{
/* CamelTransport doesn't currently have anything to set */
return CAMEL_OBJECT_CLASS (parent_class)->setv (object, ex, args);
}
static int
transport_getv (CamelObject *object, CamelException *ex, CamelArgGetV *args)
{
/* CamelTransport doesn't currently have anything to get */
return CAMEL_OBJECT_CLASS (parent_class)->getv (object, ex, args);
}
/**
* camel_transport_send_to:
* @transport: a #CamelTransport object
* @message: a #CamelMimeMessage to send
* @from: a #CamelAddress to send from
* @recipients: a #CamelAddress containing all recipients
* @ex: a #CamelException
*
* Sends the message to the given recipients, regardless of the contents
* of @message. If the message contains a "Bcc" header, the transport
* is responsible for stripping it.
*
* Return %TRUE on success or %FALSE on fail
**/
gboolean
camel_transport_send_to (CamelTransport *transport, CamelMimeMessage *message,
CamelAddress *from, CamelAddress *recipients,
CamelException *ex)
{
gboolean sent;
g_return_val_if_fail (CAMEL_IS_TRANSPORT (transport), FALSE);
g_return_val_if_fail (CAMEL_IS_MIME_MESSAGE (message), FALSE);
g_return_val_if_fail (CAMEL_IS_ADDRESS (from), FALSE);
g_return_val_if_fail (CAMEL_IS_ADDRESS (recipients), FALSE);
CAMEL_TRANSPORT_LOCK (transport, send_lock);
sent = CT_CLASS (transport)->send_to (transport, message,
from, recipients, ex);
CAMEL_TRANSPORT_UNLOCK (transport, send_lock);
return sent;
}
|