3
# popp connects to your provider and returns. You are able to
4
# see pppd proceed dialing. Once the connection is
5
# established pppd returns.
7
# Exit Status: taken from pppd
9
# Example: popp && mailsync
11
# This will dial your default provider, you will see pppd
12
# progress and as soon as the connection's established, your
13
# mail will get synchronized
15
# Version: 0.1 28-Dec-2001 "Tomas Pospisek" <tpo_deb@sourcepole.ch>
28
my $provider = "provider" unless @ARGV;
29
$ret = system "pon $provider @ARGV updetach";
33
exit $ret / 256; # perlbizzare