Top | ![]() |
![]() |
![]() |
![]() |
|
camel_imapx_store_is_gmail_server () |
|
camel_imapx_store_get_conn_manager () |
|
camel_imapx_store_set_connecting_server () |
|
camel_imapx_store_is_connecting_concurrent_connection () |
CamelIMAPXNamespaceResponse * | camel_imapx_store_ref_namespaces () |
|
camel_imapx_store_set_namespaces () |
CamelIMAPXMailbox * | camel_imapx_store_ref_mailbox () |
|
camel_imapx_store_list_mailboxes () |
|
camel_imapx_store_emit_mailbox_updated () |
|
camel_imapx_store_handle_mailbox_rename () |
|
camel_imapx_store_handle_list_response () |
|
camel_imapx_store_handle_lsub_response () |
CamelFolderQuotaInfo * | camel_imapx_store_dup_quota_info () |
|
camel_imapx_store_set_quota_info () |
|
camel_imapx_store_dump_queue_status () |
gboolean camel_imapx_store_is_gmail_server ();
CamelIMAPXStore *store
CamelIMAPXConnManager * camel_imapx_store_get_conn_manager ();
CamelIMAPXStore *store
void camel_imapx_store_set_connecting_server (,
CamelIMAPXStore *store,
CamelIMAPXServer *server);
gboolean is_concurrent_connection
gboolean camel_imapx_store_is_connecting_concurrent_connection ();
CamelIMAPXStore *imapx_store
CamelIMAPXNamespaceResponse *
camel_imapx_store_ref_namespaces (CamelIMAPXStore *imapx_store
);
Returns the CamelIMAPXNamespaceResponse for is
. This is obtained
during the connection phase if the IMAP server lists the "NAMESPACE"
keyword in its CAPABILITY response, or else is fabricated from the
first LIST response.
The returned CamelIMAPXNamespaceResponse is reference for thread-safety
and must be unreferenced with g_object_unref()
Since: 3.16
void camel_imapx_store_set_namespaces (,
CamelIMAPXStore *imapx_storeCamelIMAPXNamespaceResponse *namespaces
);
CamelIMAPXMailbox * camel_imapx_store_ref_mailbox (,
CamelIMAPXStore *imapx_storeconst
);gchar *mailbox_name
Looks up a NULL
The returned CamelIMAPXMailbox is referenced for thread-safety and
should be unreferenced with g_object_unref()
Since: 3.16
GList * camel_imapx_store_list_mailboxes (,
CamelIMAPXStore *imapx_storeCamelIMAPXNamespace *namespace_
,const
);gchar *pattern
Returns a list of CamelIMAPXMailbox instances which match namespace
and
pattern
. The pattern
may contain wildcard characters '*' and '%', which
are interpreted similar to the IMAP LIST command. A NULL
pattern
lists
all mailboxes in namespace
; equivalent to passing "*".
The mailboxes returned in the list are referenced for thread-safety.
They must each be unreferenced with g_object_unref()
g_list_free()
An easy way to free the list properly in one step is as follows:
g_list_free_full (list, g_object_unref);
imapx_store |
a |
|
namespace_ |
||
pattern |
mailbox name with possible wildcards, or |
Since: 3.16
void camel_imapx_store_emit_mailbox_updated (,
CamelIMAPXStore *imapx_storeCamelIMAPXMailbox *mailbox
);
void camel_imapx_store_handle_mailbox_rename (,
CamelIMAPXStore *imapx_storeCamelIMAPXMailbox *old_mailbox
,const
);gchar *new_mailbox_name
void camel_imapx_store_handle_list_response (,
CamelIMAPXStore *imapx_store,
CamelIMAPXServer *imapx_serverCamelIMAPXListResponse *response
);
void camel_imapx_store_handle_lsub_response (,
CamelIMAPXStore *imapx_store,
CamelIMAPXServer *imapx_serverCamelIMAPXListResponse *response
);
CamelFolderQuotaInfo * camel_imapx_store_dup_quota_info (,
CamelIMAPXStore *storeconst
);gchar *quota_root_name
void camel_imapx_store_set_quota_info (,
CamelIMAPXStore *storeconst
,gchar *quota_root_nameconst CamelFolderQuotaInfo *info
);