1 |
#!/usr/bin/perl |
2 |
|
3 |
use strict; |
4 |
use warnings; |
5 |
|
6 |
BEGIN { |
7 |
use FindBin qw($Bin); |
8 |
} |
9 |
|
10 |
use lib qw( c:\home\amo\develop\netfrag.org\nfo\perl\libs ); |
11 |
|
12 |
use org::netfrag::shortcuts qw( run_cmd ); |
13 |
|
14 |
my $hr = "-" x 40; |
15 |
|
16 |
print $hr, "\n"; |
17 |
print " Outlook vs. LDAP", "\n"; |
18 |
print $hr, "\n"; |
19 |
#run_cmd('feed.pl --action=save --source=outlook --source-type=ContactItem --source-node=test.test --target=ldap --target-node=Addressbooks --mapping-module=Torus::Map::Outlook'); |
20 |
#run_cmd('feed.pl --action=save --source=outlook --source-type=ContactItem --source-node=test.test --target=ldap --target-node=Adressen --mapping-module=Torus::Map::Outlook'); |
21 |
run_cmd('feed.pl --action=save --source=outlook --source-type=ContactItem --source-node=Adressen.test --target=ldap --target-node=Adressen.test --mapping-module=Torus::Map::Outlook'); |
22 |
#run_cmd('feed.pl --action=save --source=outlook --source-type=ContactItem --source-node=test.test --target=ldap --target-node=Adressen.test --mapping-module=Torus::Map::Outlook'); |
23 |
|
24 |
print $hr, "\n"; |
25 |
print " LDAP vs. Outlook", "\n"; |
26 |
print $hr, "\n"; |
27 |
print " ... to be implemented!!!", "\n"; |
28 |
|
29 |
1; |