1 |
#!/usr/bin/perl |
2 |
|
3 |
## -------------------------------------------------------------------------------- |
4 |
## $Id: feed_contacts.pl,v 1.3 2003/01/20 21:50:49 joko Exp $ |
5 |
## -------------------------------------------------------------------------------- |
6 |
## $Log: feed_contacts.pl,v $ |
7 |
## Revision 1.3 2003/01/20 21:50:49 joko |
8 |
## + now utilizing 'org::netfrag::preambel' |
9 |
## |
10 |
## Revision 1.2 2003/01/20 21:20:35 joko |
11 |
## - now doesn't use a hardcoded $libpath any more |
12 |
## |
13 |
## -------------------------------------------------------------------------------- |
14 |
|
15 |
|
16 |
use strict; |
17 |
use warnings; |
18 |
|
19 |
use lib qw( ../libs ); |
20 |
use org::netfrag::preambel; |
21 |
|
22 |
|
23 |
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - main |
24 |
|
25 |
use org::netfrag::shortcuts qw( run_cmd ); |
26 |
|
27 |
my $hr = "-" x 40; |
28 |
|
29 |
print $hr, "\n"; |
30 |
print " Outlook vs. LDAP", "\n"; |
31 |
print $hr, "\n"; |
32 |
#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'); |
33 |
#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'); |
34 |
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'); |
35 |
#run_cmd('feed.pl --action=save --source=outlook --source-type=ContactItem --source-node=test --target=ldap --target-node=test --mapping-module=Torus::Map::Outlook'); |
36 |
#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'); |
37 |
|
38 |
print $hr, "\n"; |
39 |
print " LDAP vs. Outlook", "\n"; |
40 |
print $hr, "\n"; |
41 |
print " ... to be implemented!!!", "\n"; |
42 |
|
43 |
1; |