Advertisement
Guest User

Untitled

a guest
Oct 28th, 2016
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. # Gammu - SMSDRC Sample configuration
  2.  
  3. ```
  4. # Configuration file for Gammu SMS Daemon
  5.  
  6. # Gammu library configuration, see gammurc(5)
  7. [gammu]
  8. port = /dev/ttyUSB0
  9. connection = at115200
  10. # Debugging
  11. #logformat = textall
  12.  
  13. # SMSD configuration, see gammu-smsdrc(5)
  14. [smsd]
  15. #service = files
  16. Service = sql
  17. Driver = native_mysql
  18. LogFile = syslog
  19. User = gammu
  20. Password = password
  21. PC = localhost
  22. Database = gammu
  23. PhoneID = gsm-01
  24.  
  25. # Increase for debugging information
  26. debuglevel = 2
  27.  
  28. commtimeout = 1
  29. sendtimeout = 15
  30. statusfrequence = 0
  31.  
  32. outboxformat = unicode
  33. transmitformat = unicode
  34.  
  35. RunOnReceive = node /var/spool/gammu/hellomsg.js
  36.  
  37. # Paths where messages are stored
  38. inboxpath = /var/spool/gammu/inbox/
  39. outboxpath = /var/spool/gammu/outbox/
  40. sentsmspath = /var/spool/gammu/sent/
  41. errorsmspath = /var/spool/gammu/error/
  42.  
  43. ```
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement