summaryrefslogtreecommitdiff
path: root/email-core/include/em-core-mailbox.h
blob: 9c1066de5e519a18b35e0d017129d335f6c9b23b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
/*
*  email-service
*
* Copyright (c) 2000 - 2011 Samsung Electronics Co., Ltd. All rights reserved.
*
* Contact: Kyuho Jo <kyuho.jo@samsung.com>, Sunghyun Kwon <sh0701.kwon@samsung.com>
* 
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/



/******************************************************************************
 * File :  em-core-mailbox.h
 * Desc :  Local Mailbox Management Header
 *
 * Auth : 
 *
 * History : 
 *    2006.08.16  :  created
 *****************************************************************************/
#ifndef __EM_CORE_MAILBOX_H__
#define __EM_CORE_MAILBOX_H__

#ifdef __cplusplus
extern "C"
{
#endif /* __cplusplus */

#include "c-client.h"

#if !defined(EXPORT_API)
#define EXPORT_API __attribute__((visibility("default")))
#endif

typedef enum      
{
	EM_CORE_STREAM_TYPE_RECV = 0, 	
	EM_CORE_STREAM_TYPE_SEND, 		
} em_core_stream_type_t;

#ifdef __FEATURE_KEEP_CONNECTION__
EXPORT_API int em_core_remove_connection_info(int account_id);
#endif /* __FEATURE_KEEP_CONNECTION__ */
/*  in SMTP case, path argument must be (ENCODED_PATH_SMTP) */
/*  ex) em_core_mailbox_open(xxx, (char *)ENCODED_PATH_SMTP, xxx, xxx); */
EXPORT_API int em_core_mailbox_open_with_account_info(emf_account_t *ref_account, char *mailbox, void **mail_stream, int *err_code);
EXPORT_API int em_core_mailbox_open(int account_id, char *mailbox, void **mail_stream, int *err_code);
EXPORT_API int em_core_mailbox_close(int account_id, void *mail_stream);
#ifdef __FEATURE_KEEP_CONNECTION__
EXPORT_API void em_core_close_receiving_stream();
EXPORT_API void em_core_close_partial_body_stream();
EXPORT_API void em_core_reset_streams();
#endif

EXPORT_API int em_core_mailbox_get_list_to_be_sync(int account_id, emf_mailbox_t **mailbox_list, int *p_count, int *err_code);
EXPORT_API int em_core_mailbox_get_list(int account_id, emf_mailbox_t **mailbox_list, int *p_count, int *err_code);
EXPORT_API int em_core_mailbox_free(emf_mailbox_t **mailbox_list, int count, int *err_code);
EXPORT_API int em_core_mailbox_get_mail_count(emf_mailbox_t *mailbox, int *total, int *unseen, int *err_code);
EXPORT_API int em_core_mailbox_create(emf_mailbox_t *new_mailbox, int on_server, int *err_code);
EXPORT_API int em_core_mailbox_delete(emf_mailbox_t *mailbox, int on_server, int *err_code);
EXPORT_API int em_core_mailbox_delete_all(emf_mailbox_t *mailbox, int *err_code);
EXPORT_API int em_core_mailbox_update(emf_mailbox_t *old_mailbox, emf_mailbox_t *new_mailbox, int *err_code);
EXPORT_API int em_core_save_local_activity_sync(int account_id, int *err_code);
EXPORT_API void em_core_bind_mailbox_type(emf_mailbox_t *mailbox_list);
EXPORT_API int em_core_send_mail_event(emf_mailbox_t *mailbox, int mail_id , int *err_code);
EXPORT_API int em_core_partial_body_thd_local_activity_sync(int *is_event_inserted, int *err_code);
EXPORT_API int em_core_get_mailbox_by_type(int account_id, emf_mailbox_type_e mailbox_type, emf_mailbox_t *spam_mailbox, int *err_code);

#ifdef __LOCAL_ACTIVITY__
EXPORT_API int em_core_local_activity_sync(int account_id, int *err_code);
EXPORT_API int em_core_save_local_activity_sync(int account_id, int *err_code);
#endif


#ifdef __cplusplus
}
#endif /* __cplusplus */

#endif