Can configure spool root
[banana.git] / banana / banana.inc.php.in
CommitLineData
78cd27b3 1<?php
2/********************************************************************************
ab02e8a9 3* banana/banana.inc.php : banana main file
78cd27b3 4* --------------------------
5*
6* This file is part of the banana distribution
7* Copyright: See COPYING files that comes with this distribution
8********************************************************************************/
9
1273e8f4 10require_once dirname(__FILE__) . '/text.func.inc.php';
11
78cd27b3 12class Banana
13{
78cd27b3 14
7972645b 15#######
16# Configuration variables
17#######
18
19### General ###
20 static public $profile = Array( 'signature' => '',
21 'headers' => array('From' => 'Anonymous <anonymouse@example.com>'),
22 'display' => 0,
23 'lastnews' => 0,
24 'locale' => 'fr_FR',
25 'subscribe' => array(),
26 'autoup' => 1);
27 static public $boxpattern;
ed3717e5 28 static public $withtabs = true;
1273e8f4 29 static public $mimeparts = array();
7972645b 30
31### Spool ###
df5a7969 32 static public $spool_root = '/var/spool/banana';
7972645b 33 static public $spool_max = 3000;
34 static public $spool_tbefore = 5;
35 static public $spool_tafter = 5;
36 static public $spool_tmax = 50;
e0f557df 37 static public $spool_boxlist = true;
7972645b 38
39### Message processing ###
40 static public $msgparse_headers = array('content-disposition', 'content-transfer-encoding',
ab02e8a9 41 'content-type', 'content-id', 'date', 'followup-to',
42 'from', 'message-id', 'newsgroups', 'organization',
43 'references', 'subject', 'x-face', 'in-reply-to',
44 'to', 'cc', 'reply-to');
4f6a209a 45
7972645b 46### Message display ###
47 static public $msgshow_headers = array('from', 'newsgroups', 'followup-to', 'to', 'cc', 'reply-to',
48 'organization', 'date', 'references', 'in-reply-to');
1273e8f4 49 static public $msgshow_mimeparts = array('multipart/report', 'multipart/mixed',
50 'text/html', 'text/plain', 'text/enriched', 'text', 'message');
7972645b 51 static public $msgshow_xface = true;
52 static public $msgshow_wrap = 78;
3be61f09 53 static public $msgshow_externalimages = false;
18f6babf 54 static public $msgshow_hasextimages = false;
ed3717e5 55 static public $msgshow_withthread = true;
78cd27b3 56
87514711 57 /** Match an url
bf791d69 58 * Should be included in a regexp delimited using /, !, , or @ (eg: "/$url_regexp/ui")
87514711 59 * If it matches, return 3 main parts :
60 * \\1 and \\3 are delimiters
61 * \\2 is the url
62 *
63 * eg : preg_match("!$url_regexp!i", "[http://www.polytechnique.org]", $matches);
64 * $matches[1] = "["
65 * $matches[2] = "http://www.polytechnique.org"
66 * $matches[3] = "]"
67 */
e0f557df 68 static public $msgshow_url = '(["\[])?((?:[a-z]+:\/\/|www\.)(?:[\.\,\;\!]*[a-z\@0-9~%$£µ&i#\-+=_\/\?]+)+)(["\]])?';
78cd27b3 69
7972645b 70### Message edition ###
71 static public $msgedit_canattach = true;
72 static public $msgedit_maxfilesize = 100000;
f12fdb59 73 /** Global headers to use for messages
a1937df3 74 */
7972645b 75 static public $msgedit_headers = array('Mime-Version' => '1.0', 'User-Agent' => 'Banana @VERSION@');
bf791d69 76 /** Mime type order for quoting
77 */
78 static public $msgedit_mimeparts = array('multipart/report', 'multipart/mixed', 'text/plain', 'text/enriched', 'text/html', 'text', 'message');
79
7972645b 80### Protocole ###
a1937df3 81 /** News serveur to use
82 */
7972645b 83 static public $nntp_host = 'news://localhost:119/';
ab02e8a9 84
7972645b 85 static public $mbox_path = '/var/mail';
ab02e8a9 86
7972645b 87### Debug ###
ab02e8a9 88 static public $debug_nntp = false;
89 static public $debug_smarty = false;
90
91
7972645b 92#######
93# Constants
94#######
95
ab02e8a9 96 // Actions
97 const ACTION_BOX_NEEDED = 1; // mask
98 const ACTION_BOX_LIST = 2;
99 const ACTION_BOX_SUBS = 4;
100 const ACTION_MSG_LIST = 3;
101 const ACTION_MSG_READ = 5;
102 const ACTION_MSG_NEW = 9;
103 const ACTION_MSG_CANCEL = 17;
18f6babf 104 const ACTION_MSG_IMAGES = 33;
ab02e8a9 105
106 // Box list view
107 const BOXES_ALL = 0;
108 const BOXES_SUB = 1;
109 const BOXES_NEW = 2;
110
111 // Spool view mode
112 const SPOOL_ALL = 0;
113 const SPOOL_UNREAD = 1;
114
7972645b 115
116#######
117# Runtime variables
118#######
119
120 static public $protocole = null;
121 static public $spool = null;
122 static public $message = null;
123 static public $page = null;
124
125 static public $group = null;
126 static public $artid = null;
127 static public $action = null;
128 static public $part = null;
129 static public $first = null;
130
ab02e8a9 131 /** Class parameters storage
132 */
133 public $params;
78cd27b3 134
7972645b 135
136#######
137# Banana Implementation
138#######
139
ab02e8a9 140 /** Build the instance of Banana
141 * This constructor only call \ref loadParams, connect to the server, and build the Smarty page
142 * @param protocole Protocole to use
f6df9eb2 143 */
ab02e8a9 144 public function __construct($params = null, $protocole = 'NNTP', $pageclass = 'BananaPage')
78cd27b3 145 {
ab02e8a9 146 if (is_null($params)) {
147 $this->params = $_GET;
1786dc36 148 } else {
ab02e8a9 149 $this->params = $params;
1786dc36 150 }
ab02e8a9 151 $this->loadParams();
1786dc36 152
ab02e8a9 153 // connect to protocole handler
ab02e8a9 154 $classname = 'Banana' . $protocole;
7972645b 155 if (!class_exists($classname)) {
156 Banana::load($protocole);
157 }
ab02e8a9 158 Banana::$protocole = new $classname(Banana::$group);
78cd27b3 159
ab02e8a9 160 // build the page
161 if ($pageclass == 'BananaPage') {
162 Banana::load('page');
3c3d29bb 163 }
ab02e8a9 164 Banana::$page = new $pageclass;
1273e8f4 165
166 $types = array('multipart/report' => _b_('Rapport d\'erreur'),
167 'multipart/mixed' => _b_('Composition'),
168 'text/html' => _b_('Texte formaté'),
169 'text/plain' => _b_('Texte brut'),
170 'text/enriched' => _b_('Texte enrichi'),
171 'text' => _b_('Texte'),
172 'message/rfc822' => _b_('Mail'),
173 'message' => _b_('Message'),
174 'source' => _b_('Source'));
175 Banana::$mimeparts = array_merge($types, Banana::$mimeparts);
ab02e8a9 176 }
78cd27b3 177
ab02e8a9 178 /** Fill state vars (Banana::$group, Banana::$artid, Banana::$action, Banana;:$part, Banana::$first)
179 */
180 protected function loadParams()
181 {
182 Banana::$group = isset($this->params['group']) ? $this->params['group'] : null;
183 Banana::$artid = isset($this->params['artid']) ? $this->params['artid'] : null;
184 Banana::$first = isset($this->params['first']) ? $this->params['first'] : null;
185 Banana::$part = isset($this->params['part']) ? $this->params['part'] : 'text';
186
187 // Look for the action to execute
188 if (is_null(Banana::$group)) {
ded3974d 189 if (isset($this->params['action']) && $this->params['action'] == 'subscribe') {
ab02e8a9 190 Banana::$action = Banana::ACTION_BOX_SUBS;
78cd27b3 191 } else {
ab02e8a9 192 Banana::$action = Banana::ACTION_BOX_LIST;
78cd27b3 193 }
ab02e8a9 194 return;
195 }
196 $action = isset($this->params['action']) ? $this->params['action'] : null;
197 if (is_null(Banana::$artid)) {
198 if ($action == 'new') {
199 Banana::$action = Banana::ACTION_MSG_NEW;
200 } else {
201 Banana::$action = Banana::ACTION_MSG_LIST;
7a0e2710 202 }
ab02e8a9 203 return;
204 }
205 switch ($action) {
206 case 'new':
207 Banana::$action = Banana::ACTION_MSG_NEW;
208 return;
209 case 'cancel':
210 Banana::$action = Banana::ACTION_MSG_CANCEL;
211 return;
18f6babf 212 case 'showext':
213 Banana::$action = Banana::ACTION_MSG_IMAGES;
214 return;
ab02e8a9 215 default:
216 Banana::$action = Banana::ACTION_MSG_READ;
78cd27b3 217 }
218 }
219
ab02e8a9 220 /** Run Banana
221 * This function need user profile to be initialised
222 */
223 public function run()
78cd27b3 224 {
ab02e8a9 225 // Configure locales
226 setlocale(LC_ALL, Banana::$profile['locale']);
78cd27b3 227
ab02e8a9 228 // Check if the state is valid
229 if (Banana::$protocole->lastErrNo()) {
d8d416c4 230 return Banana::$page->kill(_b_('Une erreur a été rencontrée lors de la connexion au serveur') . '<br />'
ab02e8a9 231 . Banana::$protocole->lastError());
232 }
233 if (!Banana::$protocole->isValid()) {
234 return Banana::$page->kill(_b_('Connexion non-valide'));
235 }
236 if (Banana::$action & Banana::ACTION_BOX_NEEDED) {
7972645b 237 if(Banana::$boxpattern && !preg_match('/' . Banana::$boxpattern . '/i', $group)) {
ab02e8a9 238 Banana::$page->setPage('group');
d8d416c4 239 return Banana::$page->kill(_b_("Ce newsgroup n'existe pas ou vous n'avez pas l'autorisation d'y accéder"));
ab02e8a9 240 }
241 }
78cd27b3 242
ab02e8a9 243 // Dispatch to the action handlers
244 switch (Banana::$action) {
245 case Banana::ACTION_BOX_SUBS:
246 $error = $this->action_subscribe();
247 break;
248 case Banana::ACTION_BOX_LIST:
249 $error = $this->action_listBoxes();
250 break;
251 case Banana::ACTION_MSG_LIST:
252 $error = $this->action_showThread(Banana::$group, Banana::$first);
253 break;
18f6babf 254 case Banana::ACTION_MSG_IMAGES:
255 Banana::$msgshow_externalimages = true;
ab02e8a9 256 case Banana::ACTION_MSG_READ:
257 $error = $this->action_showMessage(Banana::$group, Banana::$artid, Banana::$part);
258 break;
259 case Banana::ACTION_MSG_NEW:
260 $error = $this->action_newMessage(Banana::$group, Banana::$artid);
261 break;
262 case Banana::ACTION_MSG_CANCEL:
263 $error = $this->action_cancelMessage(Banana::$group, Banana::$artid);
264 break;
265 default:
d8d416c4 266 $error = _b_("L'action demandée n'est pas supportée par Banana");
ab02e8a9 267 }
268
269 // Generate the page
270 if (is_string($error)) {
271 return Banana::$page->kill($error);
272 }
273 return Banana::$page->run();
78cd27b3 274 }
275
a20df265 276 /** Return the CSS code to include in the headers
277 */
278 public function css()
279 {
280 return Banana::$page->css;
281 }
282
ab02e8a9 283 /**************************************************************************/
284 /* actions */
285 /**************************************************************************/
286 protected function action_saveSubs($groups)
78cd27b3 287 {
ab02e8a9 288 Banana::$profile['subscribe'] = $groups;
289 return true;
78cd27b3 290 }
291
ab02e8a9 292 protected function action_subscribe()
78cd27b3 293 {
ab02e8a9 294 Banana::$page->setPage('subscribe');
295 if (isset($_POST['validsubs'])) {
296 $this->action_saveSubs(array_keys($_POST['subscribe']));
297 Banana::$page->redirect();
856dc84a 298 }
ab02e8a9 299 $groups = Banana::$protocole->getBoxList(Banana::BOXES_ALL);
300 Banana::$page->assign('groups', $groups);
301 return true;
78cd27b3 302 }
303
ab02e8a9 304 protected function action_listBoxes()
7a0e2710 305 {
ab02e8a9 306 Banana::$page->setPage('forums');
307 $groups = Banana::$protocole->getBoxList(Banana::BOXES_SUB, Banana::$profile['lastnews'], true);
308 $newgroups = Banana::$protocole->getBoxList(Banana::BOXES_NEW, Banana::$profile['lastnews'], true);
309 Banana::$page->assign('groups', $groups);
310 Banana::$page->assign('newgroups', $newgroups);
311 return true;
7a0e2710 312 }
313
ab02e8a9 314 protected function action_showThread($group, $first)
78cd27b3 315 {
ab02e8a9 316 Banana::$page->setPage('thread');
317 if (!$this->loadSpool($group)) {
318 return _b_('Impossible charger la liste des messages de ') . $group;
78cd27b3 319 }
e0f557df 320 if (Banana::$spool_boxlist) {
321 $groups = Banana::$protocole->getBoxList(Banana::BOXES_SUB, Banana::$profile['lastnews'], true);
322 Banana::$page->assign('groups', $groups);
323 }
7972645b 324 Banana::$page->assign('msgbypage', Banana::$spool_tmax);
ab02e8a9 325 return true;
78cd27b3 326 }
327
ab02e8a9 328 protected function action_showMessage($group, $artid, $partid = 'text')
78cd27b3 329 {
ab02e8a9 330 Banana::$page->setPage('message');
9bc195d6 331 $istext = $partid == 'text' || $partid == 'source'
25c20c41 332 || preg_match('!^[-a-z0-9_]+/[-a-z0-9_]+$!', $partid);
9bc195d6 333 if ($istext) {
ab02e8a9 334 $this->loadSpool($group);
335 }
336 $msg =& $this->loadMessage($group, $artid);
337 if (is_null($msg)) {
338 $this->loadSpool($group);
339 $this->removeMessage($group, $artid);
d8d416c4 340 return _b_('Le message demandé n\'existe pas. Il est possible qu\'il ait été annulé');
ab02e8a9 341 }
342 if ($partid == 'xface') {
343 $msg->getXFace();
344 exit;
9bc195d6 345 } elseif (!$istext) {
ab02e8a9 346 $part = $msg->getPartById($partid);
347 if (!is_null($part)) {
348 $part->send(true);
52cafcf1 349 }
ab02e8a9 350 $part = $msg->getFile($partid);
351 if (!is_null($part)) {
352 $part->send();
78cd27b3 353 }
ab02e8a9 354 exit;
9bc195d6 355 } elseif ($partid == 'text') {
1273e8f4 356 $partid = null;
357 Banana::$page->assign('body', $msg->getFormattedBody($partid));
9bc195d6 358 } elseif ($partid == 'source') {
b188e462 359 $text = Banana::$protocole->getMessageSource($artid);
360 if (!is_utf8($text)) {
361 $text = utf8_encode($text);
362 }
363 Banana::$page->assign('body', '<pre>' . banana_htmlentities($text) . '</pre>');
9bc195d6 364 } else {
365 Banana::$page->assign('body', $msg->getFormattedBody($partid));
78cd27b3 366 }
9bc195d6 367
7972645b 368 if (Banana::$profile['autoup']) {
369 Banana::$spool->markAsRead($artid);
370 }
e0f557df 371 if (Banana::$spool_boxlist) {
372 $groups = Banana::$protocole->getBoxList(Banana::BOXES_SUB, Banana::$profile['lastnews'], true);
373 Banana::$page->assign('groups', $groups);
374 }
ab02e8a9 375 Banana::$page->assign_by_ref('message', $msg);
18f6babf 376 Banana::$page->assign('extimages', Banana::$msgshow_hasextimages);
7972645b 377 Banana::$page->assign('headers', Banana::$msgshow_headers);
1273e8f4 378 Banana::$page->assign('type', $partid);
ab02e8a9 379 return true;
78cd27b3 380 }
381
ab02e8a9 382 protected function action_newMessage($group, $artid)
78cd27b3 383 {
ab02e8a9 384 Banana::$page->setPage('new');
385 if (!Banana::$protocole->canSend()) {
386 return _b_('Vous n\'avez pas le droit de poster');
387 }
388 $hdrs = Banana::$protocole->requestedHeaders();
389 $headers = array();
390 foreach ($hdrs as $header) {
391 $headers[$header] = array('name' => BananaMessage::translateHeaderName($header));
7972645b 392 if (isset(Banana::$profile['headers'][$header])) {
393 $headers[$header]['fixed'] = Banana::$profile['headers'][$header];
78cd27b3 394 }
395 }
ab02e8a9 396 if (isset($_POST['sendmessage'])) {
397 $hdr_values = array();
398 foreach ($hdrs as $header) {
399 $hdr_values[$header] = isset($headers[$header]['fixed']) ? $headers[$header]['fixed'] : @$_POST[$header];
f6df9eb2 400 }
ab02e8a9 401 if ($artid) {
402 $old =& $this->loadMessage($group, $artid);
403 $hdr_values['References'] = $old->getHeaderValue('references') . $old->getHeaderValue('message-id');
856dc84a 404 }
ab02e8a9 405 $msg = null;
406 if (empty($hdr_values['Subject'])) {
407 Banana::$page->trig(_b_('Le message doit avoir un sujet'));
7972645b 408 } elseif (Banana::$msgedit_canattach && isset($_FILES['attachment'])) {
ab02e8a9 409 $uploaded = $_FILES['attachment'];
410 if (!is_uploaded_file($uploaded['tmp_name'])) {
d8d416c4 411 Banana::$page->trig(_b_('Une erreur est survenue lors du téléchargement du fichier'));
ab02e8a9 412 } else {
413 $msg = BananaMessage::newMessage($hdr_values, $_POST['body'], $uploaded);
414 }
415 } else {
416 $msg = BananaMessage::newMessage($hdr_values, $_POST['body']);
417 }
418 if (!is_null($msg)) {
419 if (Banana::$protocole->send($msg)) {
420 Banana::$page->redirect(array('group' => $group, 'artid' => $artid));
421 }
422 Banana::$page->trig(_b_('Une erreur est survenue lors de l\'envoi du message :') . '<br />'
423 . Banana::$protocole->lastError());
f6df9eb2 424 }
78cd27b3 425 } else {
ab02e8a9 426 if (!is_null($artid)) {
427 $msg =& $this->loadMessage($group, $artid);
d8d416c4 428 $body = $msg->getSender() . _b_(' a écrit :') . "\n" . $msg->quote();
ab02e8a9 429 $subject = $msg->getHeaderValue('subject');
430 $headers['Subject']['user'] = 'Re: ' . preg_replace("/^re\s*:\s*/i", '', $subject);
431 $target = $msg->getHeaderValue($hdrs['reply']);
432 if (empty($target)) {
433 $target = $group;
434 }
435 $headers[$hdrs['dest']]['user'] =& $target;
436 } else {
437 $body = '';
438 $headers[$hdrs['dest']]['user'] = $group;
856dc84a 439 }
7972645b 440 if (Banana::$profile['signature']) {
441 $body .= "\n\n-- \n" . Banana::$profile['signature'];
ab02e8a9 442 }
443 Banana::$page->assign('body', $body);
78cd27b3 444 }
ab02e8a9 445
7972645b 446 Banana::$page->assign('maxfilesize', Banana::$msgedit_maxfilesize);
447 Banana::$page->assign('can_attach', Banana::$msgedit_canattach);
ab02e8a9 448 Banana::$page->assign('headers', $headers);
856dc84a 449 return true;
78cd27b3 450 }
451
ab02e8a9 452 protected function action_cancelMessage($group, $artid)
78cd27b3 453 {
ab02e8a9 454 Banana::$page->setPage('cancel');
455 $msg =& $this->loadMessage($group, $artid);
456 if (!$msg->canCancel()) {
457 return _b_('Vous n\'avez pas les droits suffisants pour supprimer ce message');
458 }
459 if (isset($_POST['cancel'])) {
460 $this->loadSpool($group);
461 $ndx = Banana::$spool->getNdX($id) - 1;
462 if (!Banana::$protocole->cancel($msg)) {
463 return _b_('Une erreur s\'est produite lors de l\'annulation du message :') . '<br />'
464 . Banana::$protocole->lastError();
465 }
466 if ($ndx < 50) {
467 $ndx = 0;
468 }
469 $this->removeMessage($group, $artid);
470 Banana::$page->redirect(Array('group' => $group, 'first' => $ndx));
856dc84a 471 }
d759a2ba 472
ab02e8a9 473 Banana::$page->assign_by_ref('message', $msg);
d759a2ba 474 Banana::$page->assign('body', $msg->getFormattedBody());
475 Banana::$page->assign('headers', Banana::$msgshow_headers);
856dc84a 476 return true;
78cd27b3 477 }
478
ab02e8a9 479 /**************************************************************************/
a40f3908 480 /* Spoolgen functions */
481 /**************************************************************************/
482
483 private function checkErrors()
484 {
485 if (Banana::$protocole->lastErrno()) {
486 echo "\nL'erreur suivante s'est produite : "
487 . Banana::$protocole->lastErrno() . " "
488 . Banana::$protocole->lastError() . "\n";
489 return false;
490 }
491 return true;
492 }
493
494 static public function createAllSpool(array $protos)
495 {
496 foreach ($protos as $proto) {
497 $banana = new Banana(array(), $proto);
498
499 if (!$banana->checkErrors()) {
500 continue;
501 }
502 $groups = Banana::$protocole->getBoxList();
503 if (!$banana->checkErrors()) {
504 continue;
505 }
506
507 print "** $proto **\n";
508 foreach (array_keys($groups) as $g) {
509 print "Generating spool for $g : ";
510 Banana::$group = $g;
511 $spool = $banana->loadSpool($g);
512 if (!$banana->checkErrors()) {
513 break;
514 }
515 print "done.\n";
516 unset($spool);
517 }
518 print "\n";
519 }
520 }
521
522 /**************************************************************************/
ab02e8a9 523 /* Private functions */
524 /**************************************************************************/
525
916e4a56 526 protected function loadSpool($group)
78cd27b3 527 {
ab02e8a9 528 Banana::load('spool');
529 if (!Banana::$spool || Banana::$spool->group != $group) {
e0f557df 530 $clean = false;
ab02e8a9 531 if ($group == @$_SESSION['banana_group'] && isset($_SESSION['banana_spool'])) {
532 Banana::$spool = unserialize($_SESSION['banana_spool']);
7b98ea62 533 $clean = @(Banana::$profile['lastnews'] != $_SESSION['banana_lastnews']);
a5980eae 534 } else {
535 unset($_SESSION['banana_message']);
536 unset($_SESSION['banana_artid']);
537 unset($_SESSION['banana_showhdr']);
7972645b 538 }
7b98ea62 539 BananaSpool::getSpool($group, Banana::$profile['lastnews'], Banana::$profile['autoup'] || $clean);
ab02e8a9 540 $_SESSION['banana_group'] = $group;
7972645b 541 if (!Banana::$profile['display']) {
542 $_SESSION['banana_spool'] = serialize(Banana::$spool);
7b98ea62 543 $_SESSION['banana_lastnews'] = Banana::$profile['lastnews'];
7972645b 544 }
ab02e8a9 545 Banana::$spool->setMode(Banana::$profile['display'] ? Banana::SPOOL_UNREAD : Banana::SPOOL_ALL);
78cd27b3 546 }
ab02e8a9 547 return true;
78cd27b3 548 }
549
916e4a56 550 protected function &loadMessage($group, $artid)
78cd27b3 551 {
ab02e8a9 552 Banana::load('message');
553 if ($group == @$_SESSION['banana_group'] && $artid == @$_SESSION['banana_artid']
554 && isset($_SESSION['banana_message'])) {
555 $message = unserialize($_SESSION['banana_message']);
7972645b 556 Banana::$msgshow_headers = $_SESSION['banana_showhdr'];
ab02e8a9 557 } else {
558 $message = Banana::$protocole->getMessage($artid);
559 $_SESSION['banana_group'] = $group;
560 $_SESSION['banana_artid'] = $artid;
561 $_SESSION['banana_message'] = serialize($message);
7972645b 562 $_SESSION['banana_showhdr'] = Banana::$msgshow_headers;
ab02e8a9 563 }
564 Banana::$message =& $message;
565 return $message;
78cd27b3 566 }
d28aa62d 567
916e4a56 568 protected function removeMessage($group, $artid)
d28aa62d 569 {
ab02e8a9 570 Banana::$spool->delId($artid);
571 if ($group == $_SESSION['banana_group']) {
7972645b 572 if (!Banana::$profile['display']) {
573 $_SESSION['banana_spool'] = serialize(Banana::$spool);
7b3d2efb 574 }
ab02e8a9 575 if ($artid == $_SESSION['banana_artid']) {
576 unset($_SESSION['banana_message']);
577 unset($_SESSION['banana_showhdr']);
578 unset($_SESSION['banana_artid']);
d28aa62d 579 }
d28aa62d 580 }
ab02e8a9 581 return true;
d28aa62d 582 }
f12fdb59 583
ab02e8a9 584 static private function load($file)
f12fdb59 585 {
ab02e8a9 586 $file = strtolower($file) . '.inc.php';
587 if (!@include_once dirname(__FILE__) . "/$file") {
588 require_once $file;
589 }
f12fdb59 590 }
78cd27b3 591}
592
d8d416c4 593// vim:set et sw=4 sts=4 ts=4 enc=utf-8:
78cd27b3 594?>