# 
# $Id: phonebook,v 1.10 1998/02/17 09:53:31 mdejonge Exp $
#
#   $Source: /home/mdejonge/CVS/projects/modem/samples/phonebook,v $
# $Revision: 1.10 $
#    Author: Merijn de Jonge
#     Email: mdejonge@wins.uva.nl
# 
#  
# 
# This file is part of the modem communication package.
# Copyright (C) 1996-1998  Merijn de Jonge
# 
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
# 
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
# 
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
# 
# 
# 
#
# A phonebook entry has the following format:
#
# [name]         Name of the entry. 
#    number    = <number to dial>
#    login     = <login name>
#    password  = <password>
#    type      = <type of connection>. This is currently not used.
#                Later it will be used to indicate the type of connection
#                for this entry, like FAX, PPP etc.
#    prelogin  = prompt  When this keyword is used, a terminal window will
#                        appear just before logging into the remote
#                        site. Using the terminal you can communicate
#                        with the remote site directly.
#                <text>  Any text other than the keyword "prompt" is
#                        sent to the remote site before logging in/
#   postlogin  = prompt  Like prelogin but the terminal window is
#                        opened after logging in.
#                <text>  Like prelogin but text is sent to remote
#                        site after logging in.
# All items are optional. When not specified you will be prompted for
# the right values when needed.
# The items above are the items used by the program. Other items can be 
# defined, they will just be ignored.                 
# 
# sample:

[xs4all]
   number   = 6222175
   login    = (mylogin)
   password = (mypassword)
   type     = ppp

# Just a few newlines to get login prompt   
   prelogin = \n\n\n

# Start ppp service on remote site
   postlogin = ppp
[university]
   number   = 1234567
   type     = ppp

[bbs]
   number   = 7654321
# 
# EOF samples/phonebook
# 
