37 lines
944 B
PHP
37 lines
944 B
PHP
<?php
|
|
$plugins=array(
|
|
'email'=>array('gmail'=>array('name'=>"GMail",
|
|
'version'=>"1.4.9",
|
|
'description'=>"Get the contacts from a GMail account",
|
|
'base_version'=>"1.8.4",
|
|
'type'=>"email",
|
|
'check_url'=>"http://google.com",
|
|
'requirement'=>"email",
|
|
'allowed_domains'=>false,
|
|
'detected_domains'=>array('0'=>"/(gmail.com)/i",
|
|
'1'=>"/(googlemail.com)/i"),
|
|
'imported_details'=>array('0'=>"first_name",
|
|
'1'=>"email_1",
|
|
'2'=>"email_2",
|
|
'3'=>"email_3",
|
|
'4'=>"organization",
|
|
'5'=>"phone_mobile",
|
|
'6'=>"phone_home",
|
|
'7'=>"fax",
|
|
'8'=>"pager",
|
|
'9'=>"address_home",
|
|
'10'=>"address_work")),
|
|
'yahoo'=>array('name'=>"Yahoo!",
|
|
'version'=>"1.5.5",
|
|
'description'=>"Get the contacts from a Yahoo! account",
|
|
'base_version'=>"1.8.0",
|
|
'type'=>"email",
|
|
'check_url'=>"http://mail.yahoo.com",
|
|
'requirement'=>"email",
|
|
'allowed_domains'=>array('0'=>"/(yahoo)/i",
|
|
'1'=>"/(ymail)/i",
|
|
'2'=>"/(rocketmail)/i"),
|
|
'imported_details'=>array('0'=>"first_name",
|
|
'1'=>"email_1")))
|
|
);
|
|
?>
|