# --------------------------------------------------------------------
# Sample SMS addressbook
# Names and Numbers follow
#
# Syntax:
#		NAME = "[SERVICE:]NUMBER|NAME[,[SERVICE:]NUMBER|NAME...]"
#
# Valid NAMEs can contain any combination of
# alphanumeric and '_' characters. A Valid
# name cannot begin with a digit.
#
# Valid NUMBERs can contain any combination of
# numeric and ',' characters. Any NAMEs on the right
# side of the '=' is expanded.
#
# --------------------------------------------------------------------
# Examples
# --------------------------------------------------------------------

{
	angelo = "minicall:252044"	# If your in the UK send me a 
					# Test page including your email
					# address.

	User1 = "cellnet:123451"
	User2 = "12342"
	User3 = "orange:12343"
	User4 = "vodafone:12344"

	TeamA = 
	( 	"User1", 
		"User2" 
	)

	TeamB = 
	( 	"User3", 
		"User4" 
	)
}

# --------------------------------------------------------------------
