php_imap.h 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234
  1. /*
  2. +----------------------------------------------------------------------+
  3. | PHP Version 5 |
  4. +----------------------------------------------------------------------+
  5. | Copyright (c) 1997-2016 The PHP Group |
  6. +----------------------------------------------------------------------+
  7. | This source file is subject to version 3.01 of the PHP license, |
  8. | that is bundled with this package in the file LICENSE, and is |
  9. | available through the world-wide-web at the following url: |
  10. | http://www.php.net/license/3_01.txt |
  11. | If you did not receive a copy of the PHP license and are unable to |
  12. | obtain it through the world-wide-web, please send a note to |
  13. | license@php.net so we can mail you a copy immediately. |
  14. +----------------------------------------------------------------------+
  15. | Authors: Rex Logan <veebert@dimensional.com> |
  16. | Mark Musone <musone@afterfive.com> |
  17. | Brian Wang <brian@vividnet.com> |
  18. | Kaj-Michael Lang <milang@tal.org> |
  19. | Antoni Pamies Olive <toni@readysoft.net> |
  20. | Rasmus Lerdorf <rasmus@php.net> |
  21. | Chuck Hagenbuch <chuck@horde.org> |
  22. | Andrew Skalski <askalski@chekinc.com> |
  23. | Hartmut Holzgraefe <hholzgra@php.net> |
  24. | Jani Taskinen <sniper@iki.fi> |
  25. | Daniel R. Kalowsky <kalowsky@php.net> |
  26. | PHP 4.0 updates: Zeev Suraski <zeev@zend.com> |
  27. +----------------------------------------------------------------------+
  28. */
  29. /* $Id$ */
  30. #ifndef PHP_IMAP_H
  31. #define PHP_IMAP_H
  32. #if HAVE_IMAP
  33. #if defined(HAVE_IMAP2000) || defined(HAVE_IMAP2001)
  34. /* these are used for quota support */
  35. # include "c-client.h" /* includes mail.h and rfc822.h */
  36. # include "imap4r1.h" /* location of c-client quota functions */
  37. #else
  38. # include "mail.h"
  39. # include "rfc822.h"
  40. #endif
  41. extern zend_module_entry imap_module_entry;
  42. #define imap_module_ptr &imap_module_entry
  43. /* Data types */
  44. #ifdef IMAP41
  45. #define LSIZE text.size
  46. #define LTEXT text.data
  47. #define DTYPE int
  48. #define CONTENT_PART nested.part
  49. #define CONTENT_MSG_BODY nested.msg->body
  50. #define IMAPVER "Imap 4R1"
  51. #else
  52. #define LSIZE size
  53. #define LTEXT text
  54. #define DTYPE char
  55. #define CONTENT_PART contents.part
  56. #define CONTENT_MSG_BODY contents.msg.body
  57. #define IMAPVER "Imap 4"
  58. #endif
  59. /* Determines how mm_list() and mm_lsub() are to return their results. */
  60. typedef enum {
  61. FLIST_ARRAY,
  62. FLIST_OBJECT
  63. } folderlist_style_t;
  64. typedef struct php_imap_le_struct {
  65. MAILSTREAM *imap_stream;
  66. long flags;
  67. } pils;
  68. typedef struct php_imap_mailbox_struct {
  69. SIZEDTEXT text;
  70. DTYPE delimiter;
  71. long attributes;
  72. struct php_imap_mailbox_struct *next;
  73. } FOBJECTLIST;
  74. typedef struct php_imap_error_struct {
  75. SIZEDTEXT text;
  76. long errflg;
  77. struct php_imap_error_struct *next;
  78. } ERRORLIST;
  79. typedef struct _php_imap_message_struct {
  80. unsigned long msgid;
  81. struct _php_imap_message_struct *next;
  82. } MESSAGELIST;
  83. /* Functions */
  84. PHP_MINIT_FUNCTION(imap);
  85. PHP_RINIT_FUNCTION(imap);
  86. PHP_RSHUTDOWN_FUNCTION(imap);
  87. PHP_MINFO_FUNCTION(imap);
  88. PHP_FUNCTION(imap_open);
  89. PHP_FUNCTION(imap_popen);
  90. PHP_FUNCTION(imap_reopen);
  91. PHP_FUNCTION(imap_num_msg);
  92. PHP_FUNCTION(imap_num_recent);
  93. PHP_FUNCTION(imap_headers);
  94. PHP_FUNCTION(imap_headerinfo);
  95. PHP_FUNCTION(imap_rfc822_parse_headers);
  96. PHP_FUNCTION(imap_body);
  97. PHP_FUNCTION(imap_fetchstructure);
  98. PHP_FUNCTION(imap_fetchbody);
  99. PHP_FUNCTION(imap_fetchmime);
  100. PHP_FUNCTION(imap_savebody);
  101. PHP_FUNCTION(imap_gc);
  102. PHP_FUNCTION(imap_expunge);
  103. PHP_FUNCTION(imap_delete);
  104. PHP_FUNCTION(imap_undelete);
  105. PHP_FUNCTION(imap_check);
  106. PHP_FUNCTION(imap_close);
  107. PHP_FUNCTION(imap_mail_copy);
  108. PHP_FUNCTION(imap_mail_move);
  109. PHP_FUNCTION(imap_createmailbox);
  110. PHP_FUNCTION(imap_renamemailbox);
  111. PHP_FUNCTION(imap_deletemailbox);
  112. PHP_FUNCTION(imap_listmailbox);
  113. PHP_FUNCTION(imap_scanmailbox);
  114. PHP_FUNCTION(imap_subscribe);
  115. PHP_FUNCTION(imap_unsubscribe);
  116. PHP_FUNCTION(imap_append);
  117. PHP_FUNCTION(imap_ping);
  118. PHP_FUNCTION(imap_base64);
  119. PHP_FUNCTION(imap_qprint);
  120. PHP_FUNCTION(imap_8bit);
  121. PHP_FUNCTION(imap_binary);
  122. PHP_FUNCTION(imap_mailboxmsginfo);
  123. PHP_FUNCTION(imap_rfc822_write_address);
  124. PHP_FUNCTION(imap_rfc822_parse_adrlist);
  125. PHP_FUNCTION(imap_setflag_full);
  126. PHP_FUNCTION(imap_clearflag_full);
  127. PHP_FUNCTION(imap_sort);
  128. PHP_FUNCTION(imap_fetchheader);
  129. PHP_FUNCTION(imap_fetchtext);
  130. PHP_FUNCTION(imap_uid);
  131. PHP_FUNCTION(imap_msgno);
  132. PHP_FUNCTION(imap_list);
  133. PHP_FUNCTION(imap_list_full);
  134. PHP_FUNCTION(imap_listscan);
  135. PHP_FUNCTION(imap_lsub);
  136. PHP_FUNCTION(imap_lsub_full);
  137. PHP_FUNCTION(imap_create);
  138. PHP_FUNCTION(imap_rename);
  139. PHP_FUNCTION(imap_status);
  140. PHP_FUNCTION(imap_bodystruct);
  141. PHP_FUNCTION(imap_fetch_overview);
  142. PHP_FUNCTION(imap_mail_compose);
  143. PHP_FUNCTION(imap_alerts);
  144. PHP_FUNCTION(imap_errors);
  145. PHP_FUNCTION(imap_last_error);
  146. PHP_FUNCTION(imap_mail);
  147. PHP_FUNCTION(imap_search);
  148. PHP_FUNCTION(imap_utf8);
  149. PHP_FUNCTION(imap_utf7_decode);
  150. PHP_FUNCTION(imap_utf7_encode);
  151. #ifdef HAVE_IMAP_MUTF7
  152. PHP_FUNCTION(imap_utf8_to_mutf7);
  153. PHP_FUNCTION(imap_mutf7_to_utf8);
  154. #endif
  155. PHP_FUNCTION(imap_mime_header_decode);
  156. PHP_FUNCTION(imap_thread);
  157. PHP_FUNCTION(imap_timeout);
  158. #if defined(HAVE_IMAP2000) || defined(HAVE_IMAP2001)
  159. PHP_FUNCTION(imap_get_quota);
  160. PHP_FUNCTION(imap_get_quotaroot);
  161. PHP_FUNCTION(imap_set_quota);
  162. PHP_FUNCTION(imap_setacl);
  163. PHP_FUNCTION(imap_getacl);
  164. #endif
  165. ZEND_BEGIN_MODULE_GLOBALS(imap)
  166. char *imap_user;
  167. char *imap_password;
  168. STRINGLIST *imap_alertstack;
  169. ERRORLIST *imap_errorstack;
  170. STRINGLIST *imap_folders;
  171. STRINGLIST *imap_folders_tail;
  172. STRINGLIST *imap_sfolders;
  173. STRINGLIST *imap_sfolders_tail;
  174. MESSAGELIST *imap_messages;
  175. MESSAGELIST *imap_messages_tail;
  176. FOBJECTLIST *imap_folder_objects;
  177. FOBJECTLIST *imap_folder_objects_tail;
  178. FOBJECTLIST *imap_sfolder_objects;
  179. FOBJECTLIST *imap_sfolder_objects_tail;
  180. folderlist_style_t folderlist_style;
  181. long status_flags;
  182. unsigned long status_messages;
  183. unsigned long status_recent;
  184. unsigned long status_unseen;
  185. unsigned long status_uidnext;
  186. unsigned long status_uidvalidity;
  187. #if defined(HAVE_IMAP2000) || defined(HAVE_IMAP2001)
  188. zval **quota_return;
  189. zval *imap_acl_list;
  190. #endif
  191. /* php_stream for php_mail_gets() */
  192. php_stream *gets_stream;
  193. zend_bool enable_rsh;
  194. ZEND_END_MODULE_GLOBALS(imap)
  195. #ifdef ZTS
  196. # define IMAPG(v) TSRMG(imap_globals_id, zend_imap_globals *, v)
  197. #else
  198. # define IMAPG(v) (imap_globals.v)
  199. #endif
  200. #else
  201. #define imap_module_ptr NULL
  202. #endif
  203. #define phpext_imap_ptr imap_module_ptr
  204. #endif /* PHP_IMAP_H */