Viewing file: take.php (1.18 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/** * take.php * * Address Take -- steals addresses from incoming email messages. Searches * the To, Cc, From and Reply-To headers. * * @copyright © 1999-2006 The SquirrelMail Project Team * @license http://opensource.org/licenses/gpl-license.php GNU Public License * @version $Id: take.php,v 1.20 2006/01/23 18:41:26 tokul Exp $ * @package plugins * @subpackage abook_take */
/** * Path for SquirrelMail required files. * @ignore */ define('SM_PATH','../../');
/* SquirrelMail required files. */ require_once(SM_PATH . 'include/validate.php'); require_once(SM_PATH . 'functions/addressbook.php');
displayPageHeader($color, 'None');
/* input form data */ sqgetGlobalVar('email', $email, SQ_POST);
$abook_take_verify = getPref($data_dir, $username, 'abook_take_verify');
$abook = addressbook_init(false, true);
$addrs = array(); foreach ($email as $Val) { if (valid_email($Val, $abook_take_verify)) { $addrs[$Val] = $Val; } else { $addrs[$Val] = 'FAIL - ' . $Val; } }
$formdata=array('email'=>$addrs);
abook_create_form(SM_PATH . 'src/addressbook.php','addaddr',_("Add to address book"),_("Add address"),$formdata); echo '</form>'; ?> </body></html>
|