sms_addressbook
上传用户:mei_mei897
上传日期:2007-01-05
资源大小:82k
文件大小:1k
源码类别:

手机短信编程

开发平台:

Unix_Linux

  1. # --------------------------------------------------------------------
  2. # Sample SMS addressbook
  3. # Names and Numbers follow
  4. #
  5. # Syntax:
  6. # NAME = "[SERVICE:]NUMBER|NAME[,[SERVICE:]NUMBER|NAME...]"
  7. #
  8. # Valid NAMEs can contain any combination of
  9. # alphanumeric and '_' characters. A Valid
  10. # name cannot begin with a digit.
  11. #
  12. # Valid NUMBERs can contain any combination of
  13. # numeric and ',' characters. Any NAMEs on the right
  14. # side of the '=' is expanded.
  15. #
  16. # --------------------------------------------------------------------
  17. # Examples
  18. # --------------------------------------------------------------------
  19. angelo = MINICALL:252044 # If your in the UK send me a 
  20. # Test page including your email
  21. # address.
  22. User1 = CELLNET:123451
  23. User2 = 12342
  24. User3 = ORANGE:12343
  25. User4 = VODAFONE:12344
  26. TeamA = User1,User2
  27. TeamB = User3,User4
  28. # --------------------------------------------------------------------