You are here

INSTALL.txt in Support Ticketing System 6

Same filename in this branch
  1. 6 INSTALL.txt
  2. 6 support_charts/INSTALL.txt
  3. 6 support_substatus/INSTALL.txt
  4. 6 support_pm/INSTALL.txt
Same filename and directory in other branches
  1. 7 INSTALL.txt
Overview
--------
The Support module allows you to manage Tickets in any number of queues,
referred to by the module as "Clients".  Each Support Client gets a logically
distinct ticket queue, and a ticket can only be assigned to a single Client at
a time. Drupal users must be granted access to Clients to see tickets in a
given Client queue, and can either be granted limited access to only see the
tickets they created themselves or are explicitly assigned to them, or complete
access to see all tickets assigned to the Client.

Tickets can only be assigned to up to one Drupal User at a time.  Tickets always
have a Priority (low, normal, high, critical) and a State (new, active, pending,
closed).

Support Clients can be optionally integrated with email allowing tickets to be
created and updated by email. Notificiation emails can be generated by the
support module when tickets are created or updated.  A Drupal User must be
subscribed to a ticket to receive email notifications. There is no limit to the
number of Users that can subscribe to an individual ticket. Inidividual Clients
can be configured to auto-subscribe specific Drupal Users to new tickets.

In Drupal terms, a Ticket is a Content Type, so Tickets are Drupal Nodes. Ticket
Updates are Drupal Comments.

You must create at least one Client to use the Support module. There is no
inherent maximum limit to the number of clients you can create. Read on for
step by step directions to get started with the Support module.



Installation
------------

1) Enable the module.

2) Edit 'Administer >> Content management >> Content types >> Support ticket'
 a) Set the desired Submission form settings (such as Title field label, Body
    field label, Minimum number of words, etc)
 b) Set the desired Workflow settings
 c) Set the desired Comment settings (recommended):
    - make comments read/write
    - make default display mode 'flat list - expanded'
    - make default display order 'Date - oldest first'
    - increase default comments per page
    - do not display comment controls
    - disable the comment subject field
    - display comment submission form below post or comments

3) Go to "Administer >> Support >> Clients >> Add client" and create one or
   more Support clients.

   If you only want to track tickets online, and send out notifications as
   tickets are created and updated, simply define the 'Client name' and 'Path'.
   If you want the ability to create and update tickets via email, you will
   need to open the 'Inbound email integration' section, check 'Integrate
   email', and fill out the rest of the information in that section.  If
   integrating inbound email, you will need to create an email account for
   each client -- support will use this account to send and receive email.
   More information can be found in MAIL.txt.

4) If creating multiple Support clients, go to "Administer >> User management
   >> Roles" and create one role for each Support client.  (This is an optional
   step and is only required if you want to prevent one client from viewing and
   updating the tickets of another client.  If you are using this ticketing
   system internally, this may not be important to you.)

