{# An ippp0 connection for diald outgoing with no dialin (MSN set to "-") }
diald	-	ippp0 user {
    $OUT .= "$DialupUserAccount name $DialupUserAccount";
    # If you really want to change the options used by ipppd, then
    # you can set the IpppdOptions property of the 'isdn' service.
    # If you do this, you'd better know what you are doing!
    my $ppp_options = db_get_prop($confref, 'isdn', 'IpppdOptions');
    unless (defined $ppp_options)
    {
	$ppp_options = " noauth debug -vj -vjccomp -bsdcomp -ac -pc " .
	    "noipdefault ipcp-accept-local ipcp-accept-remote";
    }
    $OUT .= " $ppp_options ipparam diald";
}
