You are here

function mailhandler_open_mailbox in Mailhandler 6

Same name and namespace in other branches
  1. 7 mailhandler.retrieve.inc \mailhandler_open_mailbox()

(DEPRECATED) Establish IMAP stream connection to specified mailbox.

Related topics

2 calls to mailhandler_open_mailbox()
mailhandler_retrieve in ./mailhandler.retrieve.inc
Connect to mailbox and run message retrieval
mailhandler_retrieve_message in ./mailhandler.retrieve.inc
Retrieve individual messages from an IMAP result

File

./mailhandler.retrieve.inc, line 436
Mailbox connection code.

Code

function mailhandler_open_mailbox($mailbox) {
  mailhandler_watchdog_deprecated();
  return mailhandler_mailbox_stream_open($mailbox);
}