5) Go to "Administer >> User management >> Permissions" and assign the desired
   permissions.  A user will need at least one "access CLIENT tickets"
   permission and "create tickets" permission to be able to create tickets.
   Users can only create and update tickets for clients they can access.

   Users with "can suppress notification" permissions have the option to
   manually disable a notification email from being sent out.  An email will
   still get sent to admins telling them that an update has been made but not
   showing the contents of the update.  This feature allows passwords and other
   sensitive information to be added to tickets without being sent out as a
   plain text email.

   Users with "can assign tickets to self" permissions are able to assign a
   ticket to themselves, or to assign the ticket to nobody.

   Users with "can assign tickets to any user" permissions are able to assign
   a ticket to themselves or to another user.  Only users with permission to 
   view a given ticket can be assigned to it.

   Users with "can subscribe other users to notifications" permissions are able
   to subscribe other users to email notifications when a ticket is updated.
   Users without this permission can only subscribe themselves.  Only users
   with permission to view a given ticket can be subscribed to notifications
   for it.

   Users with "download mail via support/fetch" permissions can access the path
   "support/fetch" which will cause the Support module to download all client
   email.  Mail is also fetched when Drupal's cron is run, but this allows mail
   to be checked at a different frequency than cron is run, if desired.  If you
   are using Support's mail integration features and you are running Drupal's
   cron, you do not ever need to access support/fetch.

   Users with "view other users tickets" permissions can view all tickets for
   any client that they have "access CLIENT NAME tickets" permissions.  Users
   that do not have this permission can only view tickets that they themselves
   have created. Users with "administer support", "edit any ticket" and/or
   "delete any ticket" permissions can always "view other users tickets" whether
   or not they are explicitly granted this permission.

   Users with "edit multiple tickets" permissions will be able to add updates
   and change the state and priority of multiple tickets from the client
   overview pages.

   When creating and modifying tickets, users with "can select client"
   permissions can assign the ticket to any client that they have permission
   to access tickets for.

   When creating and modifying tickets, users with "can select priority"
   permissions can set the priority of the ticket.

   When creating and modifying tickets, users with "can select state" 
   permissions can set the state that the ticket is currently in, based on
   the workflow defined in the support_states database table.  By default, this
   means that new tickets must be in the 'new' state, and only upon updating a
   ticket can the user set the state to 'active', 'pending', or 'closed'.

   Users with "can administer state" permissions can change the state of any
   ticket from any state to any other state, ignoring the workflow defined in
   the support_states database table.

   Users with "move ticket" permissions and permission to edit a ticket see a
   new "Support ticket" fieldset with a "Move ticket" field allowing them to
   specify a parent node id which will cause the ticket and any updates to be
   moved and become updates on the specified node id.  Note that this only
   allows for moving an entire ticket and all its updates, not specific updates.

   Users with "administer support" permissions can access and update all
   clients and client tickets, and automatically have all support permissions
   available to them.

   NOTE: If you have integrated email for any of your clients and you wish to
   save email attachments then the user running Drupal's cron (usually the
   anonymous user) must have "upload files" permissions.  You can set this on a
   per-content-type basis using the Upload Permissions Per Content Type module:
   http://drupal.org/project/upload_perm_per_type

--------
Optional
--------

Comment Upload:
---------------
If you would like to be able to attach files to support ticket updates, you
can install the comment_upload module:
  http://drupal.org/project/comment_upload
Once the module is enabled, visit "Administer >> User management >> Permissions"
and grant "upload files to commnts" and "view files uploaded to comments" to all
roles that should be allowed to attach files to support tickets.  Finally, visit
"Administer >> Content management >> Content types" and click "Support ticket".
In the "Comment settings" section enable "Attachments on comments".

NOTE: If you have integrated email for any of your clients and you wish to save
email attachments then the user running Drupal's cron (usually the anonymous
user) must have "upload files to comments" permissions.  You can set this on a
per-content-type basis using the Upload Permissions Per Content Type module:
http://drupal.org/project/upload_perm_per_type

Support Charts:
---------------
If you would like to generate charts from ticket statistics, you must first
install the Google Charts API module:
  http://drupal.org/project/chart

Support Timer:
--------------
If you would like to enhance the support ticket system to also be a time tracker
you can install the support_timer module:
  http://drupal.org/project/support_timer
(This project seeks one or more co-maintainers.)

Support Nag:
------------
If you would like the support ticket system to remind users about open tickets,
and to automatically update the status of old tickets, you can install the
support_nag module:
  http://drupal.org/project/support_nag
(This project seeks one or more co-maintainers.)

Support SMS:
------------
If you would like to schedule SMS notifications to be sent for tickets, you can
install the support_sms module:
  http://drupal.org/project/support_sms
(This project seeks one or more co-maintainers.)

File

