diff options
author | nobody <nobody@localhost> | 2002-11-01 21:26:26 +0800 |
---|---|---|
committer | nobody <nobody@localhost> | 2002-11-01 21:26:26 +0800 |
commit | 0ffd79d9eacd8e9049779e19c9f9c0f3e11e48c4 (patch) | |
tree | 8ae783cd6c35d09da0b72d5d0a203f8980c8eddf /mail/Mailer.idl | |
parent | 8ae8cb35257f42c905c86eb424759fdfde97eb41 (diff) | |
download | gsoc2013-evolution-RELEASE_1_0_1.tar.gz gsoc2013-evolution-RELEASE_1_0_1.tar.zst gsoc2013-evolution-RELEASE_1_0_1.zip |
This commit was manufactured by cvs2svn to create tagRELEASE_1_0_1
'RELEASE_1_0_1'.
svn path=/tags/RELEASE_1_0_1/; revision=18481
Diffstat (limited to 'mail/Mailer.idl')
-rw-r--r-- | mail/Mailer.idl | 67 |
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); - }; -}; -}; - |