| 1 |
<?php
|
| 2 |
// $Id: mailhandler.module,v 1.87.2.13 2008/07/15 14:25:07 weitzman Exp $
|
| 3 |
|
| 4 |
/**
|
| 5 |
* Retrieve all msgs from a given mailbox and process them.
|
| 6 |
*/
|
| 7 |
function mailhandler_retrieve($mailbox) {
|
| 8 |
|
| 9 |
if ($mailbox['domain']) {
|
| 10 |
if ($mailbox['imap'] == 1) {
|
| 11 |
$box = '{'. $mailbox['domain'] .':'. $mailbox['port'] . $mailbox['extraimap'] .'}'. $mailbox['folder'];
|
| 12 |
}
|
| 13 |
else {
|
| 14 |
$box = '{'. $mailbox['domain'] .':'. $mailbox['port'] .'/pop3'. $mailbox['extraimap'] .'}'. $mailbox['folder'];
|
| 15 |
}
|
| 16 |
$result = imap_open($box, $mailbox['name'], $mailbox['pass']);
|
| 17 |
$err = 'domain';
|
| 18 |
}
|
| 19 |
else {
|
| 20 |
$box = $mailbox['folder'];
|
| 21 |
$result = imap_open($box, '', '');
|
| 22 |
}
|
| 23 |
|
| 24 |
if ($result) {
|
| 25 |
$n = imap_num_msg($result);
|
| 26 |
$num_processed = 0;
|
| 27 |
for ($i = 1; $i <= $n; $i++) {
|
| 28 |
$header = imap_header($result, $i);
|
| 29 |
|
| 30 |
// only process new messages
|
| 31 |
if (!$mailbox['delete_after_read'] && $header->Unseen != 'U' && $header->Recent != 'N') {
|
| 32 |
continue;
|
| 33 |
}
|
| 34 |
|
| 35 |
$mime = explode(',', $mailbox['mime']);
|
| 36 |
|
| 37 |
// Get the first text part - this will be the node body
|
| 38 |
$origbody = mailhandler_get_part($result, $i, $mime[0]);
|
| 39 |
|
| 40 |
// If we didn't get a body from our first attempt, try the alternate format (HTML or PLAIN)
|
| 41 |
if (!$origbody) {
|
| 42 |
$origbody = mailhandler_get_part($result, $i, $mime[1]);
|
| 43 |
}
|
| 44 |
|
| 45 |
// Parse MIME parts, so all mailhandler modules have access to
|
| 46 |
// the full array of mime parts without having to process the email.
|
| 47 |
$mimeparts = mailhandler_get_parts($result, $i);
|
| 48 |
|
| 49 |
// Is this an empty message with no body and no mimeparts?
|
| 50 |
if (!$origbody && !$mimeparts) {
|
| 51 |
// @TODO: Log that we got an empty email?
|
| 52 |
continue;
|
| 53 |
}
|
| 54 |
|
| 55 |
$num_processed++;
|
| 56 |
|
| 57 |
// we must process before authenticating because the password may be in Commands
|
| 58 |
$node = mailhandler_process_message($header, $origbody, $mailbox);
|
| 59 |
|
| 60 |
// check if mail originates from an authenticated user
|
| 61 |
$node = mailhandler_authenticate($node, $header, $origbody, $mailbox);
|
| 62 |
|
| 63 |
// Put $mimeparts on the node
|
| 64 |
$node->mimeparts = $mimeparts;
|
| 65 |
|
| 66 |
// we need to change the current user
|
| 67 |
// this has to be done here to allow modules
|
| 68 |
// to create users
|
| 69 |
mailhandler_switch_user($node->uid);
|
| 70 |
|
| 71 |
// modules may override node elements before submitting. they do so by returning the node.
|
| 72 |
foreach (module_list() as $name) {
|
| 73 |
if (module_hook($name, 'mailhandler')) {
|
| 74 |
$function = $name .'_mailhandler';
|
| 75 |
if (!($node = $function($node, $result, $i, $header, $mailbox))) {
|
| 76 |
// Exit if a module has handled the submitted data.
|
| 77 |
break;
|
| 78 |
}
|
| 79 |
}
|
| 80 |
}
|
| 81 |
|
| 82 |
if ($node) {
|
| 83 |
if ($node->type == 'comment') {
|
| 84 |
mailhandler_comment_submit($node, $header, $mailbox, $origbody);
|
| 85 |
}
|
| 86 |
else {
|
| 87 |
mailhandler_node_submit($node, $header, $mailbox, $origbody);
|
| 88 |
}
|
| 89 |
}
|
| 90 |
// don't delete while we're only getting new messages
|
| 91 |
if ($mailbox['delete_after_read']) {
|
| 92 |
imap_delete($result, $i);
|
| 93 |
}
|
| 94 |
|
| 95 |
// switch back to original user
|
| 96 |
mailhandler_switch_user();
|
| 97 |
}
|
| 98 |
imap_close($result, CL_EXPUNGE);
|
| 99 |
return t('Mailhandler retrieve successful: %num_processed messages for %m', array('%num_processed' => $num_processed, '%m' => $mailbox['mail']));
|
| 100 |
}
|
| 101 |
else {
|
| 102 |
if ($err) {
|
| 103 |
watchdog('mailhandler', t('Mailhandler %c connection failed: %m', array('%c' => ($mailbox['imap'] ? 'imap' : 'POP3'), '%m' => $mailbox['mail'])), WATCHDOG_ERROR);
|
| 104 |
return t('Mailhandler %c connection failed: %m', array('%c' => ($mailbox['imap'] ? 'imap' : 'POP3'), '%m' => $mailbox['mail']));
|
| 105 |
}
|
| 106 |
else {
|
| 107 |
watchdog('mailhandler', t('Mailhandler: Could not access local folder: %m', array('%m' => $mailbox['mail'])), WATCHDOG_ERROR);
|
| 108 |
return t('Mailhandler could not access local folder: %m', array('%m' => $mailbox['mail']));
|
| 109 |
}
|
| 110 |
}
|
| 111 |
}
|
| 112 |
|
| 113 |
/**
|
| 114 |
* Create the comment.
|
| 115 |
*/
|
| 116 |
function mailhandler_comment_submit($node, $header, $mailbox, $origbody) {
|
| 117 |
if (!$node->subject) $node->subject = $node->title;
|
| 118 |
if (!$node->comment) $node->comment = $node->body;
|
| 119 |
// We want the comment to have the email time, not the current time
|
| 120 |
$node->timestamp = $node->created;
|
| 121 |
// comment_save gets an array
|
| 122 |
$edit = (array)$node;
|
| 123 |
|
| 124 |
// post the comment. if unable, send a failure email when so configured
|
| 125 |
if (!comment_save($edit) && $mailbox['replies']) {
|
| 126 |
// $fromaddress really refers to the mail header which is authoritative for authentication
|
| 127 |
list($fromaddress, $fromname) = mailhandler_get_fromaddress($header, $mailbox);
|
| 128 |
$error_txt = t("Sorry, your comment experienced an error and was not posted. Possible reasons are\n- you have insufficient permission to post comments\n- The node is no longer open for comments.\n\n");
|
| 129 |
$error = $error_txt. t("\n\nYou sent:\n\nFrom: %f\nSubject: %t\nBody:\n%b", array('%f' => $fromaddress, '%t' => $header->subject, '%b' => $origbody));
|
| 130 |
drupal_mail('mailhandler_error_comment', $fromaddress, t('Email submission to %sn failed - %subj', array('%sn' => variable_get('site_name', 'Drupal'), '%subj' => $header->subject)));
|
| 131 |
$watchdog = t('Mailhandler: comment submission failure: %subject.', array('%subject' => $edit['subject']));
|
| 132 |
watchdog('mailhandler', $watchdog, WATCHDOG_ERROR);
|
| 133 |
}
|
| 134 |
}
|
| 135 |
|
| 136 |
/**
|
| 137 |
* Create the node.
|
| 138 |
*/
|
| 139 |
// handle defaults for node creation (e.g. comment | promote | moderate | sticky fields)
|
| 140 |
$node_blog_default = variable_get('node_options_blog', array('status', 'promote'));
|
| 141 |
$node->status = in_array('status', $node_blog_default);
|
| 142 |
$node->promote = in_array('promote', $node_blog_default);
|
| 143 |
$node->moderate = in_array('moderate', $node_blog_default);
|
| 144 |
$node->revision = in_array('revision', $node_blog_default);
|
| 145 |
$node->comment = variable_get('comment_blog', 2);
|
| 146 |
|
| 147 |
function mailhandler_node_submit($node, $header, $mailbox, $origbody) {
|
| 148 |
|
| 149 |
list($fromaddress, $fromname) = mailhandler_get_fromaddress($header, $mailbox);
|
| 150 |
|
| 151 |
//dprint_r($node); //DEBUG
|
| 152 |
|
| 153 |
// Drupal 5.x & 6.x don't support multiple validations: each node_validate()
|
| 154 |
// call will ADD error messages to previous ones, so if some validation error
|
| 155 |
// occours in one message it will be reported in all messages after it.
|
| 156 |
// Since there is no way to reset form errors, the only method to avoid this
|
| 157 |
// problem is working with $_SESSION['messages'], used by form_set_error().
|
| 158 |
// See http://drupal.org/node/271975 for more info.
|
| 159 |
// Warning: with this method, if the same error message is reported for 2+ different
|
| 160 |
// fields it will be detected only for the last one.
|
| 161 |
if (!isset($_SESSION['messages'])) {
|
| 162 |
$_SESSION['messages'] = array();
|
| 163 |
}
|
| 164 |
$saved_errors = is_array($_SESSION['messages']['error']) ? $_SESSION['messages']['error'] : array();
|
| 165 |
$_SESSION['messages']['error'] = array();
|
| 166 |
node_validate($node);
|
| 167 |
$error = array();
|
| 168 |
if (count($_SESSION['messages']['error'])) {
|
| 169 |
$allerrors = form_get_errors();
|
| 170 |
foreach ($_SESSION['messages']['error'] as $message) {
|
| 171 |
$keys = array_keys($allerrors, $message);
|
| 172 |
if (!$keys || !count($keys)) {
|
| 173 |
// Not a validation error (but an error, i'll print it)
|
| 174 |
$saved_errors[] = $message;
|
| 175 |
} else {
|
| 176 |
// This is a validation error, i take the last field with it (previous fields
|
| 177 |
// should be about previous validations)
|
| 178 |
$error[$keys[count($keys) - 1]] = $message;
|
| 179 |
}
|
| 180 |
}
|
| 181 |
}
|
| 182 |
if (is_array($saved_errors) && count($saved_errors)) {
|
| 183 |
$_SESSION['messages']['error'] = $saved_errors;
|
| 184 |
}
|
| 185 |
else {
|
| 186 |
unset($_SESSION['messages']['error']);
|
| 187 |
}
|
| 188 |
|
| 189 |
if (!$error) {
|
| 190 |
// Prepare the node for save and allow modules make changes
|
| 191 |
$node = node_submit($node);
|
| 192 |
// Save the node
|
| 193 |
if ($node->nid) {
|
| 194 |
if (node_access('update', $node)) {
|
| 195 |
node_save($node);
|
| 196 |
watchdog('mailhandler', t("Mailhandler: Updated '%t' by %f", array('%t' => $node->title, '%f' => $fromaddress)), WATCHDOG_NOTICE);
|
| 197 |
}
|
| 198 |
else {
|
| 199 |
$errortxt = t("The e-mail address '%f' may not update %t items.", array('%f' => $fromaddress, '%t' => $node->type));
|
| 200 |
}
|
| 201 |
}
|
| 202 |
else {
|
| 203 |
if (node_access('create', $node)) {
|
| 204 |
node_save($node);
|
| 205 |
watchdog('mailhandler', t("Mailhandler: Added '%t' by %f", array('%t' => $node->title, '%f' => $fromaddress)), WATCHDOG_NOTICE);
|
| 206 |
}
|
| 207 |
else {
|
| 208 |
$errortxt = t("The e-mail address '%f' may not create %t items.", array('%f' => $fromaddress, '%t' => $node->type));
|
| 209 |
}
|
| 210 |
}
|
| 211 |
}
|
| 212 |
else {
|
| 213 |
$errortxt = t("Your submission is invalid: \n\n");
|
| 214 |
foreach ($error as $key => $value) {
|
| 215 |
$errortxt .= "$key: $value\n";
|
| 216 |
}
|
| 217 |
}
|
| 218 |
|
| 219 |
if ($errortxt) {
|
| 220 |
watchdog('mailhandler', "Mailhandler: $errortxt", WATCHDOG_ERROR);
|
| 221 |
if ($mailbox['replies']) {
|
| 222 |
$errortxt .= t("\n\nYou sent:\n\nFrom: %f\nSubject: %t\nBody:\n%b", array('%f' => $fromaddress, '%t' => $header->subject, '%b' => $origbody));
|
| 223 |
drupal_mail('mailhandler_error_node', $fromaddress, t('Email submission to %sn failed - %subj', array('%sn' => variable_get('site_name', 'Drupal'), '%subj' => $node->title)), $errortxt);
|
| 224 |
}
|
| 225 |
}
|
| 226 |
}
|
| 227 |
|
| 228 |
/**
|
| 229 |
* Append default commands. Separate commands from body. Strip signature.
|
| 230 |
* Return a node object.
|
| 231 |
*/
|
| 232 |
function mailhandler_process_message($header, $body, $mailbox) {
|
| 233 |
$node = new stdClass();
|
| 234 |
|
| 235 |
// initialize params
|
| 236 |
$sep = $mailbox['sigseparator'];
|
| 237 |
|
| 238 |
// copy any name/value pairs from In-Reply-To or References e-mail headers to $node. Useful for maintaining threading info.
|
| 239 |
if ($header->references) {
|
| 240 |
// we want the final element in references header, watching out for white space
|
| 241 |
$threading = substr(strrchr($header->references, '<'), 0);
|
| 242 |
}
|
| 243 |
else if ($header->in_reply_to) {
|
| 244 |
$threading = str_replace(strstr($header->in_reply_to, '>'), '>', $header->in_reply_to); // Some MUAs send more info in that header.
|
| 245 |
}
|
| 246 |
if ($threading = rtrim(ltrim($threading, '<'), '>')) { //strip angle brackets
|
| 247 |
if ($threading) $node->threading = $threading;
|
| 248 |
parse_str($threading, $tmp);
|
| 249 |
if ($tmp['host']) {
|
| 250 |
$tmp['host'] = ltrim($tmp['host'], '@'); // strip unnecessary @ from 'host' element
|
| 251 |
}
|
| 252 |
foreach ($tmp as $key => $value) {
|
| 253 |
$node->$key = $value;
|
| 254 |
}
|
| 255 |
}
|
| 256 |
|
| 257 |
// prepend the default commands for this mailbox
|
| 258 |
if ($mailbox['commands']) {
|
| 259 |
$body = trim($mailbox['commands']) ."\n". $body;
|
| 260 |
}
|
| 261 |
|
| 262 |
// process the commands and the body
|
| 263 |
$lines = explode("\n", $body);
|
| 264 |
for ($i = 0; $i < count($lines); $i++) {
|
| 265 |
$line = trim($lines[$i]);
|
| 266 |
$words = explode(' ', $line);
|
| 267 |
// look for a command line. if not present, note which line number is the boundary
|
| 268 |
if (substr($words[0], -1) == ':' && is_null($endcommands)) {
|
| 269 |
// Looks like a name: value pair
|
| 270 |
$data = explode(': ', $line, 2);
|
| 271 |
|
| 272 |
//TODO: allow for nested arrays in commands ... Possibly trim() values after explode().
|
| 273 |
// if needed, turn this command value into an array
|
| 274 |
if (substr($data[1], 0, 1) == '[' && substr($data[1], -1, 1) == ']') {
|
| 275 |
$data[1] = rtrim(ltrim($data[1], '['), ']'); //strip brackets
|
| 276 |
$data[1] = explode(",", $data[1]);
|
| 277 |
}
|
| 278 |
$data[0] = strtolower(str_replace(' ', '_', $data[0]));
|
| 279 |
// if needed, map term names into IDs. this should move to taxonomy_mailhandler()
|
| 280 |
if ($data[0] == 'taxonomy' && !is_numeric($data[1][0])) {
|
| 281 |
array_walk($data[1], 'mailhandler_term_map');
|
| 282 |
}
|
| 283 |
if (!empty($data[0])) {
|
| 284 |
$node->$data[0] = $data[1];
|
| 285 |
}
|
| 286 |
}
|
| 287 |
else {
|
| 288 |
if (is_null($endcommands)) $endcommands = $i;
|
| 289 |
}
|
| 290 |
|
| 291 |
// stop when we encounter the sig. we'll discard all remaining text.
|
| 292 |
$start = substr($line, 0, strlen($sep)+3);
|
| 293 |
if ($sep && strstr($start, $sep)) { // mail clients sometimes prefix replies with ' >'
|
| 294 |
break;
|
| 295 |
}
|
| 296 |
}
|
| 297 |
|
| 298 |
// isolate the body from the commands and the sig
|
| 299 |
$tmp = array_slice($lines, $endcommands, $i - $endcommands);
|
| 300 |
// flatten and assign the body to node object. note that filter() is called within node_save() [tested with blog post]
|
| 301 |
$node->body = implode("\n", $tmp);
|
| 302 |
|
| 303 |
if (!$node->teaser) $node->teaser = node_teaser($node->body);
|
| 304 |
if (!$node->type) $node->type = 'blog';
|
| 305 |
// decode encoded subject line
|
| 306 |
$subjectarr = imap_mime_header_decode($header->subject);
|
| 307 |
for ($i = 0; $i < count($subjectarr); $i++) {
|
| 308 |
if ($subjectarr[$i]->charset != 'default')
|
| 309 |
$node->title .= drupal_convert_to_utf8($subjectarr[$i]->text, $subjectarr[$i]->charset);
|
| 310 |
else
|
| 311 |
$node->title .= $subjectarr[$i]->text;
|
| 312 |
}
|
| 313 |
|
| 314 |
$node->created = $header->udate;
|
| 315 |
$node->changed = $header->udate;
|
| 316 |
$node->format = $mailbox['format'];
|
| 317 |
|
| 318 |
return $node;
|
| 319 |
}
|
| 320 |
|
| 321 |
/**
|
| 322 |
* Accept a taxonomy term name and replace with a tid. this belongs in taxonomy.module.
|
| 323 |
*/
|
| 324 |
function mailhandler_term_map(&$term) {
|
| 325 |
// provide case insensitive and trimmed map so as to maximize likelihood of successful mapping
|
| 326 |
$term = db_result(db_query("SELECT tid FROM {term_data} WHERE LOWER('". trim($term) ."') LIKE LOWER(name)"));
|
| 327 |
}
|
| 328 |
|
| 329 |
/**
|
| 330 |
* Determine who is the author of the upcoming node.
|
| 331 |
*/
|
| 332 |
function mailhandler_authenticate($node, $header, $origbody, $mailbox) {
|
| 333 |
|
| 334 |
// $fromaddress really refers to the mail header which is authoritative for authentication
|
| 335 |
list($fromaddress, $fromname) = mailhandler_get_fromaddress($header, $mailbox);
|
| 336 |
if ($from_user = mailhandler_user_load($fromaddress, $node->pass, $mailbox)) {
|
| 337 |
$node->uid = $from_user->uid; // success!
|
| 338 |
$node->name = $from_user->name;
|
| 339 |
}
|
| 340 |
else if (function_exists('mailalias_user')) { // since $fromaddress failed, try e-mail aliases
|
| 341 |
$result = db_query("SELECT mail FROM {users} WHERE data LIKE '%%". $fromaddress ."%%'");
|
| 342 |
while ($alias = db_result($result)) {
|
| 343 |
if ($from_user = mailhandler_user_load($alias, $node->pass, $mailbox)) {
|
| 344 |
$node->uid = $from_user->uid; // success!
|
| 345 |
$node->name = $from_user->name;
|
| 346 |
break;
|
| 347 |
}
|
| 348 |
}
|
| 349 |
}
|
| 350 |
if (!$from_user) {
|
| 351 |
// failed authentication. we will still try to submit anonymously.
|
| 352 |
$node->uid = 0;
|
| 353 |
$node->name = $fromname; // use the name supplied in email headers
|
| 354 |
}
|
| 355 |
return $node;
|
| 356 |
}
|
| 357 |
|
| 358 |
/**
|
| 359 |
* Switch from original user to mail submision user and back.
|
| 360 |
*
|
| 361 |
* Note: You first need to run mailhandler_switch_user without
|
| 362 |
* argument to store the current user. Call mailhandler_switch_user
|
| 363 |
* without argument to set the user back to the original user.
|
| 364 |
*
|
| 365 |
* @param $uid The user ID to switch to
|
| 366 |
*
|
| 367 |
*/
|
| 368 |
function mailhandler_switch_user($uid = NULL) {
|
| 369 |
global $user;
|
| 370 |
static $orig_user = array();
|
| 371 |
|
| 372 |
if (isset($uid)) {
|
| 373 |
session_save_session(FALSE);
|
| 374 |
$user = user_load(array('uid' => $uid));
|
| 375 |
}
|
| 376 |
// retrieve the initial user, can be called multiple times
|
| 377 |
else if (count($orig_user)) {
|
| 378 |
$user = array_shift($orig_user);
|
| 379 |
session_save_session(TRUE);
|
| 380 |
array_unshift($orig_user, $user);
|
| 381 |
}
|
| 382 |
// store the initial user
|
| 383 |
else {
|
| 384 |
$orig_user[] = $user;
|
| 385 |
}
|
| 386 |
}
|
| 387 |
|
| 388 |
/**
|
| 389 |
* Retrieve user information from his email address.
|
| 390 |
*/
|
| 391 |
function mailhandler_user_load($mail, $pass, $mailbox) {
|
| 392 |
if ($mailbox['security'] == 1) {
|
| 393 |
return user_load(array('mail' => $mail, 'pass' => $pass));
|
| 394 |
}
|
| 395 |
else {
|
| 396 |
return user_load(array('mail' => $mail));
|
| 397 |
}
|
| 398 |
}
|
| 399 |
|
| 400 |
/**
|
| 401 |
* If available, use the mail header specified in mailbox config. otherwise use From: header
|
| 402 |
*/
|
| 403 |
function mailhandler_get_fromaddress($header, $mailbox) {
|
| 404 |
if ($fromheader = strtolower($mailbox['fromheader']) && isset($header->$fromheader)) {
|
| 405 |
$from = $header->$fromheader;
|
| 406 |
}
|
| 407 |
else {
|
| 408 |
$from = $header->from;
|
| 409 |
}
|
| 410 |
return array($from[0]->mailbox .'@'. $from[0]->host, $from[0]->personal);
|
| 411 |
}
|
| 412 |
|
| 413 |
/**
|
| 414 |
* Returns the first part with the specified mime_type
|
| 415 |
*
|
| 416 |
* USAGE EXAMPLES - from php manual: imap_fetch_structure() comments
|
| 417 |
* $data = get_part($stream, $msg_number, "TEXT/PLAIN"); // get plain text
|
| 418 |
* $data = get_part($stream, $msg_number, "TEXT/HTML"); // get HTML text
|
| 419 |
*/
|
| 420 |
function mailhandler_get_part($stream, $msg_number, $mime_type, $structure = false, $part_number = false) {
|
| 421 |
|
| 422 |
if (!$structure) {
|
| 423 |
$structure = imap_fetchstructure($stream, $msg_number);
|
| 424 |
}
|
| 425 |
if ($structure) {
|
| 426 |
foreach ($structure->parameters as $parameter) {
|
| 427 |
if (strtoupper($parameter->attribute) == 'CHARSET') {
|
| 428 |
$encoding = $parameter->value;
|
| 429 |
//watchdog('mailhandler', 'Encoding is ' . $encoding);
|
| 430 |
}
|
| 431 |
}
|
| 432 |
if ($mime_type == mailhandler_get_mime_type($structure)) {
|
| 433 |
if (!$part_number) {
|
| 434 |
$part_number = '1';
|
| 435 |
}
|
| 436 |
$text = imap_fetchbody($stream, $msg_number, $part_number);
|
| 437 |
if ($structure->encoding == ENCBASE64) {
|
| 438 |
return drupal_convert_to_utf8(imap_base64($text), $encoding);
|
| 439 |
}
|
| 440 |
else if ($structure->encoding == ENCQUOTEDPRINTABLE) {
|
| 441 |
return drupal_convert_to_utf8(quoted_printable_decode($text), $encoding);
|
| 442 |
}
|
| 443 |
else {
|
| 444 |
return drupal_convert_to_utf8($text, $encoding);
|
| 445 |
}
|
| 446 |
}
|
| 447 |
if ($structure->type == TYPEMULTIPART) { /* multipart */
|
| 448 |
while (list($index, $sub_structure) = each ($structure->parts)) {
|
| 449 |
if ($part_number) {
|
| 450 |
$prefix = $part_number .'.';
|
| 451 |
}
|
| 452 |
$data = mailhandler_get_part($stream, $msg_number, $mime_type, $sub_structure, $prefix . ($index + 1));
|
| 453 |
if ($data) {
|
| 454 |
return $data;
|
| 455 |
}
|
| 456 |
}
|
| 457 |
}
|
| 458 |
}
|
| 459 |
|
| 460 |
return false;
|
| 461 |
}
|
| 462 |
|
| 463 |
|
| 464 |
/**
|
| 465 |
* Returns an array of parts as file objects
|
| 466 |
*
|
| 467 |
* @param
|
| 468 |
* @param $structure
|
| 469 |
* A message structure, usually used to recurse into specific parts
|
| 470 |
* @param $max_depth
|
| 471 |
* Maximum Depth to recurse into parts.
|
| 472 |
* @param $depth
|
| 473 |
* The current recursion depth.
|
| 474 |
* @param $part_number
|
| 475 |
* A message part number to track position in a message during recursion.
|
| 476 |
* @return
|
| 477 |
* An array of file objects.
|
| 478 |
*/
|
| 479 |
function mailhandler_get_parts($stream, $msg_number, $max_depth = 10, $depth = 0, $structure = FALSE, $part_number = FALSE) {
|
| 480 |
$parts = array();
|
| 481 |
|
| 482 |
// Load Structure.
|
| 483 |
if (!$structure && !$structure = imap_fetchstructure($stream, $msg_number)) {
|
| 484 |
watchdog('mailhandler', t('Could not fetch structure for message number %msg_number', array('%msg_number' => $msg_number)), WATCHDOG_NOTICE);
|
| 485 |
return $parts;
|
| 486 |
}
|
| 487 |
|
| 488 |
// Recurse into multipart messages.
|
| 489 |
if ($structure->type == TYPEMULTIPART) {
|
| 490 |
// Restrict recursion depth.
|
| 491 |
if ($depth >= $max_depth) {
|
| 492 |
watchdog('mailhandler', t('Maximum recursion depths met in mailhander_get_structure_part for
|
| 493 |
message number %msg_number.', array('%msg_number' => $msg_number)), WATCHDOG_NOTICE);
|
| 494 |
return $parts;
|
| 495 |
}
|
| 496 |
foreach($structure->parts as $index => $sub_structure) {
|
| 497 |
// If a part number was passed in and we are a multitype message, prefix the
|
| 498 |
// the part number for the recursive call to match the imap4 dot seperated part indexing.
|
| 499 |
if ($part_number) {
|
| 500 |
$prefix = $part_number .'.';
|
| 501 |
}
|
| 502 |
$sub_parts = mailhandler_get_parts($stream, $msg_number, $max_depth, $depth + 1,
|
| 503 |
$sub_structure, $prefix . ($index + 1));
|
| 504 |
$parts = array_merge($parts, $sub_parts);
|
| 505 |
}
|
| 506 |
return $parts;
|
| 507 |
}
|
| 508 |
|
| 509 |
// Per Part Parsing.
|
| 510 |
|
| 511 |
// Initalize file object like part structure.
|
| 512 |
$part = new StdClass();
|
| 513 |
$part->attributes = array();
|
| 514 |
$part->filename = 'unnamed_attachment';
|
| 515 |
if (!$part->filemime = mailhandler_get_mime_type($structure)) {
|
| 516 |
watchdog('mailhandler', t('Could not fetch mime type for message part. Defaulting to application/octet-stream.'),
|
| 517 |
WATCHDOG_NOTICE);
|
| 518 |
$part->filemime = 'application/octet-stream';
|
| 519 |
}
|
| 520 |
|
| 521 |
if ($structure->ifparameters) {
|
| 522 |
foreach ($structure->parameters as $parameter) {
|
| 523 |
switch (strtoupper($parameter->attribute)) {
|
| 524 |
case 'NAME':
|
| 525 |
case 'FILENAME':
|
| 526 |
$part->filename = $parameter->value;
|
| 527 |
break;
|
| 528 |
default:
|
| 529 |
// put every thing else in the attributes array;
|
| 530 |
$part->attributes[$parameter->attribute] = $parameter->value;
|
| 531 |
}
|
| 532 |
}
|
| 533 |
}
|
| 534 |
|
| 535 |
// Handle Content-Disposition parameters for non-text types.
|
| 536 |
if ($structure->type != TYPETEXT && $structure->ifdparameters) {
|
| 537 |
foreach ($structure->dparameters as $parameter) {
|
| 538 |
switch (strtoupper($parameter->attribute)) {
|
| 539 |
case 'NAME':
|
| 540 |
case 'FILENAME':
|
| 541 |
$part->filename = $parameter->value;
|
| 542 |
break;
|
| 543 |
// put every thing else in the attributes array;
|
| 544 |
default:
|
| 545 |
$part->attributes[$parameter->attribute] = $parameter->value;
|
| 546 |
}
|
| 547 |
}
|
| 548 |
}
|
| 549 |
|
| 550 |
// Retrieve part convert MIME encoding to UTF-8
|
| 551 |
if(!$part->data = imap_fetchbody($stream, $msg_number, $part_number)) {
|
| 552 |
drupal_set_message("imap_fetchbody($stream, $msg_number, $part_number)");
|
| 553 |
watchdog('mailhandler', 'No Data!!', WATCHDOG_ERROR);
|
| 554 |
return $parts;
|
| 555 |
}
|
| 556 |
|
| 557 |
// convert text attachment to UTF-8.
|
| 558 |
if ($structure->type == TYPETEXT) {
|
| 559 |
$part->data = imap_utf8($part->data);
|
| 560 |
}
|
| 561 |
else {
|
| 562 |
// If not text then decode as necessary
|
| 563 |
if ($structure->encoding == ENCBASE64) {
|
| 564 |
$part->data = imap_base64($part->data);
|
| 565 |
}
|
| 566 |
else if ($structure->encoding == ENCQUOTEDPRINTABLE) {
|
| 567 |
$part->data = quoted_printable_decode($part->data);
|
| 568 |
}
|
| 569 |
}
|
| 570 |
|
| 571 |
//always return an array to satisfy array_merge in recursion catch, and array return value.
|
| 572 |
$parts[] = $part;
|
| 573 |
return $parts;
|
| 574 |
}
|
| 575 |
|
| 576 |
/**
|
| 577 |
* Retrieve MIME type of the message structure.
|
| 578 |
*/
|
| 579 |
function mailhandler_get_mime_type(&$structure) {
|
| 580 |
static $primary_mime_type = array('TEXT', 'MULTIPART', 'MESSAGE', 'APPLICATION', 'AUDIO', 'IMAGE', 'VIDEO', 'OTHER');
|
| 581 |
$type_id = (int)$structure->type;
|
| 582 |
if (isset($primary_mime_type[$type_id]) && !empty($structure->subtype)) {
|
| 583 |
return $primary_mime_type[$type_id] .'/'. $structure->subtype;
|
| 584 |
}
|
| 585 |
return 'TEXT/PLAIN';
|
| 586 |
}
|
| 587 |
|
| 588 |
/**
|
| 589 |
* Implementation of hook_user().
|
| 590 |
*
|
| 591 |
* Commented out because mailhandler cannot assume that this mailbox will
|
| 592 |
* accept blog entries from users.
|
| 593 |
*/
|
| 594 |
/*
|
| 595 |
function mailhandler_user($type, &$edit, &$account, $category = NULL) {
|
| 596 |
if ($type == 'view') {
|
| 597 |
// @TODO: We may add a new option in mailboxes to choose which roles can post.
|
| 598 |
if ((user_access('edit own blog') && $GLOBALS['user']->uid == $account->uid) || user_access('administer users')) {
|
| 599 |
// for now, just show the first mailbox address to user.
|
| 600 |
$mailbox = db_fetch_array(db_query('SELECT * FROM {mailhandler} WHERE enabled = 1 ORDER BY mail'));
|
| 601 |
if ($mailbox) {
|
| 602 |
if ($mailbox['security'] == 1) {
|
| 603 |
$form = array(
|
| 604 |
'#title' => t('Mail Handler'),
|
| 605 |
'#value' => t('You may post to <a href="@blog">your blog</a> by sending an e-mail to %mail. Be sure to include your password at the top of your e-mail body (e.g. <em>pass=mypassword</em>).', array('@blog' => url("blog/$account->uid"), '%mail' => $mailbox['mail']))
|
| 606 |
);
|
| 607 |
}
|
| 608 |
else {
|
| 609 |
$form = array(
|
| 610 |
'#title' => t('Mail Handler'),
|
| 611 |
'#value' => t('You may post to <a href="@blog">your blog</a> by sending an e-mail to %mail.', array('@blog' => url("blog/$account->uid"), '%mail' => $mailbox['mail']))
|
| 612 |
);
|
| 613 |
}
|
| 614 |
return array(t('Mail Handler') => array('mailhandler' => theme('item', $form)));
|
| 615 |
}
|
| 616 |
}
|
| 617 |
}
|
| 618 |
}
|
| 619 |
*/
|
| 620 |
|
| 621 |
/**
|
| 622 |
* Implementation of hook_cron(). Process msgs from all enabled mailboxes.
|
| 623 |
*/
|
| 624 |
function mailhandler_cron() {
|
| 625 |
// store the original cron user
|
| 626 |
mailhandler_switch_user();
|
| 627 |
$result = db_query('SELECT * FROM {mailhandler} WHERE enabled = 1 ORDER BY mail');
|
| 628 |
while ($mailbox = db_fetch_array($result)) {
|
| 629 |
mailhandler_retrieve($mailbox);
|
| 630 |
}
|
| 631 |
// revert to the original cron user
|
| 632 |
mailhandler_switch_user();
|
| 633 |
}
|
| 634 |
|
| 635 |
/**
|
| 636 |
* Implementation of hook_perm().
|
| 637 |
*/
|
| 638 |
function mailhandler_perm() {
|
| 639 |
return array('administer mailhandler');
|
| 640 |
}
|
| 641 |
|
| 642 |
/**
|
| 643 |
* Implementation of hook_menu().
|
| 644 |
*/
|
| 645 |
function mailhandler_menu($may_cache) {
|
| 646 |
$items = array();
|
| 647 |
$admin_access = user_access('administer mailhandler');
|
| 648 |
|
| 649 |
if ($may_cache) {
|
| 650 |
$items[] = array('path' => 'admin/content/mailhandler', 'title' => t('Mailhandler'),
|
| 651 |
'callback' => 'mailhandler_admin',
|
| 652 |
'description' => t('Manage mailboxes and retrieve messages.'),
|
| 653 |
'access' => $admin_access);
|
| 654 |
$items[] = array('path' => 'admin/content/mailhandler/retrieve', 'title' => t('Retrieve'),
|
| 655 |
'callback' => 'mailhandler_admin_retrieve',
|
| 656 |
'access' => $admin_access,
|
| 657 |
'type' => MENU_CALLBACK);
|
| 658 |
$items[] = array('path' => 'admin/content/mailhandler/edit', 'title' => t('Edit mailbox'),
|
| 659 |
'callback' => 'mailhandler_admin_edit',
|
| 660 |
'access' => $admin_access,
|
| 661 |
'type' => MENU_CALLBACK);
|
| 662 |
$items[] = array('path' => 'admin/content/mailhandler/delete', 'title' => t('Delete mailbox'),
|
| 663 |
'callback' => 'drupal_get_form',
|
| 664 |
'callback arguments' => array('mailhandler_admin_delete_confirm'),
|
| 665 |
'access' => $admin_access,
|
| 666 |
'type' => MENU_CALLBACK);
|
| 667 |
$items[] = array('path' => 'admin/content/mailhandler/list', 'title' => t('List'),
|
| 668 |
'type' => MENU_DEFAULT_LOCAL_TASK,
|
| 669 |
'weight' => -10,
|
| 670 |
'access' => $admin_access);
|
| 671 |
$items[] = array('path' => 'admin/content/mailhandler/add', 'title' => t('Add mailbox'),
|
| 672 |
'callback' => 'mailhandler_admin_edit',
|
| 673 |
'access' => $admin_access,
|
| 674 |
'type' => MENU_LOCAL_TASK);
|
| 675 |
}
|
| 676 |
else {
|
| 677 |
drupal_add_css(drupal_get_path('module', 'mailhandler') .'/mailhandler.css');
|
| 678 |
}
|
| 679 |
|
| 680 |
return $items;
|
| 681 |
}
|
| 682 |
|
| 683 |
/**
|
| 684 |
* Menu callback; presents an overview of all URL aliases.
|
| 685 |
*/
|
| 686 |
function mailhandler_admin() {
|
| 687 |
return mailhandler_display();
|
| 688 |
}
|
| 689 |
|
| 690 |
/**
|
| 691 |
* Return a listing of all defined mailboxes.
|
| 692 |
*/
|
| 693 |
function mailhandler_display() {
|
| 694 |
$destination = drupal_get_destination();
|
| 695 |
$header = array(t('Mailbox'), array('data' => t('Operations'), 'colspan' => 3));
|
| 696 |
$rows = array();
|
| 697 |
$result = db_query('SELECT * FROM {mailhandler} ORDER BY mail');
|
| 698 |
while ($mailbox = db_fetch_object($result)) {
|
| 699 |
$rows[] = array(
|
| 700 |
"<a href=\"mailto:$mailbox->mail\">$mailbox->mail</a>",
|
| 701 |
l(t('Retrieve'), "admin/content/mailhandler/retrieve/$mailbox->mid", array('title' => t('Retrieve and process pending e-mails in this mailbox')), $destination),
|
| 702 |
l(t('Edit'), "admin/content/mailhandler/edit/$mailbox->mid", array('title' => t('Edit this mailbox configuration')), $destination),
|
| 703 |
l(t('Delete'), "admin/content/mailhandler/delete/$mailbox->mid", array('title' => t('Delete this mailbox')), $destination)
|
| 704 |
);
|
| 705 |
}
|
| 706 |
|
| 707 |
if (empty($rows)) {
|
| 708 |
$rows[] = array(array('data' => t('No mailboxes available.'), 'colspan' => '4'));
|
| 709 |
}
|
| 710 |
|
| 711 |
return theme('table', $header, $rows);
|
| 712 |
}
|
| 713 |
|
| 714 |
/**
|
| 715 |
* Menu callback; Retrieve and process pending e-mails for a mailbox.
|
| 716 |
*/
|
| 717 |
function mailhandler_admin_retrieve($mid = 0) {
|
| 718 |
// store the original user
|
| 719 |
mailhandler_switch_user();
|
| 720 |
drupal_set_message(mailhandler_retrieve(mailhandler_get_mailbox($mid)));
|
| 721 |
$output = mailhandler_display();
|
| 722 |
// revert to the original user
|
| 723 |
mailhandler_switch_user();
|
| 724 |
return $output;
|
| 725 |
}
|
| 726 |
|
| 727 |
/**
|
| 728 |
* Menu callback; handles pages for creating and editing mailboxes.
|
| 729 |
*/
|
| 730 |
function mailhandler_admin_edit($mid = 0) {
|
| 731 |
if ($mid) {
|
| 732 |
$output = drupal_get_form('mailhandler_form', mailhandler_get_mailbox($mid));
|
| 733 |
}
|
| 734 |
else {
|
| 735 |
$output = drupal_get_form('mailhandler_form');
|
| 736 |
}
|
| 737 |
return $output;
|
| 738 |
}
|
| 739 |
|
| 740 |
/**
|
| 741 |
* Fetch a specific mailbox from the database.
|
| 742 |
*/
|
| 743 |
function mailhandler_get_mailbox($mid) {
|
| 744 |
return db_fetch_array(db_query("SELECT * FROM {mailhandler} WHERE mid = %d", $mid));
|
| 745 |
}
|
| 746 |
|
| 747 |
/**
|
| 748 |
* Return a form for editing or creating an individual mailbox.
|
| 749 |
*/
|
| 750 |
function mailhandler_form($edit = array()) {
|
| 751 |
if (empty($edit['folder'])) {
|
| 752 |
$edit['folder'] = 'INBOX';
|
| 753 |
}
|
| 754 |
|
| 755 |
$form['mail'] = array('#type' => 'textfield', '#title' => t('E-mail address'), '#default_value' => $edit['mail'], '#description' => t('The e-mail address to which users should send their submissions.'), '#required' => TRUE);
|
| 756 |
$form['mailto'] = array('#type' => 'textfield', '#title' => t('Second E-mail address'), '#default_value' => $edit['mailto'], '#description' => t('Optional. The e-mail address to which modules should send generated content.'));
|
| 757 |
$form['folder'] = array('#type' => 'textfield', '#title' => t('Folder'), '#default_value' => $edit['folder'], '#description' => t('Optional. The folder where the mail is stored. If you want this mailbox to read from a local folder, give the full path. Leave domain, port, name, and pass empty below. Remember to set the folder to readable and writable by the webserver.'));
|
| 758 |
$form['imap'] = array('#type' => 'select', '#title' => t('POP3 or IMAP Mailbox'), '#options' => array('POP3', 'IMAP'), '#default_value' => $edit['imap'], '#description' => t('If you wish to retrieve mail from a POP3 or IMAP mailbox instead of a Folder, select POP3 or IMAP. Also, complete the Mailbox items below.'));
|
| 759 |
$form['domain'] = array('#type' => 'textfield', '#title' => t('Mailbox domain'), '#default_value' => $edit['domain'], '#description' => t('The domain of the server used to collect mail.'));
|
| 760 |
$form['port'] = array('#type' => 'textfield', '#title' => t('Mailbox port'), '#size' => 5, '#maxlength' => 5, '#default_value' => $edit['port'], '#description' => t('The port of the mailbox used to collect mail (usually 110 for POP3, 143 for IMAP).'));
|
| 761 |
$form['name'] = array('#type' => 'textfield', '#title' => t('Mailbox username'), '#default_value' => $edit['name'], '#description' => t('This username is used while logging into this mailbox during mail retrieval.'));
|
| 762 |
$form['pass'] = array('#type' => 'textfield', '#title' => t('Mailbox password'), '#default_value' => $edit['pass'], '#description' => t('The password corresponding to the username above. Consider using a non-vital password, since this field is stored without encryption in the database.'));
|
| 763 |
|
| 764 |
// Allow administrators to configure the mailbox with extra IMAP commands (notls, novalidate-cert etc.)
|
| 765 |
$form['extraimap'] = array('#type' => 'textfield', '#title' => t('Extra commands'), '#default_value' => $edit['extraimap'], '#description' => t('Optional. In some circumstances you need to issue extra commands to connect to your mail server (e.g. "/notls", "/novalidate-cert" etc.). See documentation for <a href="http://php.net/imap_open">imap_open</a>. Begin the string with a "/", separating each subsequent command with another "/".'));
|
| 766 |
$form['mime'] = array('#type' => 'select', '#title' => t('Mime preference'), '#options' => array('TEXT/HTML,TEXT/PLAIN' => 'HTML', 'TEXT/PLAIN,TEXT/HTML' => t('Plain text')), '#default_value' => $edit['mime'], '#description' => t('When a user sends an e-mail containing both HTML and plain text parts, use this part as the node body.'));
|
| 767 |
$form['security'] = array('#type' => 'radios', '#title' => t('Security'), '#options' => array(t('Disabled'), t('Require password')), '#default_value' => $edit['security'], '#description' => t('Disable security if your site does not require a password in the Commands section of incoming e-mails. Note: Security=Enabled and Mime preference=HTML is an unsupported combination.'));
|
| 768 |
$form['replies'] = array('#type' => 'radios', '#title' => t('Send error replies'), '#options' => array(t('Disabled'), t('Enabled')), '#default_value' => $edit['replies'], '#description' => t('Send helpful replies to all unsuccessful e-mail submissions. Consider disabling when a listserv posts to this mailbox.'));
|
| 769 |
$form['fromheader'] = array('#type' => 'textfield', '#title' => t('From header'), '#default_value' => $edit['fromheader'], '#description' => t('Use this e-mail header to determine the author of the resulting node. Admins usually leave this field blank (thus using the <strong>From</strong> header), but <strong>Sender</strong> is also useful when working with listservs.'));
|
| 770 |
$form['commands'] = array('#type' => 'textarea', '#title' => t('Default commands'), '#default_value' => $edit['commands'], '#description' => t('A set of commands which are added to each message. One command per line. See %link.', array('%link' => l(t('Commands'), 'admin/help/mailhandler/#commands'))));
|
| 771 |
$form['sigseparator'] = array('#type' => 'textfield', '#title' => t('Signature separator'), '#default_value' => $edit['sigseparator'], '#description' => t('All text after this string will be discarded. A typical value is <strong>"-- "</strong> that is two dashes followed by a blank in an otherwise empty line. Leave blank to include signature text in nodes.'));
|
| 772 |
$form['delete_after_read'] = array('#type' => 'checkbox', '#title' => t('Delete messages after they are processed?'), '#default_value' => $edit['delete_after_read'], '#description' => t('Uncheck this box to leave read messages in the mailbox. They will not be processed again unless they become marked as unread.'));
|
| 773 |
$form['enabled'] = array('#type' => 'radios', '#title' => t('Cron processing'), '#options' => array(t('Disabled'), t('Enabled')), '#default_value' => $edit['enabled'], '#description' => t('Select disable to temporarily stop cron processing for this mailbox.'));
|
| 774 |
|
| 775 |
// Allow administrators to select the format of saved nodes/comments
|
| 776 |
$form['format'] = filter_form($edit['format']);
|
| 777 |
|
| 778 |
if ($edit['mid']) {
|
| 779 |
$form['mid'] = array('#type' => 'hidden', '#value' => $edit['mid']);
|
| 780 |
$form['submit'] = array('#type' => 'submit', '#value' => t('Update mailbox'));
|
| 781 |
}
|
| 782 |
else {
|
| 783 |
$form['submit'] = array('#type' => 'submit', '#value' => t('Create new mailbox'));
|
| 784 |
}
|
| 785 |
|
| 786 |
return $form;
|
| 787 |
}
|
| 788 |
|
| 789 |
/**
|
| 790 |
* Verify that the Mailbox is valid, and save it to the database.
|
| 791 |
*/
|
| 792 |
function mailhandler_form_validate($form_id, $edit) {
|
| 793 |
if ($error = user_validate_mail($edit['mail'])) {
|
| 794 |
form_set_error('mail', $error);
|
| 795 |
}
|
| 796 |
if ($edit['mailto'] && ($error = user_validate_mail($edit['mailto']))) {
|
| 797 |
form_set_error('mailto', $error);
|
| 798 |
}
|
| 799 |
if ($edit['domain'] && $edit['port'] && !is_numeric($edit['port'])) { // assume external mailbox
|
| 800 |
form_set_error('port', t('Mailbox port must be an integer.'));
|
| 801 |
}
|
| 802 |
|
| 803 |
if (!$edit['domain'] && !$edit['port'] && $edit['folder']) { // assume local folder
|
| 804 |
// check read and write permission
|
| 805 |
if (!is_readable($edit['folder']) || !is_writable($edit['folder'])) {
|
| 806 |
form_set_error('port', t('The local folder has to be readable and writable by owner of the webserver process, e.g. nobody.'));
|
| 807 |
}
|
| 808 |
}
|
| 809 |
}
|
| 810 |
|
| 811 |
/**
|
| 812 |
* Save the Mailbox to the database.
|
| 813 |
*/
|
| 814 |
function mailhandler_form_submit($form_id, $edit) {
|
| 815 |
if ($edit['mid']) {
|
| 816 |
// Includes fields to allow administrators to add extra IMAP commands,
|
| 817 |
// and select the format of saved nodes/comments
|
| 818 |
db_query("UPDATE {mailhandler} SET mail = '%s', mailto = '%s', domain = '%s', port = %d, folder = '%s', name = '%s', pass = '%s', extraimap = '%s', mime = '%s', imap = '%s', security = %d, replies = %d, fromheader = '%s', commands = '%s', sigseparator = '%s', enabled = %d, delete_after_read = %d, format = %d WHERE mid = '%s'", $edit['mail'], $edit['mailto'], $edit['domain'], $edit['port'], $edit['folder'], $edit['name'], $edit['pass'], $edit['extraimap'], $edit['mime'], $edit['imap'], $edit['security'], $edit['replies'], $edit['fromheader'], $edit['commands'], $edit['sigseparator'], $edit['enabled'], $edit['delete_after_read'], $edit['format'], $edit['mid']);
|
| 819 |
drupal_set_message(t('Mailbox updated'));
|
| 820 |
}
|
| 821 |
else {
|
| 822 |
// Includes fields to allow administrators to add extra IMAP commands,
|
| 823 |
// and select the format of saved nodes/comments
|
| 824 |
db_query("INSERT INTO {mailhandler} (mail, mailto, domain, port, folder, name, pass, extraimap, mime, imap, security, replies, fromheader, commands, sigseparator, enabled, delete_after_read, format) VALUES ('%s', '%s', '%s', %d, '%s', '%s', '%s', '%s', '%s', '%s', %d, %d, '%s', '%s', '%s', %d, %d, %d)", $edit['mail'], $edit['mailto'], $edit['domain'], $edit['port'], $edit['folder'], $edit['name'], $edit['pass'], $edit['extraimap'], $edit['mime'], $edit['imap'], $edit['security'], $edit['replies'], $edit['fromheader'], $edit['commands'], $edit['sigseparator'], $edit['enabled'], $edit['delete_after_read'], $edit['format']);
|
| 825 |
drupal_set_message(t('Mailbox added'));
|
| 826 |
}
|
| 827 |
return 'admin/content/mailhandler';
|
| 828 |
}
|
| 829 |
|
| 830 |
/**
|
| 831 |
* Confirm/Delete Mailbox
|
| 832 |
*/
|
| 833 |
|
| 834 |
function mailhandler_admin_delete_confirm($mid) {
|
| 835 |
$info = db_fetch_object(db_query("SELECT mid, mail FROM {mailhandler} WHERE mid = %d", $mid));
|
| 836 |
$form = array();
|
| 837 |
$form['mid'] = array('#type' => 'hidden', '#value' => $mid);
|
| 838 |
return confirm_form($form,
|
| 839 |
t('Do you wish to delete mailbox %mailbox?', array('%mailbox' => $info->mail)),
|
| 840 |
'admin/content/mailhandler',
|
| 841 |
t('This action cannot be undone.'),
|
| 842 |
t('Delete'),
|
| 843 |
t('Cancel')
|
| 844 |
);
|
| 845 |
}
|
| 846 |
|
| 847 |
function mailhandler_admin_delete_confirm_submit($form_id, $form_values) {
|
| 848 |
$info = db_fetch_object(db_query("SELECT mid, mail FROM {mailhandler} WHERE mid = %d", $form_values['mid']));
|
| 849 |
db_query("DELETE FROM {mailhandler} WHERE mid = %d", $form_values['mid']);
|
| 850 |
watchdog('mailhandler', t('Mailhandler: Mailbox %mailbox deleted', array('%mailbox' => $info->mail)), WATCHDOG_NOTICE);
|
| 851 |
drupal_set_message(t('Mailbox %mailbox deleted', array('%mailbox' => $info->mail)));
|
| 852 |
drupal_goto('admin/content/mailhandler');
|
| 853 |
}
|
| 854 |
|
| 855 |
/**
|
| 856 |
* Implementation of hook_help().
|
| 857 |
*/
|
| 858 |
function mailhandler_help($section = 'admin/help#mailhandler') {
|
| 859 |
$output = '';
|
| 860 |
$link->add = l(t('Add mailbox'), 'admin/content/mailhandler/add');
|
| 861 |
|
| 862 |
switch ($section) {
|
| 863 |
case 'admin/help#mailhandler':
|
| 864 |
$output = '<p>'. t('The mailhandler module allows registered users to create or edit nodes and comments via e-mail. Users may post taxonomy terms, teasers, and other post attributes using the mail commands capability. This module is useful because e-mail is the preferred method of communication by community members.') .'</p>';
|
| 865 |
$output .= '<p>'. t('The mailhandler module requires the use of a custom mailbox. Administrators can add mailboxes that should be customized to meet the needs of a mailing list. This mailbox will then be checked on every cron job. Administrators may also initiate a manual retrieval of messages.') .'</p>';
|
| 866 |
$output .= '<p>'. t('This is particularly useful when you want multiple sets of default commands. For example , if you want to authenticate based on a non-standard mail header like Sender: which is useful for accepting submissions from a listserv. Authentication is usually based on the From: e-mail address. Administrators can edit the individual mailboxes when they administer mailhandler.') .'</p>';
|
| 867 |
$output .= t('<p>You can</p>
|
| 868 |
<ul>
|
| 869 |
<li>run the cron job at cron.php.</li>
|
| 870 |
<li>add a mailbox at <a href="@admin-mailhandler-add">administer >> mailhandler >> add a mailbox.</a></li>
|
| 871 |
<li>administer mailhandler at <a href="@admin-mailhandler">administer >> mailhandler</a>.</li>
|
| 872 |
<li>set default commands, (password, type, taxonomy, promote, status), for how to work with incoming mail at <a href="%admin-mailhandler">admin >> mailhandler</a> select <strong>edit</strong> for the email address being handled. Set commands in the default command field.</li>
|
| 873 |
<li>post email, such as from a mailing list, to a forum by adding the term id (number found in the URL) to the default commands using <strong>tid: #</strong>.', array('@admin-mailhandler-add' => url('admin/content/mailhandler/add'), '@admin-mailhandler' => url('admin/content/mailhandler'))) .'</ul>';
|
| 874 |
$output .= '<p>'. t('For more information please read the configuration and customization handbook <a href="%mailhandler">Mailhandler page</a>.', array('%mailhandler' => 'http://www.drupal.org/handbook/modules/mailhandler/')) .'</p>';
|
| 875 |
return $output;
|
| 876 |
case 'admin/content/mailhandler':
|
| 877 |
return t('The mailhandler module allows registered users to create or edit nodes and comments via email. Authentication is usually based on the From: email address. There is also an email filter that can be used to prettify incoming email. Users may post taxonomy terms, teasers, and other node parameters using the Command capability.');
|
| 878 |
case 'admin/content/mailhandler/add':
|
| 879 |
return t('Add a mailbox whose mail you wish to import into Drupal. Can be IMAP, POP3, or local folder.');
|
| 880 |
}
|
| 881 |
}
|