INSTALL.txt
View source
  1. Overview
  2. --------
  3. The Support module allows you to manage Tickets in any number of queues,
  4. referred to by the module as "Clients". Each Support Client gets a logically
  5. distinct ticket queue, and a ticket can only be assigned to a single Client at
  6. a time. Drupal users must be granted access to Clients to see tickets in a
  7. given Client queue, and can either be granted limited access to only see the
  8. tickets they created themselves or are explicitly assigned to them, or complete
  9. access to see all tickets assigned to the Client.
  10. Tickets can only be assigned to up to one Drupal User at a time. Tickets always
  11. have a Priority (low, normal, high, critical) and a State (new, active, pending,
  12. closed).
  13. Support Clients can be optionally integrated with email allowing tickets to be
  14. created and updated by email. Notificiation emails can be generated by the
  15. support module when tickets are created or updated. A Drupal User must be
  16. subscribed to a ticket to receive email notifications. There is no limit to the
  17. number of Users that can subscribe to an individual ticket. Inidividual Clients
  18. can be configured to auto-subscribe specific Drupal Users to new tickets.
  19. In Drupal terms, a Ticket is a Content Type, so Tickets are Drupal Nodes. Ticket
  20. Updates are Drupal Comments.
  21. You must create at least one Client to use the Support module. There is no
  22. inherent maximum limit to the number of clients you can create. Read on for
  23. step by step directions to get started with the Support module.
  24. Installation
  25. ------------
  26. 1) Enable the module.
  27. 2) Edit 'Administer >> Content management >> Content types >> Support ticket'
  28. a) Set the desired Submission form settings (such as Title field label, Body
  29. field label, Minimum number of words, etc)
  30. b) Set the desired Workflow settings
  31. c) Set the desired Comment settings (recommended):
  32. - make comments read/write
  33. - make default display mode 'flat list - expanded'
  34. - make default display order 'Date - oldest first'
  35. - increase default comments per page
  36. - do not display comment controls
  37. - disable the comment subject field
  38. - display comment submission form below post or comments
  39. 3) Go to "Administer >> Support >> Clients >> Add client" and create one or
  40. more Support clients.
  41. If you only want to track tickets online, and send out notifications as
  42. tickets are created and updated, simply define the 'Client name' and 'Path'.
  43. If you want the ability to create and update tickets via email, you will
  44. need to open the 'Inbound email integration' section, check 'Integrate
  45. email', and fill out the rest of the information in that section. If
  46. integrating inbound email, you will need to create an email account for
  47. each client -- support will use this account to send and receive email.
  48. More information can be found in MAIL.txt.
  49. 4) If creating multiple Support clients, go to "Administer >> User management
  50. >> Roles" and create one role for each Support client. (This is an optional
  51. step and is only required if you want to prevent one client from viewing and
  52. updating the tickets of another client. If you are using this ticketing
  53. system internally, this may not be important to you.)
  54. 5) Go to "Administer >> User management >> Permissions" and assign the desired
  55. permissions. A user will need at least one "access CLIENT tickets"
  56. permission and "create tickets" permission to be able to create tickets.
  57. Users can only create and update tickets for clients they can access.
  58. Users with "can suppress notification" permissions have the option to
  59. manually disable a notification email from being sent out. An email will
  60. still get sent to admins telling them that an update has been made but not
  61. showing the contents of the update. This feature allows passwords and other
  62. sensitive information to be added to tickets without being sent out as a
  63. plain text email.
  64. Users with "can assign tickets to self" permissions are able to assign a
  65. ticket to themselves, or to assign the ticket to nobody.
  66. Users with "can assign tickets to any user" permissions are able to assign
  67. a ticket to themselves or to another user. Only users with permission to
  68. view a given ticket can be assigned to it.
  69. Users with "can subscribe other users to notifications" permissions are able
  70. to subscribe other users to email notifications when a ticket is updated.
  71. Users without this permission can only subscribe themselves. Only users
  72. with permission to view a given ticket can be subscribed to notifications
  73. for it.
  74. Users with "download mail via support/fetch" permissions can access the path
  75. "support/fetch" which will cause the Support module to download all client
  76. email. Mail is also fetched when Drupal's cron is run, but this allows mail
  77. to be checked at a different frequency than cron is run, if desired. If you
  78. are using Support's mail integration features and you are running Drupal's
  79. cron, you do not ever need to access support/fetch.
  80. Users with "view other users tickets" permissions can view all tickets for
  81. any client that they have "access CLIENT NAME tickets" permissions. Users
  82. that do not have this permission can only view tickets that they themselves
  83. have created. Users with "administer support", "edit any ticket" and/or
  84. "delete any ticket" permissions can always "view other users tickets" whether
  85. or not they are explicitly granted this permission.
  86. Users with "edit multiple tickets" permissions will be able to add updates
  87. and change the state and priority of multiple tickets from the client
  88. overview pages.
  89. When creating and modifying tickets, users with "can select client"
  90. permissions can assign the ticket to any client that they have permission
  91. to access tickets for.
  92. When creating and modifying tickets, users with "can select priority"
  93. permissions can set the priority of the ticket.
  94. When creating and modifying tickets, users with "can select state"
  95. permissions can set the state that the ticket is currently in, based on
  96. the workflow defined in the support_states database table. By default, this
  97. means that new tickets must be in the 'new' state, and only upon updating a
  98. ticket can the user set the state to 'active', 'pending', or 'closed'.
  99. Users with "can administer state" permissions can change the state of any
  100. ticket from any state to any other state, ignoring the workflow defined in
  101. the support_states database table.
  102. Users with "move ticket" permissions and permission to edit a ticket see a
  103. new "Support ticket" fieldset with a "Move ticket" field allowing them to
  104. specify a parent node id which will cause the ticket and any updates to be
  105. moved and become updates on the specified node id. Note that this only
  106. allows for moving an entire ticket and all its updates, not specific updates.
  107. Users with "administer support" permissions can access and update all
  108. clients and client tickets, and automatically have all support permissions
  109. available to them.
  110. NOTE: If you have integrated email for any of your clients and you wish to
  111. save email attachments then the user running Drupal's cron (usually the
  112. anonymous user) must have "upload files" permissions. You can set this on a
  113. per-content-type basis using the Upload Permissions Per Content Type module:
  114. http://drupal.org/project/upload_perm_per_type
  115. --------
  116. Optional
  117. --------
  118. Comment Upload:
  119. ---------------
  120. If you would like to be able to attach files to support ticket updates, you
  121. can install the comment_upload module:
  122. http://drupal.org/project/comment_upload
  123. Once the module is enabled, visit "Administer >> User management >> Permissions"
  124. and grant "upload files to commnts" and "view files uploaded to comments" to all
  125. roles that should be allowed to attach files to support tickets. Finally, visit
  126. "Administer >> Content management >> Content types" and click "Support ticket".
  127. In the "Comment settings" section enable "Attachments on comments".
  128. NOTE: If you have integrated email for any of your clients and you wish to save
  129. email attachments then the user running Drupal's cron (usually the anonymous
  130. user) must have "upload files to comments" permissions. You can set this on a
  131. per-content-type basis using the Upload Permissions Per Content Type module:
  132. http://drupal.org/project/upload_perm_per_type
  133. Support Charts:
  134. ---------------
  135. If you would like to generate charts from ticket statistics, you must first
  136. install the Google Charts API module:
  137. http://drupal.org/project/chart
  138. Support Timer:
  139. --------------
  140. If you would like to enhance the support ticket system to also be a time tracker
  141. you can install the support_timer module:
  142. http://drupal.org/project/support_timer
  143. (This project seeks one or more co-maintainers.)
  144. Support Nag:
  145. ------------
  146. If you would like the support ticket system to remind users about open tickets,
  147. and to automatically update the status of old tickets, you can install the
  148. support_nag module:
  149. http://drupal.org/project/support_nag
  150. (This project seeks one or more co-maintainers.)
  151. Support SMS:
  152. ------------
  153. If you would like to schedule SMS notifications to be sent for tickets, you can
  154. install the support_sms module:
  155. http://drupal.org/project/support_sms
  156. (This project seeks one or more co-maintainers.)