/* -*- 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 * * 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 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 General Public License for more details. * * You should have received a copy of the GNU 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 #endif #include "camel-transport.h" #include "camel-address.h" #include "camel-mime-message.h" #include "camel-private.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: the transport * @message: the message * @from: from address * @recipients: the 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 value: success or failure. **/ 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; } files/serve-10.1.2 FreeBSD GNOME current development ports (https://github.com/freebsd/freebsd-ports-gnome)
aboutsummaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* - Update to 0.6-15tota2017-09-062-4/+4
* - Update to 0.6-13tota2017-05-082-5/+6
* - Update to 0.6-8tota2016-10-092-6/+8
* - Update to 0.6-6tota2016-07-312-5/+6
* - Update to 0.6-5tota2016-06-052-3/+4
* - Update to 0.6-4tota2016-04-152-4/+5
* Remove ${PORTSDIR}/ from dependencies, categories m, n, o, and p.mat2016-04-011-4/+4
* - Update to 0.5-92tota2016-01-262-5/+4
* - Update to 0.5-88tota2015-12-063-8/+7
* Update the default version of GCC in the Ports Collection from GCC 4.7.4gerald2014-09-111-0/+1
* - Update to 0.5-74tota2014-06-252-4/+3
* Update the default version of GCC used in the Ports Collection fromgerald2014-03-111-0/+1
* - Update to 0.5-71tota2014-02-022-3/+3
* Convert Mk/bsd.cran.mk to the Uses framework.dbn2013-12-281-2/+1
* Add stage support to Mk/bsd.cran.mk and all USE_R_MOD ports (aka R-cran-*).dbn2013-11-281-1/+0
* - Update to 0.5-68tota2013-11-232-4/+3
* Update math/R to 3.0.2 patched r64207 and math/R-cran-SuppDists to 1.1-9.1;bf2013-11-131-1/+1
* Update to libmpc version 1.0.1 which brings the following fixes:gerald2013-10-261-0/+1
* - Update to 0.5-65tota2013-09-232-3/+3
* Add NO_STAGE all over the place in preparation for the staging support (cat: ...bapt2013-09-211-0/+1
* - Update to 0.5-64tota2013-09-072-3/+3
* - Update to 0.5-63tota2013-09-062-3/+3
* - Update to 0.5-62tota2013-08-122-4/+3
* - Update to 0.5-61tota2013-07-272-3/+3
* - Update to 0.5-60tota2013-07-062-3/+3
* - Update to 0.5-57tota2013-06-232-4/+3
* Update math/R to 3.0.1-patched, and adjust dependent ports;bf2013-05-281-1/+1
* update math/R to 2.15.3, and adjust dependent portsbf2013-03-071-0/+1
* - Update to 0.5-56tota2013-01-132-4/+3
* update the R base ports to 2.15.2 and adjust dependent portsbf2013-01-051-0/+1
* - Update to 0.5-55tota2012-12-232-3/+3
* - Update to 0.5-53tota2012-11-232-4/+4
* - Update to 0.5-52tota2012-11-192-4/+6
* - Update to 0.5-51tota2012-09-283-4/+4
* - Update to 0.5-50tota2012-09-022-9/+3
* Fix typos in COMMENTcs2012-07-281-1/+1
* update math/R to 2.15.1, switch to the new options format, andbf2012-06-27