123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <?php
- /**
- * take.php
- *
- * Address Take -- steals addresses from incoming email messages. Searches
- * the To, Cc, From and Reply-To headers.
- *
- * @copyright © 1999-2007 The SquirrelMail Project Team
- * @license http://opensource.org/licenses/gpl-license.php GNU Public License
- * @version $Id$
- * @package plugins
- * @subpackage abook_take
- */
- /**
- * Include the SquirrelMail initialization file.
- */
- require('../../include/init.php');
- /* SquirrelMail required files. */
- require(SM_PATH . 'functions/forms.php');
- require(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>
|