mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-15 20:44:27 +01:00
39 lines
1.4 KiB
PHP
39 lines
1.4 KiB
PHP
|
<?php
|
||
|
/***************************************************************************\
|
||
|
* eGroupWare - FeLaMiMail *
|
||
|
* http://www.linux-at-work.de *
|
||
|
* http://www.phpgw.de *
|
||
|
* http://www.egroupware.org *
|
||
|
* Written by : Lars Kneschke [lkneschke@linux-at-work.de] *
|
||
|
* ------------------------------------------------- *
|
||
|
* This program is free software; you can redistribute it and/or modify it *
|
||
|
* under the terms of the GNU General Public License as published by the *
|
||
|
* Free Software Foundation; either version 2 of the License, or (at your *
|
||
|
* option) any later version. *
|
||
|
\***************************************************************************/
|
||
|
/* $Id$ */
|
||
|
|
||
|
class sofelamimail
|
||
|
{
|
||
|
function sofelamimail()
|
||
|
{
|
||
|
#$this->bopreferences =& CreateObject('felamimail.bopreferences');
|
||
|
}
|
||
|
|
||
|
function fetchheader($_header)
|
||
|
{
|
||
|
$headerRows = explode("\n",$_header);
|
||
|
for($i=0;$i<count($headerRows);$i++)
|
||
|
{
|
||
|
if(preg_match("/^From:(.*)/i",$headerRows[$i],$matches))
|
||
|
$retValue['from'] = $matches[1];
|
||
|
if(preg_match("/^to:(.*)/i",$headerRows[$i],$matches))
|
||
|
$retValue['to'] = $matches[1];
|
||
|
}
|
||
|
|
||
|
return $retValue;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
?>
|