1 |
#!/usr/bin/perl |
2 |
|
3 |
## -------------------------------------------------------------------------------- |
4 |
## $Id: feed.pl,v 1.3 2003/01/20 16:29:48 joko Exp $ |
5 |
## -------------------------------------------------------------------------------- |
6 |
## $Log: feed.pl,v $ |
7 |
## -------------------------------------------------------------------------------- |
8 |
|
9 |
|
10 |
use strict; |
11 |
use warnings; |
12 |
|
13 |
BEGIN { |
14 |
use FindBin qw($Bin); |
15 |
use lib qw( |
16 |
$Bin/../../libs |
17 |
); |
18 |
} |
19 |
|
20 |
|
21 |
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - main |
22 |
|
23 |
use org::netfrag::shortcuts qw( run_cmd ); |
24 |
|
25 |
my $hr = "-" x 40; |
26 |
|
27 |
print $hr, "\n"; |
28 |
print " Outlook vs. LDAP", "\n"; |
29 |
print $hr, "\n"; |
30 |
#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'); |
31 |
#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'); |
32 |
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'); |
33 |
#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'); |
34 |
|
35 |
print $hr, "\n"; |
36 |
print " LDAP vs. Outlook", "\n"; |
37 |
print $hr, "\n"; |
38 |
print " ... to be implemented!!!", "\n"; |
39 |
|
40 |
1; |