diff options
author | nobody <nobody@localhost> | 2002-12-28 12:49:29 +0800 |
---|---|---|
committer | nobody <nobody@localhost> | 2002-12-28 12:49:29 +0800 |
commit | b1face8c6b53c58513ce940393ab0f01c0f4ec17 (patch) | |
tree | 1e12040caec266ee2e16460c80583d4af3687d10 /mail/Mailer.idl | |
parent | 79d8fd91171f81a97c319616dcca32002269af55 (diff) | |
download | gsoc2013-evolution-GNOME_VFS_2_1_6.tar.gz gsoc2013-evolution-GNOME_VFS_2_1_6.tar.zst gsoc2013-evolution-GNOME_VFS_2_1_6.zip |
This commit was manufactured by cvs2svn to create tagGNOME_VFS_2_1_6
'GNOME_VFS_2_1_6'.
svn path=/tags/GNOME_VFS_2_1_6/; revision=19192
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); - }; -}; -}; - |