aboutsummaryrefslogtreecommitdiffstats
path: root/camel/camel-transport.h
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2002-01-16 03:22:14 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2002-01-16 03:22:14 +0800
commitb238693b64aa877efe1d0d09aa8129748be095ed (patch)
tree96b6a2ba9ddc58a653f0d03564b3faa8d77d5583 /camel/camel-transport.h
parent811c9c4acdc308b55d38dda2fda2e30433cd5e5b (diff)
downloadgsoc2013-evolution-b238693b64aa877efe1d0d09aa8129748be095ed.tar
gsoc2013-evolution-b238693b64aa877efe1d0d09aa8129748be095ed.tar.gz
gsoc2013-evolution-b238693b64aa877efe1d0d09aa8129748be095ed.tar.bz2
gsoc2013-evolution-b238693b64aa877efe1d0d09aa8129748be095ed.tar.lz
gsoc2013-evolution-b238693b64aa877efe1d0d09aa8129748be095ed.tar.xz
gsoc2013-evolution-b238693b64aa877efe1d0d09aa8129748be095ed.tar.zst
gsoc2013-evolution-b238693b64aa877efe1d0d09aa8129748be095ed.zip
Updated to match the new send_to API. (smtp_send): Get the from address
2002-01-15 Jeffrey Stedfast <fejj@ximian.com> * providers/smtp/camel-smtp-transport.c (smtp_send_to): Updated to match the new send_to API. (smtp_send): Get the from address and pass that along to smtp_send_to(). * providers/sendmail/camel-sendmail-transport.c (sendmail_send_to): Updated to match the new send_to API. * camel-transport.c (camel_transport_send_to): Now takes a from argument too. svn path=/trunk/; revision=15328
Diffstat (limited to 'camel/camel-transport.h')
-rw-r--r--camel/camel-transport.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/camel/camel-transport.h b/camel/camel-transport.h
index dbe9c54f38..418fc402a2 100644
--- a/camel/camel-transport.h
+++ b/camel/camel-transport.h
@@ -60,7 +60,8 @@ typedef struct {
gboolean (*send) (CamelTransport *transport, CamelMedium *message,
CamelException *ex);
gboolean (*send_to) (CamelTransport *transport, CamelMedium *message,
- CamelAddress *recipients, CamelException *ex);
+ CamelAddress *from, CamelAddress *recipients,
+ CamelException *ex);
} CamelTransportClass;
@@ -72,9 +73,9 @@ gboolean camel_transport_send (CamelTransport *transport,
CamelMedium *message,
CamelException *ex);
-/* FIXME: This should use a camel-address */
gboolean camel_transport_send_to (CamelTransport *transport,
CamelMedium *message,
+ CamelAddress *from,
CamelAddress *recipients,
CamelException *ex);