diff options
Diffstat (limited to 'mail/Mailer.idl')
-rw-r--r-- | mail/Mailer.idl | 67 |
1 files changed, 67 insertions, 0 deletions
diff --git a/mail/Mailer.idl b/mail/Mailer.idl new file mode 100644 index 0000000000..353d2bae46 --- /dev/null +++ b/mail/Mailer.idl @@ -0,0 +1,67 @@ +/* + * 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); + }; +}; +}; + |