Features:
- Allows to import CardDAV contacts (e.g. from 'owncloud') to an AVM FritzBox
- No modification of the FirtzBox firmware (aka FritzOS) required
- Multiple CardDAV accounts and "folders" can be specified
CAUTION: This script will overwrite your current contacts in the FritzBox without any warning!
This version of carddav2fb is a forked version from carlos22 with updates applied being published at http://www.ip-phone-forum.de/showthread.php?t=267477. In addition to being compatible to newer Fritz!OS versions it also features two fixes regarding OSX generated vCards.
-
Use git to checkout carddav2fb from github
git clone https://github.com/jens-maus/carddav2fb.git
-
Initialize the git submodules
cd carddav2fb git submodule init git submodule update
Now you should have everything setup and checked out to a 'carddav2fb' directory.
- Make sure you have
System -> FRITZ!Box-Users -> Login via Username+Password
in your FRITZ!Box activated. - Make sure you have a separate user created under
System -> FRITZ!Box-Users
which has access to all NAS content and settings. - Copy
config.example.php
toconfig.php
and adapt it to your needs including setting the FRITZ!Box user settings.
-
Install PHP and PHP-Curl
sudo apt-get install php5-cli php5-curl
-
Open a Terminal and execute
php carddav2fb.php
- Download PHP from php.net. Extract it to
C:\PHP
. - Start -> cmd. Run
C:\PHP\php.exe C:\path\to\carddav2fb\carddav2fb.php
$config['fritzbox_ip'] = 'fritz.box';
$config['fritzbox_user'] = '<USERNAME>';
$config['fritzbox_pw'] = '<PASSWORD>';
$config['phonebook_number'] = '0';
$config['phonebook_name'] = 'Telefonbuch';
// first
$config['carddav'][0] = array(
'url' => 'https://<HOSTNAME>/remote.php/carddav/addressbooks/<USERNAME>/contacts',
'user' => '<USERNAME>',
'pw' => '<PASSWORD>'
);