aboutsummaryrefslogtreecommitdiffstats
path: root/mail/Mailer.idl
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2003-10-30 00:56:45 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2003-10-30 00:56:45 +0800
commit5843bd83e79d16eecf87df5aa357c9577cf60a9c (patch)
tree7a2124146d8317754fd524591485ad22344002e9 /mail/Mailer.idl
parent26f77b16e1f8a3207554e607e2ee18bb7b14c97d (diff)
downloadgsoc2013-evolution-5843bd83e79d16eecf87df5aa357c9577cf60a9c.tar
gsoc2013-evolution-5843bd83e79d16eecf87df5aa357c9577cf60a9c.tar.gz
gsoc2013-evolution-5843bd83e79d16eecf87df5aa357c9577cf60a9c.tar.bz2
gsoc2013-evolution-5843bd83e79d16eecf87df5aa357c9577cf60a9c.tar.lz
gsoc2013-evolution-5843bd83e79d16eecf87df5aa357c9577cf60a9c.tar.xz
gsoc2013-evolution-5843bd83e79d16eecf87df5aa357c9577cf60a9c.tar.zst
gsoc2013-evolution-5843bd83e79d16eecf87df5aa357c9577cf60a9c.zip
Nuked the MailConfig interface stuff.
2003-10-29 Jeffrey Stedfast <fejj@ximian.com> * GNOME_Evolution_Mail.server.in.in: Nuked the MailConfig interface stuff. * Mailer.idl: Removed. None of the interfaces are needed/used anymore. * folder-info.[c,h]: Removed. The summary was the only thing that needed/used this code and it has been nuked into oblivion, so these interfaces are no longer needed. * mail-config.c: Removed old crufty CORBA interface snot that is no longer needed or used. svn path=/trunk/; revision=23118
Diffstat (limited to 'mail/Mailer.idl')
-rw-r--r--mail/Mailer.idl67
1 files changed, 0 insertions, 67 deletions
diff --git a/mail/Mailer.idl b/mail/Mailer.idl
deleted file mode 100644
index 353d2bae46..0000000000
--- a/mail/Mailer.idl
+++ /dev/null
@@ -1,67 +0,0 @@
-/*
- * mail.idl: Mail interfaces for Evolution
- *
- * Author:
- * Miguel de Icaza (miguel@ximian.com)
- *
- * (C) 2000 Ximian, Inc.
- */
-
-#include <Bonobo.idl>
-
-module GNOME {
-module Evolution {
-
- interface FolderInfo : Bonobo::Unknown {
- struct MessageCount {
- string path;
- long count;
- long unread;
- };
-
- void getInfo (in string foldername,
- in Bonobo::Listener listener);
- };
-
- interface MailConfig : Bonobo::Unknown {
-
- struct Identity {
- string name;
- string address;
- string reply_to;
- string organization;
- };
-
- struct Service {
- string url;
- boolean keep_on_server;
- boolean auto_check;
- long auto_check_time;
- boolean save_passwd;
- boolean enabled;
- };
-
- struct Account {
- string name;
-
- Identity id;
- Service source;
- Service transport;
-
- string drafts_folder_uri;
- string sent_folder_uri;
- };
-
- void addAccount (in Account acc);
- void removeAccount (in string name);
- };
-
- interface MailFilter : Bonobo::Unknown {
-
- void addFilter (in string rule);
-
- void removeFilter (in string rule);
- };
-};
-};
-