verifyPackage( 'contact' );
$gBitSystem->verifyPermission( 'p_contact_update' );
include_once CONTACT_PKG_INCLUDE_PATH . 'lookup_contact_inc.php';
if (!empty( $gContent->mInfo )) {
$formInfo = $gContent->mInfo;
$formInfo['edit'] = !empty( $gContent->mInfo['data'] ) ? $gContent->mInfo['data'] : '';
}
require_once 'import/Mbox.php';
require_once 'import/mimeDecode.php';
//reads a mbox file
$file = '/srv/website/bitweaver/contact/data/Stockport';
echo 'Using file ' . $file . "
";
$mbox = new Mail_Mbox( $file );
$mbox->open();
for ( $n = 0; $n < $mbox->size(); $n++ ) {
$message = $mbox->get( $n );
preg_match( '/Subject: (.*)$/m', $message, $matches );
$subject = $matches[1];
echo 'Mail #' . $n . ': ' . $subject . "
";
$Decoder = new Mail_mimeDecode( $message );
$params = [
'include_bodies' => true,
'decode_bodies' => true,
'decode_headers' => true,
];
$Decoded = $Decoder->decode( $params );
if ($Decoded->ctype_primary == "multipart") {
\Bitweaver\vd( $Decoded->parts[0]->ctype_primary );
\Bitweaver\vd( $Decoded->parts[0]->ctype_secondary );
print $Decoded->parts[0]->body;
}
else {
\Bitweaver\vd( $Decoded->ctype_primary );
\Bitweaver\vd( $Decoded->ctype_secondary );
print $Decoded->body;
}
\Bitweaver\vd( $Decoded->headers );
print $message;
}
$mbox->close();
// formInfo might be set due to a error on submit
if( empty( $formInfo ) ) {
$formInfo = &$gContent->mInfo;
}
$formInfo['contact_type_list'] = $gContent->getXrefSourceList();
$gBitSmarty->assign( 'pageInfo', $formInfo );
$gBitSmarty->assign( 'errors', $gContent->mErrors );
$gBitSmarty->assign( (!empty( $_REQUEST['tab'] ) ? $_REQUEST['tab'] : 'body').'TabSelect', 'tdefault' );
$gBitSmarty->assign('show_page_bar', 'y');
$gBitSystem->display( 'bitpackage:contact/edit.tpl', 'Edit: ' , [ 'display_mode' => 'edit' ]);